@import url(https://fonts.googleapis.com/css?family=PT+Serif:400,700|Roboto:400,500,700);
@charset "UTF-8";
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

body {
  margin: 0;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

body {
  background-color: #FFF;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #444;
  font-weight: 300;
  line-height: 1.75;
}
@media (min-width: 768px) {
  body {
    font-size: 22px;
  }
}
body.fixed-nav {
  padding-top: 120px;
}
@media (min-width: 667px) {
  body.fixed-nav {
    padding-top: 158px;
  }
}

h1, h2, h3, h4, h5, h6 {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-weight: 300;
  line-height: 1.2;
  font-family: "PT Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 1em 0 0.5em;
}

h1, .h1 {
  font-size: 62px;
}
@media (max-width: 666px) {
  h1, .h1 {
    font-size: 49.6px;
    line-height: 1.3;
  }
}

h2, .h2 {
  font-size: 38px;
}
@media (max-width: 666px) {
  h2, .h2 {
    font-size: 30.4px;
    line-height: 1.3;
  }
}

h3, .h3 {
  font-size: 31px;
}
@media (max-width: 666px) {
  h3, .h3 {
    font-size: 26.35px;
    line-height: 1.3;
  }
}

h4, .h4 {
  font-size: 23px;
}
@media (max-width: 666px) {
  h4, .h4 {
    font-size: 20.7px;
    line-height: 1.3;
  }
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 16px;
}

p {
  margin: 0 auto 20px;
}
p img {
  display: block;
  height: auto;
  max-width: 100%;
}

ol, ul {
  margin: 0 auto 20px;
  padding-left: 1rem;
  list-style-type: disc;
}
ol li, ul li {
  margin: 10px auto;
}

ol {
  list-style-type: numeral;
  padding-left: 1.5rem;
}

blockquote p {
  font-size: 1.2em;
}

figure, iframe, object, embed {
  max-width: 100%;
}
figure img, iframe img, object img, embed img {
  display: block;
  height: auto;
  max-width: 100%;
}

.embed-vimeo,
.embed-youtube {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.embed-vimeo iframe,
.embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

code {
  white-space: normal;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: 700;
}

a {
  color: #a51c30;
  text-decoration: none;
  transition: 0.2s;
}
a:hover, a:focus {
  color: #64111d;
  text-decoration: none;
}

hr {
  border-color: #fff;
  width: 40%;
  margin: 20px auto;
  clear: both;
}

p:empty {
  height: 0;
  line-height: 1;
  position: absolute;
  left: -9999px;
  margin: 0;
  padding: 0;
  display: none;
}

.align-right {
  text-align: right;
}

@media (min-width: 667px) {
  #full-height,
  .full-height {
    height: calc(100vh - 83px);
    min-height: 400px;
    max-height: 1000px;
    position: relative;
    z-index: 1;
  }
}

.wrap,
.content,
.main {
  padding: 0;
  max-width: inherit !important;
  float: none !important;
}

.inview {
  opacity: 0;
  visibility: hidden;
}
.inview.fadein {
  transition: opacity 0.6s ease-in, visibility 1s ease-in;
}
.inview.over {
  opacity: 1;
  visibility: visible;
}

.wrap,
.content {
  margin: 0 !important;
  width: 100% !important;
}

.wrap {
  min-height: calc(100vh - 300px);
}

.wp-caption {
  max-width: 280px;
  background: #eaeaea;
}
@media (min-width: 667px) {
  .wp-caption {
    max-width: 340px;
  }
}
.wp-caption.alignleft {
  margin: 20px auto;
}
@media (min-width: 667px) {
  .wp-caption.alignleft {
    margin: 7px 20px 20px 0;
  }
}
.wp-caption.alignright {
  margin: 20px auto;
}
@media (min-width: 667px) {
  .wp-caption.alignright {
    margin: 7px 0 20px 20px;
  }
}
.wp-caption img {
  max-width: 280px;
  height: auto;
  display: block;
}
@media (min-width: 667px) {
  .wp-caption img {
    max-width: 340px;
  }
}
.wp-caption figcaption {
  padding: 10px;
  color: #333333;
  font-size: 12px;
  line-height: 1.5;
}

.banner a[href*=facebook],
.banner a[href*=twitter],
.banner a[href*=linkedin],
.banner a[href*=instagram],
.content-info a[href*=facebook],
.content-info a[href*=twitter],
.content-info a[href*=linkedin],
.content-info a[href*=instagram] {
  transition: background-color 0.3s ease-in-out;
  display: inline-block;
  height: 34px;
  width: 34px;
  line-height: 1;
  font-family: "FontAwesome";
  font-style: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  text-rendering: auto;
  speak: none;
  font-weight: normal;
  color: #fff !important;
  text-indent: -9999px;
  text-align: center;
  position: relative;
  top: 0 !important;
  border-radius: 100%;
  background-color: #656565;
}
.banner a[href*=facebook]:before,
.banner a[href*=twitter]:before,
.banner a[href*=linkedin]:before,
.banner a[href*=instagram]:before,
.content-info a[href*=facebook]:before,
.content-info a[href*=twitter]:before,
.content-info a[href*=linkedin]:before,
.content-info a[href*=instagram]:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-indent: 0;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  height: 34px;
  width: 34px;
  line-height: 34px;
  color: #fff !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.banner a[href*=facebook]:hover,
.banner a[href*=twitter]:hover,
.banner a[href*=linkedin]:hover,
.banner a[href*=instagram]:hover,
.content-info a[href*=facebook]:hover,
.content-info a[href*=twitter]:hover,
.content-info a[href*=linkedin]:hover,
.content-info a[href*=instagram]:hover {
  background-color: #7f7f7f;
}
.banner a[href*=facebook],
.content-info a[href*=facebook] {
  background-size: 25% auto;
}
.banner a[href*=facebook]:before,
.content-info a[href*=facebook]:before {
  content: "\f09a";
}
.banner a[href*=twitter],
.content-info a[href*=twitter] {
  background-size: 55% auto;
}
.banner a[href*=twitter]:before,
.content-info a[href*=twitter]:before {
  content: "\f099";
}
.banner a[href*=linkedin],
.content-info a[href*=linkedin] {
  background-size: 55% auto;
}
.banner a[href*=linkedin]:before,
.content-info a[href*=linkedin]:before {
  content: "\f0e1";
}
.banner a[href*=instagram],
.content-info a[href*=instagram] {
  background-size: 50% auto;
}
.banner a[href*=instagram]:before,
.content-info a[href*=instagram]:before {
  content: "\f16d";
}

.inview {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease-in, visibility 0.75s ease-in;
}
.inview.over {
  opacity: 1;
  visibility: visible;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

form label {
  color: #fff;
  display: block;
}
form input, form select {
  display: block;
  width: 100%;
}
form input[type=text],
form input[type=password],
form input[type=number] {
  border: none;
  border-bottom: 2px solid #fff;
  outline: none;
  background: none;
  color: #fff;
}
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=number]:focus {
  border-bottom: 2px solid #a51c30;
}
form select {
  border: none;
  border-bottom: 2px solid #333;
  border-radius: 0 !important;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  z-index: 2;
  outline: none;
}
form select:focus {
  border-bottom: 2px solid #a51c30;
}
form select:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 1;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  margin-top: -3px;
  border-color: #111111 transparent transparent transparent;
}
form textarea {
  width: 100%;
  background: #f5f5f5;
  font-size: 17px;
  border: none;
  border-bottom: 2px solid #fff;
  outline: none;
  color: #fff;
}
form textarea:focus {
  border-bottom: 2px solid #a51c30;
}

.btn [class^=icon-], .nav [class^=icon-], .btn [class*=" icon-"], .nav [class*=" icon-"] {
  margin-top: 2px;
}

.button {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "PT Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 25px;
  display: inline-block;
  background: #a51c30;
  transition: background 0.2s ease-in-out;
}
.button:hover, .button:active, .button:focus {
  background: #64111d;
}

@media (min-width: 667px) {
  .email-signup {
    background: rgba(12, 2, 4, 0.6);
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 666px) {
  .email-signup form {
    padding: 1em;
    background: rgba(12, 2, 4, 0.6);
  }
}
.email-signup .gform_title,
.email-signup .gfield_label {
  color: #fff;
  display: block;
}
.email-signup .ginput_container input[type=text],
.email-signup .ginput_container input[type=password],
.email-signup .ginput_container input[type=number],
.email-signup .ginput_container select,
.email-signup .ginput_container textarea {
  color: #fff;
  border-color: #fff;
}
.email-signup .ginput_container.ginput_container_select:after {
  border-color: #ffffff transparent transparent transparent;
}

.gform_wrapper > p {
  height: 0;
  line-height: 1;
  position: absolute;
  left: -9999px;
}
.gform_title {
  margin-top: 0;
}

.gform_fields {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.gfield {
  width: 100%;
  display: block;
  margin: 20px 0;
}

.gfield_label {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  font-family: "PT Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.gfield_required {
  margin: 0 0 0 5px;
  font-size: 16px;
  display: inline-block;
}

.ginput_container {
  display: block;
  width: 100%;
}
.ginput_container .gfield_radio,
.ginput_container .gfield_checkbox {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.ginput_container .gfield_radio input,
.ginput_container .gfield_checkbox input {
  float: left;
  margin: 0 10px 0 0;
  display: inline-block;
  width: auto;
  position: relative;
  top: 8px;
}
.ginput_container .gfield_radio label,
.ginput_container .gfield_checkbox label {
  font-size: 17px;
  margin: 0;
  font-weight: 400;
}
.ginput_container input, .ginput_container select {
  display: block;
  width: 100%;
}
.ginput_container input[type=text],
.ginput_container input[type=password],
.ginput_container input[type=number] {
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  background: none;
}
.ginput_container input[type=text]:focus,
.ginput_container input[type=password]:focus,
.ginput_container input[type=number]:focus {
  border-bottom: 2px solid #a51c30;
}
.ginput_container select {
  border: none;
  border-bottom: 2px solid #333;
  border-radius: 0 !important;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  z-index: 2;
  outline: none;
}
.ginput_container select:focus {
  border-bottom: 2px solid #a51c30;
}
.ginput_container textarea {
  width: 100%;
  background: #f5f5f5;
  font-size: 17px;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
}
.ginput_container textarea:focus {
  border-bottom: 2px solid #a51c30;
}
.ginput_container.ginput_container_select {
  position: relative;
  z-index: 2;
}
.ginput_container.ginput_container_select:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 1;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  margin-top: -3px;
  border-color: #111111 transparent transparent transparent;
}

.gform_footer {
  margin: 30px 0 0;
}
.gform_footer .gform_button {
  display: block;
  border: none;
  width: 100%;
}
.gform_footer p, .gform_footer br {
  height: 0;
  line-height: 1;
  position: absolute;
  left: -9999px;
}

@media (min-width: 768px) {
  .team .row {
    background-image: rgb(255, 255, 255); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(205, 205, 205) 20%, rgb(205, 205, 205) 80%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
    background-position: center bottom;
    background-size: 100% 2px;
    background-repeat: no-repeat;
    margin-bottom: 50px;
  }
  .team .row:last-child {
    margin-bottom: 0;
    background: none;
  }
}

.team--item {
  margin-bottom: 60px;
}
.team--item.team--item-featured {
  clear: both;
  width: 100%;
  background: #ccc;
}
.team--item.team--item-featured .col-sm-12 {
  padding: 0 20px 0 420px;
  position: relative;
  border-bottom: none;
}
.team--item.team--item-featured .team--item-image {
  width: 340px;
  position: absolute;
  height: auto;
  top: 0;
  left: 0;
  bottom: 0;
  float: none;
  margin: 0;
}
.team--item.team--item-featured .team--item-content {
  padding: 60px 0;
}
.team--item .col-sm-12 {
  padding-left: 280px;
  padding-bottom: 60px;
  border-bottom: 1px solid #ccc;
}

.team--item-content {
  padding: 0 0 60px;
}
.team--item-content > *:last-child {
  margin-bottom: 0;
}

.team--item-content-title {
  font-weight: 100;
  margin: 0 0 30px;
}
.team--item-content-title small {
  font-size: 60%;
  display: inline-block;
  margin: 0 0 0 15px;
}

.team--item-image {
  height: 240px;
  width: 220px;
  float: left;
  margin-left: -280px;
  margin-top: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.team-archive--title {
  text-align: center;
  margin: 0 auto;
  text-transform: uppercase;
  color: #1689ca;
  line-height: 1.1;
  font-size: 66px;
  padding: 70px 0;
  font-weight: 900;
}
.team-archive--title span {
  position: relative;
}
.team-archive--title span:before {
  content: "";
  position: absolute;
  border-top: 8px solid #1689ca;
  height: 0px;
  left: 0;
  right: 0;
  top: 0px;
}

.team-archive--copy {
  padding: 50px 0 70px;
  margin: 0;
}

.team--member {
  overflow: hidden;
  margin-bottom: 30px;
}

.team--member-image {
  height: 230px;
  width: 100%;
  max-width: 340px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  margin: 0 auto;
}
@media (min-width: 540px) {
  .team--member-image {
    width: 170px;
    height: 170px;
    max-width: 170px;
    float: left;
    margin: 0 0 0 -170px;
  }
}
.team--member-image a {
  display: block;
  height: 100%;
  width: 100%;
}

.team--member-content {
  padding: 0;
}
@media (min-width: 540px) {
  .team--member-content {
    padding: 10px 15px;
  }
}
.team--member-content h2 {
  margin: 0;
  padding: 0;
}
.team--member-content h2 a {
  color: #365f91;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
  display: block;
}
.team--member-content h2 a:after {
  width: 30px;
  height: 30px;
  background-color: #365f91;
  border-radius: 10px;
  content: "›";
  text-align: center;
  line-height: 28px;
  margin: -9px 0 0 10px;
  font-size: 20px;
  color: #93c1ec;
  display: inline-block;
  top: -7px;
  position: relative;
}
.team--member-content h3 {
  margin: -5px 0 10px;
  color: #365f91;
  font-size: 24px;
  font-weight: 700;
}
.team--member-content p {
  color: #444;
  font-size: 18px;
  font-weight: 300;
}

.winners--person {
  overflow: hidden;
  background: #efefef;
  margin-bottom: 30px;
}
@media (min-width: 540px) {
  .winners--person {
    height: 170px;
  }
}
@media (min-width: 540px) {
  .winners--person.has-image {
    padding-left: 170px;
  }
}

.winners--person-image {
  height: 230px;
  width: 100%;
  max-width: 340px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  margin: 0 auto;
}
@media (min-width: 540px) {
  .winners--person-image {
    width: 170px;
    height: 170px;
    max-width: 170px;
    float: left;
    margin: 0 0 0 -170px;
  }
}
.winners--person-image a {
  display: block;
  height: 100%;
  width: 100%;
}

@media (min-width: 1200px) {
  .winners--person.winners--person-vertical {
    height: 515px;
  }
}
@media (min-width: 1200px) {
  .winners--person.winners--person-vertical.has-image {
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .winners--person.winners--person-vertical .winners--person-image {
    height: 55%;
    width: 100%;
    max-width: 100%;
    float: none;
    margin: 0;
  }
}

.winners--person-content {
  padding: 25px 30px;
}
@media (min-width: 540px) {
  .winners--person-content {
    padding: 10px 15px;
  }
}
.winners--person-content h3 {
  margin: 0 0 5px;
}
.winners--person-content h3 a {
  color: #27578c;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.winners--person-content p {
  color: #4c4845;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
}
.winners--person-content p.read-more {
  margin-bottom: 0px;
}
.winners--person-content p.read-more a {
  color: #27578c;
  font-size: 16px;
  font-weight: 600;
}
.winners--person-content p.read-more a:before {
  content: "";
  background: url(../images/icon-link-blue.png) center center/100% auto no-repeat transparent;
  height: 12px;
  width: 14px;
  display: inline-block;
  margin: 0 5px 0 0;
}
.winners--person-content p.read-more a:hover {
  border-bottom: 2px solid #27578c;
}

.winner--title {
  color: #27578c;
  font-size: 44px;
  margin: 0;
  line-height: 1.2;
  padding-right: 200px;
}
.winner--title a {
  float: right;
  color: #27578c;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  top: 20px;
  margin-right: -200px;
  text-transform: uppercase;
}
.winner--title a span {
  font-size: 20px;
  position: relative;
  top: 1px;
}

.winner--award-title {
  color: #4c4845;
  font-size: 36px;
  margin: 0;
  line-height: 1.2;
  clear: both;
}

.winner--details {
  background: #efefef;
  margin: 60px 0;
}
.winner--details.has-image {
  padding-left: 300px;
}
.winner--details:before, .winner--details:after {
  content: " ";
  display: table;
}
.winner--details:after {
  clear: both;
}
.winner--details .winner--details-image {
  float: left;
  width: 300px;
  height: 400px;
  margin-left: -300px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.winner--details .winner--details-content {
  color: #4c4845;
  font-size: 14px;
  font-weight: 300;
  padding: 30px;
}
.winner--details .winner--details-content .winner--details-content-info {
  font-size: 13px;
}
.winner--details .winner--details-content .winner--details-content-link {
  margin: 0;
}
.winner--details .winner--details-content .winner--details-content-link a {
  color: #27578c;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.winner--details .winner--details-content .winner--details-content-link a:before {
  content: "";
  background: url(../images/icon-website.png) center center/100% auto no-repeat transparent;
  height: 13px;
  width: 14px;
  display: inline-block;
  margin: 0 8px 0 0;
  position: relative;
  top: 1px;
}
.winner--details .winner--details-content .winner--details-content-link a:hover {
  border-bottom: 2px solid #27578c;
}
.winner--details .winner--details-content h1, .winner--details .winner--details-content h2, .winner--details .winner--details-content h3, .winner--details .winner--details-content h4, .winner--details .winner--details-content h5, .winner--details .winner--details-content h6 {
  color: #27578c;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-size: 14px;
}

.content-info {
  clear: both;
}
.content-info .vc_row {
  margin: 0;
}

.news--article-image {
  height: 230px;
  width: 100%;
  max-width: 340px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  margin: 0 auto;
}
@media (min-width: 540px) {
  .news--article-image {
    width: 170px;
    height: 170px;
    max-width: 170px;
    float: left;
    margin: 7px 0 0 -170px;
  }
}
.news--article-image a {
  display: block;
  height: 100%;
  width: 100%;
}
.home .news--article-image {
  margin: 0 auto;
}
@media (min-width: 540px) {
  .home .news--article-image {
    margin: 2px 0 0 -170px;
  }
}

.news--article {
  margin: 0 0 25px;
  overflow: hidden;
}
@media (min-width: 540px) {
  .news--article.has-image {
    padding-left: 170px;
  }
}
.news--article.has-image .news--article-content {
  padding: 25px 0 0;
}
@media (min-width: 540px) {
  .news--article.has-image .news--article-content {
    padding: 0 0 0 15px;
  }
}
.news--article h4 {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 300;
  border-top: 1px solid #fff;
  padding-top: 25px;
  margin-bottom: 0;
  margin-top: 0;
}
.news--article h3 {
  margin: 5px 0;
  font-weight: 500;
  color: #000;
}
.news--article h3 a {
  font-weight: 500;
  color: #000;
}
.news--article h3 small {
  margin: 0 0 0 10px;
}
.news--article p {
  color: #000;
  font-weight: 300;
}
.news--article .read-more {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 0 6px;
  position: relative;
  top: -1px;
}
.news--article .news--article-content > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog .news--header {
  margin: 0 0 80px;
}
.blog .news--header:before, .blog .news--header:after {
  content: " ";
  display: table;
}
.blog .news--header:after {
  clear: both;
}
.blog .news--header h1 {
  float: left;
  color: #27578c;
  font-size: 44px;
  font-weight: 300;
  margin: 0;
}
.blog .news--footer {
  margin: 20px 0 60px;
}
.blog .news--footer:before, .blog .news--footer:after {
  content: " ";
  display: table;
}
.blog .news--footer:after {
  clear: both;
}
.blog .news--footer p {
  float: left;
  margin: 0;
  color: #4c4845;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}
.blog .news--footer .nav-next {
  position: relative;
  top: -4px;
}
.blog .news--footer a {
  line-height: 1;
}
.blog .news--footer .posts-navigation {
  margin: 0;
}
.blog .posts-navigation {
  float: right;
  margin: 30px 0 0;
}
.blog .posts-navigation h2 {
  display: none;
}
.blog .posts-navigation .nav-links div {
  display: inline-block;
}
.blog .posts-navigation .nav-links div:last-child {
  margin-left: 20px;
}
.blog .posts-navigation .nav-links div a {
  text-transform: uppercase;
  color: #27578c;
  font-size: 14px;
  font-weight: 600;
}
.blog .posts-navigation .nav-links div a span {
  font-size: 20px;
  position: relative;
  top: 1px;
}
.blog .news--article {
  position: relative;
  padding-bottom: 40px;
}
.blog .news--article:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 1px;
  background: #dbdada;
  content: "";
}
.blog .news--article:last-child:after {
  display: none;
}
.blog .news--article h3 {
  margin: 0;
}
.blog .news--article .byline {
  color: #4c4845;
  font-size: 13px;
  font-weight: 300;
  line-height: 23px;
  margin: 0 0 15px;
}

.news--sidebar {
  background: #efefef;
  padding: 1px 0;
}

.news--sidebar-search {
  background: #f7f7f7;
  margin: -1px 0 50px;
}
.news--sidebar-search form {
  position: relative;
}
.news--sidebar-search label {
  width: 100%;
  z-index: 1;
  position: relative;
}
.news--sidebar-search label span {
  display: none;
}
.news--sidebar-search label input {
  padding: 15px 30% 15px 15px;
  border: 0px solid transparent;
  background: #f7f7f7;
  color: #4c4845;
  font-size: 14px;
  font-weight: 300;
  display: block;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}
.news--sidebar-search input[type=submit] {
  width: 30%;
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  border: 0px solid transparent;
  background: url(../images/icon-search.png) 70% center/auto 40% no-repeat #f7f7f7;
  color: #4c4845;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  padding: 15px 0;
  top: 0;
  right: 0;
  bottom: 0;
  text-indent: -9999px;
}

.news--sidebar-categories,
.news--sidebar-archives {
  margin: 50px 30px;
}
.news--sidebar-categories h4,
.news--sidebar-archives h4 {
  color: #27578c;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.news--sidebar-categories ul,
.news--sidebar-archives ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.news--sidebar-categories li,
.news--sidebar-archives li {
  margin: 0;
  padding: 0;
}
.news--sidebar-categories li.current-cat a, .news--sidebar-categories li.current-archive a,
.news--sidebar-archives li.current-cat a,
.news--sidebar-archives li.current-archive a {
  text-decoration: underline;
}
.news--sidebar-categories a,
.news--sidebar-archives a {
  color: #4c4845;
  font-weight: 300;
}
.news--sidebar-categories a:hover,
.news--sidebar-archives a:hover {
  text-decoration: underline;
}

.nominees--module .nominees-wrap {
  position: relative;
  margin: 0;
}
@media (min-width: 991px) {
  .nominees--module .nominees-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.nominees--module .nominees--module-item-title {
  margin-top: -5px;
  font-weight: 700;
  color: #a51c30;
}
.nominees--module .nominees--module-item {
  margin-bottom: 30px;
  overflow: hidden;
  height: auto;
  border-bottom: 1px solid #d5d5d5;
  padding: 0 0 40px;
}
@media (max-width: 991px) {
  .nominees--module .nominees--module-item {
    padding: 0 15px 40px;
  }
}
.nominees--module .nominees--module-item.has-image {
  height: auto;
  padding-left: 345px;
}
@media (max-width: 991px) {
  .nominees--module .nominees--module-item.has-image {
    padding-left: 0;
  }
}
.nominees--module .nominees--module-item-image {
  width: 280px;
  height: 280px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  float: left;
  margin: 0 0 0 -315px;
  z-index: 3;
}
@media (max-width: 991px) {
  .nominees--module .nominees--module-item-image {
    height: 180px;
    width: 180px;
    margin: 0 auto;
    float: none;
  }
}
.nominees--module .nominees--module-item-image a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: block;
}
.nominees--module .nominees--module-item-content {
  margin: 20px 0 0;
  float: left;
}
@media (min-width: 768px) {
  .nominees--module .nominees--module-item-content {
    padding: 0;
    position: relative;
    margin: 0;
  }
}
.nominees--module .nominees--module-item-content .nominees--module-item-title {
  font-weight: 700;
  line-height: 1.1;
  margin-top: -5px;
  color: #a51c30;
}
@media (max-width: 767px) {
  .nominees--module .nominees--module-item-content .nominees--module-item-title {
    margin-top: 20px;
  }
}
.nominees--module .nominees--module-item-content-more {
  margin: 40px 0 0;
  display: block;
}
.nominees--module .nominees--module-item-content p em {
  color: #333;
  font-size: 12px;
  font-style: italic;
}
.nominees--module .nominees--module-item-title {
  margin: 4px 0 0;
  line-height: 1.2;
}

.nominee {
  margin: 40px 0 60px 0;
}
@media (min-width: 667px) {
  .nominee {
    padding: 0 15px;
  }
}
.nominee .nominee--image {
  width: 320px;
  height: 320px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  float: left;
  margin: 0 0 0 -360px;
  z-index: 3;
}
@media (max-width: 991px) {
  .nominee .nominee--image {
    height: 180px;
    width: 180px;
    margin: 0 auto;
    float: none;
  }
}
.nominee .nominee--content {
  padding-left: 360px;
}
@media (max-width: 991px) {
  .nominee .nominee--content {
    padding-left: 0;
  }
}
.nominee .nominee--name {
  color: #a51c30;
}
.nominee .nominee--biography {
  top: -8px;
  position: relative;
  margin-top: 0;
}
@media (max-width: 991px) {
  .nominee .nominee--biography {
    margin-top: 20px;
    top: 0;
  }
}

.cookies-notice {
  background: #666;
  visibility: visible;
  opacity: 1;
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.cookies-notice--content {
  max-width: 1170px;
  margin: 0 auto;
  padding: 1em 0;
  position: relative;
  color: #fff;
}
.cookies-notice--content strong {
  font-weight: 700;
  display: block;
}
.cookies-notice--content p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.cookies-notice-dismissed .cookies-notice {
  max-height: 0px;
}

.cookies-notice--close {
  font-size: 12px;
  margin: 10px 0 0;
  display: block;
}
@media (min-width: 667px) {
  .cookies-notice--close {
    position: absolute;
    right: -10px;
    top: 5px;
    margin: 0;
  }
}
.cookies-notice--close:before {
  color: #fff;
  background: #404040;
  height: 16px;
  width: 16px;
  content: "×";
  margin: 0 5px 0 0;
  display: inline-block;
  position: relative;
  top: 0px;
  line-height: 16px;
  border-radius: 100%;
  text-align: center;
  font-size: 14px;
}

.slick-slider {
  clear: both;
}

.slick-track .slick-slide {
  clear: none;
}

.slick-arrow {
  border: 1px solid #028ad1;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background-position: center;
  background-size: 12px auto;
  background-repeat: no-repeat;
  z-index: 3;
}
.slick-arrow:before {
  display: none;
}
.slick-arrow:hover, .slick-arrow:active, .slick-arrow:focus {
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.slick-arrow.slick-prev {
  background-image: url(../images/caret-left.svg);
  left: 20px;
}
.slick-arrow.slick-next {
  background-image: url(../images/caret-right.svg);
  right: 20px;
}

.portfolio--module-filter {
  padding: 0 0 30px 0;
  display: block;
}
@media (min-width: 667px) {
  .portfolio--module-filter {
    margin: 0 0 30px;
  }
}
.portfolio--module-filter p {
  margin: 0;
  display: block;
}
.portfolio--module-filter .portfolio--module-filter-item {
  display: block;
  margin: 0 0 30px;
  color: #365f91;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 4px;
  text-decoration: none;
  transition: none;
  text-align: center;
}
@media (min-width: 667px) {
  .portfolio--module-filter .portfolio--module-filter-item {
    display: inline-block;
    margin: 0 15px;
  }
}
.portfolio--module-filter .portfolio--module-filter-item.current-category {
  background-image: rgb(255, 255, 255); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(205, 205, 205) 20%, rgb(205, 205, 205) 80%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
  background-position: center bottom;
  background-size: 100% 2px;
  background-repeat: no-repeat;
}

.vc_row .portfolio--module-filter + .row {
  margin-right: -15px;
  margin-left: -15px;
}

.portfolio--module-item {
  background-image: rgb(255, 255, 255); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(205, 205, 205) 20%, rgb(205, 205, 205) 80%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
  background-position: center bottom;
  background-size: 100% 2px;
  background-repeat: no-repeat;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.portfolio--module-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  background: none;
}

.portfolio--module-item-inner {
  position: relative;
}

.portfolio--module-item-image {
  position: relative;
  height: 160px;
}
@media (min-width: 667px) {
  .portfolio--module-item-image {
    width: 25%;
    height: 100%;
    position: absolute;
  }
}

.portfolio--module-item-content {
  margin: 20px 0 0;
  color: #444;
  font-size: 15px;
  font-weight: 300;
}
@media (min-width: 667px) {
  .portfolio--module-item-content {
    float: left;
    width: 70%;
    margin: 0 0 0 30%;
  }
}

.portfolio--module-item-image a {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.portfolio--module-item-image a img {
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.portfolio--module-item-content-title {
  margin: 0 0 10px;
  padding: 0;
  color: #365f91;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}
.portfolio--module-item-content-title a {
  color: #365f91;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
  display: block;
}
.portfolio--module-item-content-title a:after {
  width: 24px;
  height: 24px;
  background-color: #365f91;
  border-radius: 7px;
  content: "›";
  text-align: center;
  line-height: 22px;
  margin: -9px 0 0 10px;
  font-size: 20px;
  color: #93c1ec;
  display: inline-block;
  top: -6px;
  position: relative;
}

.promises--header {
  display: none;
}
@media (min-width: 667px) {
  .promises--header {
    display: block;
  }
}
.promises--header h3 {
  float: left;
  width: 45%;
  margin-left: 5%;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  line-height: 1.1;
}
.promises--header h3:first-child {
  margin-right: 5%;
  margin-left: 0;
}

.promise {
  position: relative;
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 30px;
}
.promise:after {
  width: 10%;
  content: "\f0da";
  left: 50%;
  margin-left: -5%;
  margin-top: -15px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #00afba;
  text-align: center;
  line-height: 1;
  font-size: 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out 1s, visibility 0.3s ease-in-out 1s;
  display: none;
}
@media (min-width: 667px) {
  .promise:after {
    display: block;
  }
}
.promise .promise--inner {
  position: relative;
}
.promise .promise--inner > div {
  padding-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
@media (min-width: 667px) {
  .promise .promise--inner > div {
    float: left;
    width: 45%;
    margin-left: 5%;
  }
}
@media (min-width: 667px) {
  .promise .promise--inner > div:first-child {
    margin-right: 5%;
    margin-left: 0;
  }
}
.promise .promise--inner > div i {
  float: left;
  margin-left: -30px;
  margin-top: 6px;
}
.promise .promise--header {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
  line-height: 1.1;
  margin: 0;
}
@media (min-width: 667px) {
  .promise .promise--header {
    display: none;
  }
}
.promise.over:after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 666px) {
  .promise.over .promise--content:after {
    opacity: 1;
    visibility: visible;
  }
}
.promise.over .what-happened--content {
  opacity: 1;
  visibility: visible;
}

.promise--content p {
  color: #444;
}
.promise--content a {
  text-decoration: underline;
  color: #444;
  font-weight: 600;
}
.promise--content i {
  color: #444;
}
.promise--content:after {
  width: 10%;
  content: "\f0d7";
  left: 50%;
  margin-left: -5%;
  position: relative;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #00afba;
  text-align: center;
  line-height: 1;
  font-size: 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out 1s, visibility 0.3s ease-in-out 1s;
}
@media (min-width: 667px) {
  .promise--content:after {
    display: none;
  }
}

.what-happened--content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out 1.5s, visibility 0.3s ease-in-out 1.5s;
}
.what-happened--content h3 {
  color: #00afba;
}
.what-happened--content p {
  color: #00afba;
}
.what-happened--content a {
  text-decoration: underline;
  color: #00afba;
  font-weight: 600;
}
.what-happened--content i {
  color: #00afba;
}

.events--item-image {
  height: 230px;
  width: 100%;
  max-width: 340px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  margin: 0 auto;
}
@media (min-width: 540px) {
  .events--item-image {
    width: 170px;
    height: 170px;
    max-width: 170px;
    float: left;
    margin: 0 0 0 -170px;
  }
}

.events--item {
  margin: 0 0 30px;
  overflow: hidden;
}
@media (min-width: 540px) {
  .events--item.has-image {
    padding-left: 170px;
  }
}
.events--item.has-image .events--item-content {
  padding: 25px 0 0;
}
@media (min-width: 540px) {
  .events--item.has-image .events--item-content {
    padding: 0 0 0 15px;
  }
}
.events--item h4 {
  margin: 0;
  font-size: 17px;
  color: #27578c;
  text-transform: uppercase;
  line-height: 1;
}
.events--item h3 {
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 17px;
  color: #27578c;
  text-transform: uppercase;
}
.events--item p {
  font-size: 14px;
  color: #4c4845;
  font-weight: 300;
}
.events--item .read-more {
  margin: -10px 0 0;
}
.events--item .read-more a {
  color: #27578c;
  font-size: 16px;
  font-weight: 600;
}
.events--item .read-more a:before {
  content: "";
  background: url(../images/icon-link-blue.png) center center/100% auto no-repeat transparent;
  height: 12px;
  width: 14px;
  display: inline-block;
  margin: 0 5px 0 0;
}
.events--item .read-more a:hover {
  border-bottom: 2px solid #27578c;
}

.disclaimer-popup-showing {
  height: 100%;
  overflow: hidden;
}

#disclaimer .kc-row-container,
#disclaimer .kc-container,
#disclaimer .kc-wrap-columns {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
#disclaimer.disclaimer-nav_banner .disclaimer--banner, #disclaimer.disclaimer-footer_banner .disclaimer--banner {
  background: #ccc;
  text-align: center;
  padding: 5px 0 8px;
  display: block;
  margin: 0;
}
#disclaimer.disclaimer-nav_banner .disclaimer--banner a, #disclaimer.disclaimer-footer_banner .disclaimer--banner a {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 16px;
  background: #a51c30;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
#disclaimer.disclaimer-nav_banner .disclaimer--banner a:hover, #disclaimer.disclaimer-nav_banner .disclaimer--banner a:active, #disclaimer.disclaimer-nav_banner .disclaimer--banner a:focus, #disclaimer.disclaimer-footer_banner .disclaimer--banner a:hover, #disclaimer.disclaimer-footer_banner .disclaimer--banner a:active, #disclaimer.disclaimer-footer_banner .disclaimer--banner a:focus {
  background: #dc314a;
}
#disclaimer.disclaimer-footer {
  clear: both;
}
#disclaimer.disclaimer-footer .disclaimer--footer-content {
  margin: 40px 0;
}
#disclaimer.disclaimer-footer .disclaimer--footer-content p {
  margin: 0 0 15px;
  font-size: 13px;
  line-height: 1.75;
}
#disclaimer.disclaimer-interstitial {
  border-top: 1px solid #d5d5d5;
  background: #fff;
  margin: 20px 0 0;
}
#disclaimer.disclaimer-interstitial .disclaimer--banner {
  text-align: right;
  padding: 20px 0;
  display: block;
  margin: 0;
  margin: 0 auto;
  font-size: 18px;
  max-width: 1170px;
}
#disclaimer.disclaimer-interstitial .disclaimer--banner a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  padding: 15px 20px;
  margin: 0 0 0 20px;
  background: #a51c30;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
#disclaimer.disclaimer-interstitial .disclaimer--banner a:hover, #disclaimer.disclaimer-interstitial .disclaimer--banner a:active, #disclaimer.disclaimer-interstitial .disclaimer--banner a:focus {
  background: #dc314a;
}
#disclaimer.disclaimer-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  z-index: 9998;
  transition: opacity 0.5s ease-in-out 1s, visibility 0.5s ease-in-out 1s;
}
#disclaimer.disclaimer-popup.disclaimer-hide {
  opacity: 0;
  visibility: hidden;
}
#disclaimer.disclaimer-popup.disclaimer-hide .disclaimer--dialog .disclaimer--dialog-inner {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: bounceOutUp;
}
#disclaimer.disclaimer-popup .disclaimer--dialog {
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 5%;
  right: 5%;
  z-index: 9999;
}
@media (min-width: 768px) {
  #disclaimer.disclaimer-popup .disclaimer--dialog {
    left: 10%;
    right: 10%;
  }
}
#disclaimer.disclaimer-popup .disclaimer--dialog-inner {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  height: 100%;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: bounceInDown;
}
#disclaimer.disclaimer-popup .disclaimer--content {
  padding: 1em 0 75px;
  height: 100%;
  background: #fff;
}
#disclaimer.disclaimer-popup .disclaimer--body {
  height: 100%;
  overflow: auto;
  border-top: 1px solid #d5d5d5;
  background: #f5f5f5;
  padding: 0.5em 0;
  font-size: 14px !important;
}
#disclaimer.disclaimer-popup .disclaimer--body h1, #disclaimer.disclaimer-popup .disclaimer--body h2, #disclaimer.disclaimer-popup .disclaimer--body h3, #disclaimer.disclaimer-popup .disclaimer--body h4, #disclaimer.disclaimer-popup .disclaimer--body h5, #disclaimer.disclaimer-popup .disclaimer--body h6 {
  font-weight: bold;
  font-size: 16px !important;
}
#disclaimer.disclaimer-popup .disclaimer--body li, #disclaimer.disclaimer-popup .disclaimer--body em, #disclaimer.disclaimer-popup .disclaimer--body strong {
  font-size: 14px !important;
}
#disclaimer.disclaimer-popup .disclaimer--footer {
  margin: 0;
  padding: 1em;
  border-top: 1px solid #d5d5d5;
  background: #fff;
  font-size: 12px;
  text-align: right;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75px;
}
@media (min-width: 667px) {
  #disclaimer.disclaimer-popup .disclaimer--footer {
    font-size: 16px;
  }
}
#disclaimer.disclaimer-popup .disclaimer--footer p {
  margin: 0;
}
@media (max-width: 519px) {
  #disclaimer.disclaimer-popup .disclaimer--footer p span {
    float: left;
    width: 50%;
    text-align: left;
  }
}
#disclaimer.disclaimer-popup .disclaimer--footer .disclaimer--terms-button {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 20px;
  background: #a51c30;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  cursor: pointer;
}
@media (min-width: 520px) {
  #disclaimer.disclaimer-popup .disclaimer--footer .disclaimer--terms-button {
    margin: 0 0 0 20px;
  }
}
#disclaimer.disclaimer-popup .disclaimer--footer .disclaimer--terms-button:hover, #disclaimer.disclaimer-popup .disclaimer--footer .disclaimer--terms-button:active, #disclaimer.disclaimer-popup .disclaimer--footer .disclaimer--terms-button:focus {
  background: #dc314a;
}

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.aligncenter {
  display: block;
  margin: 12.5px auto;
}

.alignleft,
.alignright {
  margin-bottom: 12.5px;
}

@media (min-width: 667px) {
  .alignleft {
    float: left;
    margin-right: 12.5px;
  }
  .alignright {
    float: right;
    margin-left: 12.5px;
  }
}
.engagement--item {
  position: relative;
  height: 225px;
  border: 1px solid #dbdbdb;
  margin: 30px 0 0;
}
.engagement--item img {
  margin: 0;
  width: 70%;
  height: auto;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.engagement--item a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}

.engagements--items {
  margin-bottom: 30px;
}

.engagement--headline {
  padding: 60px 0 15px;
}
.engagement--headline h3 {
  float: left;
  margin: -2px 15px 15px;
  font-size: 60px;
  font-weight: 900;
  color: #359bd7;
  line-height: 1;
}

.engagement--pdfs {
  padding: 30px 0;
}
.engagement--pdfs .row {
  border-bottom: 1px solid #ccc;
  padding: 0 0 30px;
  margin-bottom: 30px;
}
.engagement--pdfs .row > div {
  border-left: 1px solid #ccc;
}
.engagement--pdfs .row div:first-child {
  border-left: none;
}

.engagement--pdf {
  padding: 0 15px;
}
.masthead .engagement--pdf h2 span {
  color: #fff;
}
.engagement--pdf h2 {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.engagement--pdf h2 span {
  color: #359bd7;
}
.engagement--pdf p {
  font-size: 14px;
}

.press--items {
  padding: 60px 0;
  clear: both;
}
.press--items .row:empty {
  display: none;
}

.masthead .press--item .press--item-logo {
  height: auto;
  padding: 0;
  background: transparent;
}
.masthead .press--item .press--item-logo img {
  display: none;
}

.press--item-logo {
  position: relative;
  height: 155px;
  background: #0686c9;
  padding: 15px;
}
.press--item-logo h4 {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}
.press--item-logo img {
  margin: 0;
  width: auto;
  max-width: 60%;
  height: auto;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.press--item-title {
  font-weight: 100;
  font-size: 24px;
  margin: 20px 0 20px;
}

.white-papers {
  padding: 0;
}

.white-paper {
  height: 250px;
  position: relative;
  clear: both;
}
.white-paper .col-sm-6 {
  height: 250px;
  position: relative;
}
.masthead .white-paper:after {
  display: none;
}
.masthead .white-paper .white-paper--title {
  text-align: left;
}
.white-paper.white-paper-even .white-paper--image {
  right: auto;
  left: 0;
}

.white-paper--content {
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  transform: translateY(-50%);
}

.white-paper--image {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.white-paper--title {
  margin: 0 0 20px;
  text-align: center;
}

.accordion-block {
  border-bottom: 1px solid #d1d1d1;
}
.accordion-block:last-of-type {
  border-bottom: none;
}
.accordion-block.is-expanded .accordion--content {
  display: block;
}
.accordion-block.is-expanded .accordion--content > div {
  max-height: 9999px;
  transition: all 1s ease-in-out;
}
.accordion-block.is-expanded .accordion--title .accordion--title-link span svg {
  transform: rotate(180deg);
}

.accordion--title {
  display: block;
  position: relative;
  margin: 0;
}
.accordion--title .accordion--title-link {
  color: currentColor;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  padding: 40px 70px 40px 0;
  display: block;
  outline: none;
  color: #000000;
  font-weight: 500;
}
@media (max-width: 767px) {
  .accordion--title .accordion--title-link {
    font-size: 22px;
  }
}
.accordion--title .accordion--title-link span {
  height: 40px;
  width: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
}
.accordion--title .accordion--title-link span svg {
  position: absolute;
  left: 11px;
  top: 10px;
  width: 18px;
  height: auto;
  fill: #a51c30;
  transform: rotate(0deg);
}

.accordion--content {
  display: none;
  opacity: 1;
  transition: all 1s ease-in-out;
  font-size: 18px;
}
.accordion--content > div {
  padding: 0px 70px 45px 0px;
  color: #000000;
  max-height: 0px;
}
.accordion--content > div > *:first-child {
  margin-top: 0;
}
.accordion--content > div > *:last-child {
  margin-bottom: 0;
}
.accordion--content > div img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}
.accordion--content > div a {
  text-decoration: underline;
  font-weight: 400;
  color: #000000;
}
.accordion--content > div a:hover {
  text-decoration: underline;
}
.accordion--content .accordion-block:first-of-type .accordion--title-link {
  padding-top: 0;
}
.accordion--content .accordion-block:first-of-type .accordion--title-link svg {
  top: 18px;
}
.accordion--content .accordion--title-link {
  text-transform: none;
  text-decoration: none;
  font-weight: 400;
}
.accordion--content .accordion--title-link:hover {
  text-decoration: none;
}

.back-to-top__link {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto;
}
.back-to-top svg {
  width: 100%;
  height: auto;
  display: block;
  fill: #a51c30;
}

.box-list--block {
  display: flex;
  flex-flow: row nowrap;
}
.box-list--boxes {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.box-list--box {
  width: 100%;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-end;
  position: relative;
}
@media (min-width: 667px) {
  .box-list--box {
    width: 50%;
    height: 0;
    padding-top: 50%;
  }
}
.box-list--box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 255, 0);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.box-list--box--inner {
  position: relative;
  z-index: 2;
}
.box-list--box.is-showing {
  cursor: default;
}
.box-list--box.is-showing:after {
  background: rgba(0, 0, 255, 0.85);
}
.box-list--box.is-showing .box-list--box--content {
  display: block;
}
.box-list--box--inner {
  flex: 1 0 100%;
  padding: 0 45px 30px;
  color: #ffffff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .box-list--box--inner {
    padding: 0 20px 20px;
  }
}
.box-list--box--content {
  display: none;
  font-size: 15px;
}
.box-list--box h3 {
  color: #ffffff;
  margin: 0;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .box-list--box h3 {
    font-size: 20px;
  }
}
.box-list--box h3 span {
  display: inline-block;
  padding: 0 22px 0 0;
  background: url(../images/icons/chevron-right-blue-200.svg) right 10px/8px auto no-repeat transparent;
}
.box-list--box p {
  font-size: 16px;
  margin: 10px 0 0;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .box-list--box p {
    font-size: 14px;
  }
}
.box-list--box a {
  color: blue;
  text-transform: uppercase;
}

.masthead--breadcrumbs {
  list-style-type: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.masthead--breadcrumbs li {
  display: inline-block;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0 0 0 6px;
  color: #ffffff;
}
.masthead--breadcrumbs li span {
  display: inline-block;
}
.masthead--breadcrumbs li + li:before {
  content: ">";
  margin: 0 8px 0 3px;
  position: relative;
  top: -1px;
}
.masthead--breadcrumbs a {
  position: relative;
  font-family: "PT Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 2px;
}
.masthead--breadcrumbs a:hover {
  text-decoration: none;
  color: #ffffff;
}

.cards-block .cards--grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
@media (min-width: 768px) {
  .cards-block .cards--grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .cards-block .cards--grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.cards-block .card {
  position: relative;
  background: #ffffff;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  max-width: 9999px;
}
.cards-block .card:hover .card--image--inner {
  transform: scale(1.05);
}
.cards-block .card--image {
  height: 0;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.cards-block .card--image--inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  transition-origin: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.cards-block .card--content {
  padding: 30px;
  font-size: 16px;
  color: #000000;
}
@media (min-width: 992px) {
  .cards-block .card--content {
    padding: 45px;
  }
}
.cards-block .card--content > *:last-child {
  margin-bottom: 0;
}
.cards-block .card h4 {
  font-size: 28px;
  margin: 0 0 15px;
  color: #000000;
}
.cards-block .card h4 small {
  font-size: 20px;
  display: block;
  margin: 0 0 10px;
}
.cards-block .card h4 span {
  display: block;
}

.callout-box {
  position: relative;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .callout-box.image-placement--left.has-no-content-background-color .callout-box--content {
    padding-right: 0 !important;
  }
}
@media (max-width: 991px) {
  .callout-box.image-placement--left.has-no-content-background-color .callout-box--content {
    padding: 30px 0 0 !important;
  }
}
.callout-box.image-placement--left.has-content-background-color .content--background-color-stretcher {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 2000px;
}
.callout-box.image-placement--left .callout-box--image {
  left: 0;
}
.callout-box.image-placement--left .callout-box--container {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .callout-box.image-placement--right.has-no-content-background-color .callout-box--content {
    padding-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .callout-box.image-placement--right.has-no-content-background-color .callout-box--content {
    padding: 30px 0 0 !important;
  }
}
.callout-box.image-placement--right.has-content-background-color .content--background-color-stretcher {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 2000px;
}
.callout-box.image-placement--right .callout-box--image {
  right: 0;
}
.callout-box.image-placement--right .callout-box--container {
  justify-content: flex-start;
}
.callout-box.image-overlay--under .callout-box--image {
  z-index: 1;
}
.callout-box.image-overlay--over .callout-box--image {
  z-index: 3;
}
.callout-box .callout-box--wrap {
  position: relative;
  overflow: visible;
  padding: 0 20px;
}
@media (min-width: 667px) {
  .callout-box .callout-box--wrap {
    padding: 0 30px;
  }
}
@media (min-width: 768px) {
  .callout-box .callout-box--wrap {
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .callout-box .callout-box--wrap {
    padding: 0 60px;
  }
}
.callout-box .callout-box--image {
  position: absolute;
  top: 0;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .callout-box .callout-box--image {
    padding-top: 45%;
    position: relative;
    height: 0;
    width: 100% !important;
  }
}
@media (max-width: 666px) {
  .callout-box .callout-box--image {
    padding-top: 60%;
  }
}
.callout-box .callout-box--container {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.callout-box .callout-box--title {
  margin: 0 0 20px;
  position: relative;
  z-index: 2;
  display: block;
  font-weight: 600;
  display: flex;
  flex-flow: column wrap;
  width: 100%;
  font-size: 20px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.callout-box .callout-box--title.is-secondary-before .callout-box--secondary-title {
  margin: 0 0 30px;
}
.callout-box .callout-box--title.is-secondary-after span {
  order: 1;
}
.callout-box .callout-box--title.is-secondary-after .callout-box--secondary-title {
  margin: 30px 0;
  order: 2;
}
.callout-box .callout-box--title span {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .callout-box .callout-box--content {
    width: 100% !important;
    padding: 30px 20px !important;
  }
}
@media (max-width: 1199px) {
  .callout-box .callout-box--content {
    padding: 30px 45px !important;
  }
}
.callout-box .callout-box--secondary-title {
  display: flex;
  font-size: 20px;
  width: 100%;
  align-items: center;
  align-content: center;
  font-weight: 600;
}
.callout-box .callout-box--copy {
  margin: 10px 0 0;
}
.callout-box .callout-box--copy p {
  margin: 20px 0 0;
  font-size: 18px;
}
.callout-box .callout-box--copy p:first-child {
  margin-top: 10px;
}
.callout-box .callout-box--buttons {
  margin: 45px 0 0;
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  align-items: center;
}
.callout-box .callout-box--buttons .wp-block-button:not(:first-child) .wp-block-button__link {
  border-color: transparent !important;
  padding-left: 20px;
  padding-right: 20px;
}
.callout-box .callout-box--buttons .wp-block-button:not(:first-child) .wp-block-button__link:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.callout-box .callout-box--buttons .wp-block-button:not(:first-child) .wp-block-button__link:hover:after {
  opacity: 1;
}
.callout-box .callout-box--buttons .wp-block-button:not(:first-child) .wp-block-button__link:before {
  display: none;
}
.callout-box .callout-box--buttons .wp-block-button:not(:first-child) .wp-block-button__link:after {
  content: "›";
  display: inline-block;
  margin: 0 0 0 8px;
  font-size: 22px;
  line-height: 1;
  position: relative;
  top: 1px;
  transform: none;
  border: none;
  width: auto;
  height: auto;
}

#contact-map {
  width: 100%;
  height: 500px;
}

.content-box {
  position: relative;
  display: flex;
  flex-flow: row wrap;
}
@media (min-width: 768px) {
  .content-box {
    display: block;
  }
}
.wp-block-group .content-box .content-box--content-inner {
  padding: 45px 0px;
}
.content-box.border {
  border: 1px solid #d2d2d2;
}
.wp-block-group .content-box .content-box--content {
  position: relative;
  width: auto;
  padding: 0;
  margin: 0 auto;
}
.content-box.text-location-bottom .content-box--image {
  width: auto;
  height: auto;
  position: absolute;
  padding-top: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.content-box.text-location-bottom .content-box--image:after {
  display: none;
}
.content-box.text-location-bottom .content-box--content-inner {
  padding: 200px 30px 30px;
}
@media (min-width: 992px) {
  .content-box.text-location-bottom .content-box--content-inner {
    padding: 400px 45px 35px;
  }
}
.content-box.text-location-bottom .content-box--content-inner {
  z-index: 2;
  position: relative;
}
.content-box.text-location-bottom .content-box--content-inner > div {
  display: flex;
  flex-flow: row wrap;
  z-index: 3;
  position: relative;
}
@media (min-width: 992px) {
  .content-box.text-location-bottom .content-box--content-inner > div {
    flex-flow: row nowrap;
  }
}
.content-box.text-location-bottom .content-box--content-inner .content-box--title {
  color: #ffffff;
  flex: 1;
  font-size: 26px;
}
@media (min-width: 667px) {
  .content-box.text-location-bottom .content-box--content-inner .content-box--title {
    font-size: 32px;
  }
}
.content-box.text-location-bottom .content-box--content-inner .content-box--buttons {
  flex: 1 0 100%;
  margin: 15px 0 0;
}
@media (min-width: 992px) {
  .content-box.text-location-bottom .content-box--content-inner .content-box--buttons {
    flex: 0;
    margin: 15px 0 0 90px;
  }
}
.content-box.text-location-bottom .content-box--content-inner .content-box--button-link.wp-block-button__link {
  color: #ffffff !important;
  white-space: nowrap;
  word-break: keep-all;
}
@media (min-width: 992px) {
  .content-box.text-location-left .content-box--content-inner {
    padding: 60px calc(40% + 45px) 60px 0;
  }
}
@media (min-width: 1200px) {
  .content-box.text-location-left .content-box--content-inner {
    padding: 90px calc(40% + 60px) 90px 0;
  }
}
@media (min-width: 992px) {
  .content-box.text-location-right .content-box--image {
    right: auto;
    left: 0;
  }
}
@media (min-width: 992px) {
  .content-box.text-location-right .content-box--content-inner {
    padding: 60px 0px 60px calc(40% + 45px);
  }
}
@media (min-width: 1200px) {
  .content-box.text-location-right .content-box--content-inner {
    padding: 90px 0px 90px calc(40% + 60px);
  }
}
.content-box .content-box--image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 80%;
  height: 0;
  width: 100%;
}
@media (min-width: 667px) {
  .content-box .content-box--image {
    padding-top: 60%;
  }
}
@media (min-width: 992px) {
  .content-box .content-box--image {
    width: 40%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: auto;
    padding-top: 0;
    z-index: 3;
  }
}
.content-box .content-box--content {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}
.content-box .content-box--content-inner {
  padding: 45px 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .content-box .content-box--content-inner {
    padding: 45px 30px;
  }
}
@media (min-width: 992px) {
  .content-box .content-box--content-inner {
    padding: 90px calc(40% + 45px) 90px 0px;
  }
}
@media (min-width: 1200px) {
  .content-box .content-box--content-inner {
    padding: 120px calc(40% + 60px) 120px 0px;
  }
}
.content-box .content-box--content-inner > div > *:last-child {
  margin-bottom: 0;
}
.content-box .content-box--title {
  position: relative;
  display: block;
  margin-top: 0;
  color: #a51c30;
}
.content-box .content-box--title small {
  display: none;
  margin: 0 0 10px;
  text-transform: uppercase;
  color: #a51c30;
  font-family: "PT Serif", Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .content-box .content-box--title small {
    display: block;
  }
}
.content-box .content-box--copy {
  margin: 30px 0 0;
  font-size: 16px;
}
@media (min-width: 667px) {
  .content-box .content-box--copy {
    font-size: 18px;
  }
}
.content-box .content-box--copy > *:last-child {
  margin-bottom: 0;
}
.content-box .content-box--copy a {
  color: #a51c30;
}
.content-box .content-box--buttons {
  display: block;
  margin: 45px 0 0;
}
@media (min-width: 768px) {
  .event--block {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
}
.event--block + .event--block {
  border-top: 1px solid grey;
  padding-top: 30px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .event--block + .event--block {
    padding-top: 60px;
    margin-top: 60px;
  }
}
.event--dates {
  flex-basis: 230px;
}
.event--dates p {
  margin: 0;
}
.event--dates small {
  display: block;
  font-size: 18px;
}
.event--title {
  flex: 1;
  color: currentColor;
  padding: 5px 0 30px;
  margin: 0;
  color: blue;
}
@media (min-width: 768px) {
  .event--title {
    padding: 0 30px;
  }
}
@media (min-width: 992px) {
  .event--title {
    padding: 0 90px;
  }
}
.event--button .wp-block-buttons {
  position: relative;
  z-index: 2;
}
.event--button .wp-block-buttons.is-showing-tooltip:before {
  padding: 30px;
  color: #ffffff;
  background: blue;
  display: block;
  position: absolute;
  left: 0px;
  content: attr(data-tooltip);
  bottom: calc(100% + 10px);
  width: 300px;
  font-size: 16px;
  z-index: 3;
}
@media (min-width: 768px) {
  .event--button .wp-block-buttons.is-showing-tooltip:before {
    width: 420px;
    transform: translateY(-50%);
    right: calc(100% + 20px);
    left: auto;
    top: 50%;
    bottom: auto;
  }
}
.event--button .wp-block-buttons.is-showing-tooltip:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: blue transparent transparent transparent;
  position: absolute;
  left: 20px;
  bottom: 100%;
  margin-top: -10px;
}
@media (min-width: 768px) {
  .event--button .wp-block-buttons.is-showing-tooltip:after {
    right: calc(100% + 10px);
    top: 50%;
    left: auto;
    bottom: auto;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent blue;
  }
}
.event--button p {
  display: block;
  margin: 0;
}
.featured-posts--all {
  margin: 45px 0 0;
  text-align: right;
  text-transform: uppercase;
  font-size: 14px;
}

.featured-post {
  position: relative;
  padding: 45px 0 0;
  margin: 45px 0 0;
}
.featured-post:after {
  content: "";
  width: 120px;
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background: grey;
}
.featured-post:hover .featured-post--image div {
  transform: scale(1.05);
}
.featured-post:first-child {
  border: none;
  margin: 0;
  padding: 0;
}
.featured-post:first-child:after {
  display: none;
}
.featured-post.is-video .featured-post--title {
  padding-top: 90px;
  background: url(../images/play-button.svg) left top/60px auto no-repeat transparent;
}

.featured-post--image {
  position: relative;
  margin: 0 0 30px;
  height: 0;
  padding-top: 65%;
  overflow: hidden;
}
.featured-post--image div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
  transform-origin: center;
}
.featured-post--image a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
}

.featured-post--content {
  position: relative;
  width: 100%;
}
.featured-post--content a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.featured-post--link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  cursor: pointer;
}

.featured-post--title {
  margin: 0;
  padding: 0;
  position: relative;
  color: blue;
  font-size: 26px;
}
@media (min-width: 992px) {
  .featured-post--title {
    margin: 0 0 15px;
  }
}

.featured-post--meta {
  display: block;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.featured-post--date {
  display: block;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 16px;
}

.icon-grid-items {
  display: flex;
  flex-flow: row wrap;
  position: relative;
}

.icon-grid-item {
  position: relative;
  transition: background-color 0.3s ease-in-out;
}
.icon-grid-item--text {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px 30px;
}

.icon-grid-item--icon {
  padding-top: 100%;
  height: 0;
  width: 100%;
  position: relative;
}

.icon-grid-item--icon-inner {
  z-index: 2;
  position: absolute;
  top: 15%;
  left: 15%;
  right: 15%;
  bottom: 15%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.image-grid.has-1-images .image-grid-item {
  padding-top: 20% !important;
}
@media (min-width: 992px) {
  .image-grid.is-layout-50_50 .image-grid-item {
    flex: 1 0 calc(50% - 30px);
    padding-top: calc(45% - 30px);
  }
}
@media (min-width: 992px) {
  .image-grid.is-layout-50_25_25 .image-grid-item {
    flex: 1 0 calc(25% - 30px);
    padding-top: calc(32.5% - 30px);
  }
}
@media (min-width: 992px) {
  .image-grid.is-layout-50_25_25 .image-grid-item:first-child {
    flex: 1 0 calc(50% - 30px);
    padding-top: calc(32.5% - 30px);
  }
}
@media (min-width: 992px) {
  .image-grid.is-layout-25_50_25 .image-grid-item {
    flex: 1 0 calc(25% - 30px);
    padding-top: calc(32.5% - 30px);
  }
}
@media (min-width: 992px) {
  .image-grid.is-layout-25_50_25 .image-grid-item:nth-child(2n) {
    flex: 1 0 calc(50% - 30px);
    padding-top: calc(32.5% - 30px);
  }
}
@media (min-width: 992px) {
  .image-grid.is-layout-25_25_50 .image-grid-item {
    flex: 1 0 calc(25% - 30px);
    padding-top: calc(32.5% - 30px);
  }
}
@media (min-width: 992px) {
  .image-grid.is-layout-25_25_50 .image-grid-item:nth-child(3n) {
    flex: 1 0 calc(50% - 30px);
    padding-top: calc(32.5% - 30px);
  }
}
@media (min-width: 992px) {
  .image-grid.is-layout-66_33 .image-grid-item {
    flex: 1 0 calc(33.333% - 30px);
    padding-top: calc(32.5% - 30px);
  }
}
@media (min-width: 992px) {
  .image-grid.is-layout-66_33 .image-grid-item:first-child {
    flex: 1 0 calc(66.666% - 30px);
    padding-top: calc(32.5% - 30px);
  }
}
@media (min-width: 992px) {
  .image-grid.is-layout-33_66 .image-grid-item {
    flex: 1 0 calc(66.666% - 30px);
    padding-top: calc(32.5% - 30px);
  }
}
@media (min-width: 992px) {
  .image-grid.is-layout-33_66 .image-grid-item:first-child {
    flex: 1 0 calc(33.333% - 30px);
    padding-top: calc(32.5% - 30px);
  }
}

.image-grid-items {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  gap: 0px;
}

.image-grid-item {
  flex: 1 0 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 667px) {
  .image-grid-item {
    flex: 1 0 calc(50% - 30px);
    padding-top: calc(50% - 30px);
    margin: 0;
  }
}
@media (min-width: 992px) {
  .image-grid-item {
    flex: 1 0 calc(33.333% - 30px);
    padding-top: calc(33.333% - 30px);
  }
}
.image-grid-item:hover .image-grid-item--image {
  transform: scale(1.05);
}
.image-grid-item--content {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 3;
  right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 992px) {
  .image-grid-item--content {
    padding: 30% 30px 30px 30px;
  }
}
@media (min-width: 1200px) {
  .image-grid-item--content {
    padding: 30% 45px 30px 45px;
  }
}
.image-grid-item--content p {
  color: #fff;
  font-size: 26px;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}
.image-grid-item--content p span {
  display: inline-block;
  padding: 0 30px 0 0;
  background: url(../images/icons/chevron-right-blue-200.svg) right 15px/8px auto no-repeat transparent;
}
.image-grid-item--content p small {
  margin: 5px 0 0;
  display: block;
  font-size: 16px;
}
.image-grid-item--image {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
.image-grid-item--link {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 4;
  display: block;
  cursor: pointer;
}

.image-gallery--grid {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
@media (max-width: 767px) {
  .image-gallery--grid {
    margin: 0 -10px;
  }
}
@media (max-width: 1199px) {
  .image-gallery--item {
    width: 20% !important;
    flex-basis: 20% !important;
    padding: 10px !important;
  }
}
@media (max-width: 767px) {
  .image-gallery--item {
    width: 33.333% !important;
    flex-basis: 33.333% !important;
    padding: 10px !important;
  }
}
@media (max-width: 666px) {
  .image-gallery--item {
    width: 50% !important;
    flex-basis: 50% !important;
    padding: 10px !important;
  }
}
.image-gallery--item--inner {
  background-color: #fff;
  position: relative;
}
.image-gallery--item--inner > div {
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.image-gallery--item img {
  width: 100%;
  height: auto;
}

.leadership--item {
  position: relative;
  background: #fff;
  font-size: 20px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .leadership--item {
    display: flex;
    flex-flow: row nowrap;
  }
}
.leadership--item + .leadership--item {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .leadership--item--image {
    width: 35%;
    flex: 1 0 35%;
  }
}
.leadership--item--image div {
  padding-top: 60%;
  height: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .leadership--item--image div {
    height: 100%;
    max-height: 400px;
    padding-top: 0;
  }
}
.leadership--item--wrap {
  padding: 20px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .leadership--item--wrap {
    padding: 45px;
    font-size: 22px;
  }
}
.leadership--item--name {
  color: #a51c30 !important;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .leadership--item--name {
    font-size: 22px;
  }
}

.leadership--bio--intro {
  display: block;
}
.leadership--bio--intro.is-hiding {
  display: none;
}

.leadership--bio--full {
  display: block;
}
.leadership--bio--full.is-hiding {
  display: none;
}

.locations--filters {
  padding: 0 0 60px;
}
@media (min-width: 992px) {
  .locations--filters {
    display: flex;
    flex-flow: row nowrap;
  }
}
.locations--filters h2 {
  flex: 0;
  color: blue;
}
.locations--dropdowns {
  flex: 1;
  display: flex;
  flex-flow: row wrap;
}
@media (min-width: 992px) {
  .locations--dropdowns {
    flex-flow: row nowrap;
    justify-content: flex-end;
  }
}
.locations--dropdown--wrap {
  flex: 1 0 100%;
  max-width: 100%;
  margin: 15px 0 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media (min-width: 992px) {
  .locations--dropdown--wrap {
    margin: 0 0 0 30px;
    flex: 1 0 300px;
    max-width: 300px;
  }
}
.locations--dropdown--wrap .selectric-wrapper {
  flex: 1;
}
.locations--dropdown--wrap label {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 0 10px 0 0;
  color: blue;
}
.locations--grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 60px;
}
@media (min-width: 667px) {
  .locations--grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .locations--grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.locations--item.is-hiding {
  display: none;
}
.locations--item--name {
  margin: 0 0 10px;
  color: blue;
}
.locations--item--address {
  margin: 0;
  color: blue;
}
.locations--item--phone {
  margin: 0;
  color: blue;
}
.locations--item--phone a {
  color: blue;
}
.locations--item--businesses {
  margin: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 15px 0 0 0;
  color: #676767;
}

.logo--block {
  position: relative;
  height: 0;
  padding-top: 70%;
  background-color: #fff;
  overflow: hidden;
}
.logo--block:hover .logo--image {
  filter: invert(100%);
}
.logo--block:hover .logo--background {
  opacity: 1;
  transform: scale(1);
}
.logo--image {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  filter: invert(0%);
}
.logo--background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: scale(1.1);
  transform-origin: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.masthead {
  position: relative;
  margin: 0 auto;
  height: auto;
  background-color: grey;
  z-index: 1;
}
.masthead--inner {
  position: relative;
  height: 100%;
}
.masthead--video {
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 4;
}
.masthead--video video {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
  max-width: none;
  z-index: 1;
}
.masthead--image {
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.masthead--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
.masthead--container {
  position: relative;
  height: 100%;
  padding: 0;
  z-index: 11;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .masthead--container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) {
  .masthead--container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .masthead--container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 768px) {
  .masthead--content {
    min-height: 500px;
  }
}
.masthead--content-inner {
  margin-top: -40px;
}
@media (max-width: 991px) {
  .masthead--content-inner {
    padding: 120px 0 180px;
  }
}
.masthead.is-short-height .masthead--container {
  padding-top: 120px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .masthead.is-short-height .masthead--container {
    padding-bottom: 0px;
  }
}
@media (min-width: 768px) {
  .masthead.is-short-height .masthead--content {
    min-height: 470px;
  }
}
@media (min-width: 768px) {
  .masthead.is-normal-height .masthead--content {
    min-height: 660px;
  }
}
.masthead.is-full-height {
  min-height: 400px;
}
@media (min-width: 1200px) {
  .masthead.is-full-height {
    height: calc(100vh - 158px);
    max-height: 1000px;
  }
}
.masthead.is-full-height .masthead--content {
  padding: 0;
}
.masthead.is-full-height .masthead--content-inner {
  padding: 60px 0;
}
.masthead--content {
  height: 100%;
  z-index: 5;
  display: flex;
  flex-flow: row nowrap;
  margin-left: auto;
  margin-right: auto;
  max-width: 66.667%;
}
@media (min-width: 768px) {
  .masthead--content {
    position: relative;
  }
}
.masthead--breadcrumb {
  position: absolute;
  top: 30px;
  left: 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  padding-bottom: 3px;
  display: inline-block;
  border-bottom: 2px solid #fff;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .masthead--breadcrumb {
    font-size: 16px;
    top: 30px;
    left: 0;
    border-bottom: 3px solid #fff;
  }
}
.masthead--breadcrumb:hover {
  color: #fff;
  border-bottom: 3px solid #fff;
}
.masthead--title {
  margin: 0 0 10px;
  position: relative;
  z-index: 2;
  display: block;
  font-weight: 300;
  display: flex;
  flex-flow: column wrap;
  width: 100%;
  line-height: 1.3;
}
@media (min-width: 1200px) {
  .masthead--title {
    margin: 0 0 5px;
  }
}
.masthead--title.is-secondary-before .masthead--secondary-title {
  margin: 0 0 15px;
}
.masthead--title.is-secondary-after span {
  order: 1;
}
.masthead--title.is-secondary-after .masthead--secondary-title {
  margin: 15px 0 0;
  order: 2;
}
.masthead--title strong {
  color: blue;
}
.masthead--title span {
  display: block;
  width: 100%;
}
.masthead--secondary-title {
  display: block;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 26px;
}
.masthead--copy {
  margin: 15px 0 0;
}
.masthead--copy > *:last-child {
  margin-bottom: 0;
}
.masthead--buttons {
  display: flex;
  width: 100%;
  margin: 30px 0 0;
}
.masthead--motto {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 4;
  position: relative;
}
@media (min-width: 768px) {
  .masthead--motto {
    padding-left: 30px;
    padding-right: 30px;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .masthead--motto {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1200px) {
  .masthead--motto {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.masthead--motto p {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  max-width: 2400px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .masthead--motto p {
    flex-flow: row nowrap;
    font-size: 14px;
  }
}
.masthead--motto p span {
  margin: 4px 6px;
}
@media (min-width: 768px) {
  .masthead--motto p span {
    margin: 8px 6px;
  }
}
@media (min-width: 1200px) {
  .masthead--motto p span {
    margin: 0 8px;
  }
}
.masthead--motto p .bullet {
  font-size: 19px;
  line-height: 1;
}
.masthead--advance-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translateX(-50%);
  z-index: 12;
  display: block;
  outline: none;
  cursor: pointer;
}
.masthead--advance-arrow svg {
  width: 100%;
  height: auto;
  display: block;
  fill: white;
}

.quote-slider {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.quote-slider.has-gray-waves-style {
  background-image: url(../images/background-waves-gray.jpg);
  background-color: #f1f2f3;
}
.quote-slider.has-white-waves-style {
  background-image: url(../images/background-waves-white.jpg);
}
.quote-slider .flickity-page-dots {
  bottom: 45px;
  width: 180px;
  justify-content: center;
}
@media (min-width: 768px) {
  .quote-slider .flickity-page-dots {
    width: 200px;
  }
}
@media (min-width: 992px) {
  .quote-slider .flickity-page-dots {
    width: 200px;
  }
}
.quote-slider .flickity-page-dots .flickity-page-dot {
  background: #c5d0df;
  margin: 5px;
}
.quote-slider .flickity-page-dots .flickity-page-dot:focus, .quote-slider .flickity-page-dots .flickity-page-dot:active, .quote-slider .flickity-page-dots .flickity-page-dot:hover {
  outline: none;
  box-shadow: none;
}
.quote-slider .flickity-page-dots .flickity-page-dot.is-selected {
  background: #6a97d4;
}
.quote-slider .qs-item {
  width: 100%;
}
.quote-slider .qs-item--container {
  margin: 0 auto;
  padding: 120px 0;
}
@media (min-width: 992px) {
  .quote-slider .qs-item--container {
    display: flex;
    flex-flow: row nowrap;
    align-content: center;
    align-items: center;
  }
}
.quote-slider .qs-item--content {
  flex: 1;
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .quote-slider .qs-item--content {
    margin: 0 90px 0 0;
  }
}
.quote-slider .qs-item--quote {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.quote-slider .qs-item--quote--title {
  color: blue;
  margin: 0;
}
.quote-slider .qs-item--quote--copy {
  flex: 1 0 100%;
  padding: 30px 0 0;
}
@media (min-width: 992px) {
  .quote-slider .qs-item--quote--copy {
    flex: 1;
    padding: 0;
  }
}
.quote-slider .qs-item--quote--copy blockquote {
  font-size: 24px;
  line-height: 1.65;
  margin: 10px 0 0;
}
@media (min-width: 768px) {
  .quote-slider .qs-item--quote--copy blockquote {
    font-size: 32px;
  }
}
.quote-slider .qs-item--quote--copy blockquote q:before {
  position: relative;
}
@media (min-width: 667px) {
  .quote-slider .qs-item--quote--copy blockquote q:before {
    margin-left: -14px;
  }
}
.quote-slider .qs-item--quote--image {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 992px) {
  .quote-slider .qs-item--quote--image {
    margin: 0 60px 0 0;
  }
}
.quote-slider .qs-item--quote--image div {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.quote-slider .qs-item--citee {
  flex: 1 0 100%;
  color: blue;
  font-size: 16px;
  margin: 30px 0 0;
  text-transform: uppercase;
  display: block;
  font-weight: 500;
}
.quote-slider .qs-item--citee span {
  display: inline-block;
  margin: 0 10px 0 0;
  position: relative;
}
.quote-slider .qs-item--citee span:after {
  content: "|";
  display: inline-block;
  margin: 0 0 0 10px;
  position: relative;
  top: -1px;
}
.quote-slider .qs-item p {
  flex: 1 0 100%;
  margin: 20px 0 0;
}
.quote-slider .qs-item--video {
  flex: 1 0 auto;
}

.sitemap-block {
  text-align: center;
}
.sitemap-block ul {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  display: inline-block;
  text-align: left;
}
.sitemap-block ul.children {
  padding: 0 0 0 30px;
  display: block;
}
.stats {
  clear: both;
  margin: 0;
}

.stats--inner {
  display: flex;
  flex-flow: wrap row;
  align-content: top;
  align-items: top;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
@media (min-width: 667px) {
  .stats--inner {
    align-items: stretch;
    justify-content: center;
  }
}

.stat {
  margin: 0;
  position: relative;
  text-align: center;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .stat {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .stat {
    flex: 1 0 50% !important;
    width: 50% !important;
    max-width: 50%;
  }
}
.stat h2 {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  padding: 0;
  position: relative;
  top: -12px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.stat h2:after {
  display: none;
}
.stat .stat--prefix {
  display: inline-block;
  font-size: 60px;
  position: relative;
  margin: 0;
  font-weight: 400;
  margin: 0 5px 0 0;
}
@media (max-width: 499px) {
  .stat .stat--prefix {
    font-size: 30px;
  }
}
.stat .stat--prefix-large {
  display: inline-block;
  font-size: 90px;
  position: relative;
  font-weight: 400;
  letter-spacing: 0px;
  margin: 0 5px 0 0;
}
@media (min-width: 500px) and (max-width: 767px) {
  .stat .stat--prefix-large {
    font-size: 90px;
  }
}
@media (max-width: 499px) {
  .stat .stat--prefix-large {
    font-size: 42px;
  }
}
.stat .stat--suffix {
  display: inline-block;
  font-size: 90px;
  position: relative;
  margin: 0 0 0 5px;
  font-weight: 500;
  letter-spacing: 0px;
}
@media (min-width: 500px) and (max-width: 767px) {
  .stat .stat--suffix {
    font-size: 90px;
  }
}
@media (max-width: 499px) {
  .stat .stat--suffix {
    font-size: 42px;
  }
}
.stat .stat--suffix-small {
  display: inline-block;
  font-size: 42px;
  position: relative;
  margin: 0 0 0 5px;
  top: -34px;
  font-weight: 400;
}
@media (max-width: 499px) {
  .stat .stat--suffix-small {
    font-size: 30px;
    top: -8px;
  }
}
.stat .stat--number {
  margin: 0;
  font-size: 90px;
  letter-spacing: -2px;
  display: inline-block;
}
@media (max-width: 499px) {
  .stat .stat--number {
    font-size: 52px;
  }
}
.stat p {
  margin: 0 auto;
  font-size: 18px;
  display: block;
  position: relative;
  padding: 0;
  color: blue !important;
}
.stat p small {
  font-size: 14px;
  display: block;
  margin: 10px 0 0;
}

.table thead tr th {
  background: #2c536b;
  color: #fff;
  font-weight: 400;
}
.table tbody tr td {
  background: #e3e7e9;
  border: none;
}
.table tbody tr:nth-child(odd) td {
  background: #eef0f0;
}

.tabs--links {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  grid-gap: 60px;
  gap: 60px;
}
.tabs--link {
  padding: 0;
  text-align: center;
  position: relative;
  flex: 1 0 calc(50% - 30px);
  max-width: calc(50% - 30px);
}
@media (min-width: 768px) {
  .tabs--link {
    flex: 1;
    max-width: 1000px;
  }
}
.tabs--link:after {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  bottom: 0;
  left: 50%;
  margin-left: -8px;
  rotate: 0deg;
  z-index: -1;
  background: url(../images/icons/caret-down-blue-400.svg) center center/100% auto no-repeat transparent;
}
.tabs--link.is-showing:after {
  rotate: 180deg;
}
.tabs--link a {
  display: block;
  text-decoration: none;
  color: blue;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 0 20px;
  border-bottom: 2px solid transparent;
  align-self: center;
  height: 110px;
  display: flex;
}
.tabs--link a img {
  width: auto;
  max-height: 80px;
  display: block;
  margin: 0 auto;
}

.tab-content-close {
  position: absolute;
  top: 37px;
  right: 0;
  cursor: pointer;
  z-index: 4;
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
  color: blue;
}

.wp-block-group.tab-content {
  display: none;
  padding: 45px 0 0 !important;
  position: relative;
}
.wp-block-group.tab-content.is-showing {
  display: block;
}
.wp-block-group.tab-content .wp-block-group__inner-container > *:first-child {
  margin-top: 0;
  padding-right: 45px;
}
.wp-block-group.tab-content > * {
  max-width: 9999px;
}

.team--block {
  position: relative;
}
.team--back-to-top {
  position: absolute;
  bottom: 30px;
  right: 0;
  border: 2px solid blue;
  background: #ffffff;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1;
  word-break: keep-all;
  white-space: nowrap;
}
.team--filters {
  padding: 0 0 60px;
}
@media (min-width: 1200px) {
  .team--filters {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
  }
}
.team--search {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  .team--search {
    justify-content: flex-start;
  }
}
.team--search-input {
  border-bottom: 1px solid blue;
  text-transform: uppercase;
  color: blue;
  padding: 0 30px 1px 0;
  background: url(../images/icons/icon-search-blue-400.svg) right 5px/13px auto no-repeat transparent;
  font-weight: 500;
  font-size: 16px;
}
.team--search-input::-moz-placeholder {
  color: blue;
  font-weight: 500;
  font-size: 16px;
}
.team--search-input::placeholder {
  color: blue;
  font-weight: 500;
  font-size: 16px;
}
.team--dropdowns {
  margin: 30px 0 0;
  flex-flow: row wrap;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  .team--dropdowns {
    flex-flow: row nowrap;
    flex: 1 0 65%;
    margin: 0 0 0 60px;
    display: flex;
  }
}
.team--dropdown--wrap {
  flex: 1 0 100%;
  max-width: 100%;
  margin: 30px 0 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  .team--dropdown--wrap {
    margin: 0 0 0 30px;
    flex: 1 0 300px;
    max-width: 32%;
    justify-content: flex-start;
  }
}
.team--dropdown--wrap .selectric-wrapper {
  flex: 1;
  max-width: 240px;
}
.team--dropdown--wrap label {
  margin-right: 15px;
  text-transform: uppercase;
  color: blue;
  font-size: 16px;
  font-weight: 500;
}
.team--grid {
  padding: 0 0 120px;
}
@media (min-width: 768px) {
  .team--grid.equities .team--column, .team--grid.wealth-management .team--column {
    flex: 1 0 33.333%;
    max-width: 33.333%;
  }
}
@media (min-width: 768px) {
  .team--grid.equities .team--column + .team--column, .team--grid.wealth-management .team--column + .team--column {
    flex: 1 0 calc(33.333% - 30px);
  }
}
.team--grid.equities .team--column.team--column--networks, .team--grid.equities .team--column.team--column--specialties, .team--grid.wealth-management .team--column.team--column--networks, .team--grid.wealth-management .team--column.team--column--specialties {
  display: none;
}
@media (min-width: 768px) {
  .team--grid.corporate-leadership .team--column {
    flex: 1 0 33.333%;
    max-width: 33.333%;
  }
}
@media (min-width: 768px) {
  .team--grid.corporate-leadership .team--column + .team--column {
    flex: 1 0 calc(33.333% - 30px);
  }
}
.team--grid.corporate-leadership .team--column.team--column--specialties, .team--grid.corporate-leadership .team--column.team--column--networks {
  display: none;
}
@media (min-width: 768px) {
  .team--grid.investment-banking .team--column {
    flex: 1 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 768px) {
  .team--grid.investment-banking .team--column + .team--column {
    flex: 1 0 calc(25% - 30px);
  }
}
.team--grid.investment-banking .team--column.team--column--networks {
  display: none;
}
@media (min-width: 768px) {
  .team--grid.global-diversity-council .team--column {
    flex: 1 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 768px) {
  .team--grid.global-diversity-council .team--column + .team--column {
    flex: 1 0 calc(25% - 30px);
  }
}
.team--grid.global-diversity-council .team--column.team--column--specialties {
  display: none;
}
.team--item {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .team--item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
  }
}
.team--item.is-hiding {
  display: none;
}
.team--item h2 {
  margin: 0;
  font-size: 20px;
}
@media (min-width: 768px) {
  .team--item h2 {
    font-size: 24px;
  }
}
.team--item h2 a {
  display: block;
}
.team--item p {
  margin: 0;
  color: #64676f;
}
@media (max-width: 767px) {
  .team--item p {
    font-size: 16px;
  }
}
.team--item + .team--item {
  border-top: 1px solid #d9d9d9;
}
@media (min-width: 768px) {
  .team--item .team--column {
    flex: 1 0 33.333%;
    max-width: 33.333%;
    align-self: flex-start;
  }
}
.team--item .team--column + .team--column {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .team--item .team--column + .team--column {
    margin-left: 30px;
    margin-top: 0px;
    flex: 1 0 calc(33.333% - 30px);
  }
}
.team--item--headshot h3 {
  margin: 30px 0 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: blue;
}
.team--item--headshot h3 small {
  display: block;
  color: #7d8089;
  margin: 10px 0 0;
  font-size: 18px;
}
.team--item--image {
  height: 0;
  padding-top: 150%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.team--item--image div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/team-image-placeholder.jpg);
}
.team--item--link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
}
.team--item--bio {
  gap: 20px;
  grid-column: 1/-1;
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  display: none;
  margin-bottom: 60px;
  margin-top: 60px;
  padding-bottom: 60px;
  padding-top: 60px;
  position: relative;
}
.team--item--bio.is-showing {
  display: flex;
}
.team--item--bio--header h3 {
  margin: 0;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: blue;
}
.team--item--bio--header h3 small {
  display: block;
  text-transform: uppercase;
  color: #7d8089;
  font-size: 18px;
  margin: 20px 0 0;
}
.team--item--bio--content {
  flex: 1 0 70%;
  padding: 0 0 0 90px;
}

.timeline--block {
  position: relative;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .timeline--block:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #a51c30;
  }
}
.timeline--block .swiper-button-next {
  top: 0;
  right: 0;
  margin: 0;
  width: 40px;
  height: 30px;
}
.timeline--block .swiper-button-next:after {
  width: 40px;
  height: 30px;
  font: 0/0 a;
  background: url(../images/icons/arrow-right-white.svg) center center/100% auto no-repeat transparent;
}
.timeline--block .swiper-button-prev {
  top: 0;
  right: 60px;
  margin: 0;
  left: auto;
  width: 40px;
  height: 30px;
}
.timeline--block .swiper-button-prev:after {
  width: 40px;
  height: 30px;
  font: 0/0 a;
  background: url(../images/icons/arrow-left-white.svg) center center/100% auto no-repeat transparent;
}
.timeline--items {
  padding: 15px 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .timeline--items:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    height: 9px;
    width: 9px;
    background: #a51c30;
    border-radius: 100%;
    margin-top: -5px;
  }
}
@media (min-width: 768px) {
  .timeline--items {
    height: 500px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .timeline--items {
    height: 400px;
  }
}
.timeline--item {
  width: 100%;
}
@media (min-width: 768px) {
  .timeline--item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .timeline--item {
    width: 25%;
    height: 250px;
  }
}
@media (min-width: 1200px) {
  .timeline--item {
    height: 400px;
    padding-bottom: 200px;
  }
}
@media (min-width: 768px) {
  .timeline--item__wrap {
    align-items: flex-end;
    height: 250px;
    display: flex;
    padding-bottom: 30px;
    padding-top: 0px;
  }
}
@media (min-width: 1200px) {
  .timeline--item__wrap {
    height: 200px;
  }
}
.timeline--item__content {
  flex: 1;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  padding: 20px 0 0;
}
@media (min-width: 768px) {
  .timeline--item__content {
    padding: 0 0 0 20px;
  }
}
.timeline--item__content > *:last-child {
  margin-bottom: 0;
}
.timeline--item__icon {
  height: 80px;
  width: 80px;
  flex: 1 0 80px;
  max-width: 80px;
  border-radius: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
@media (min-width: 768px) {
  .timeline--item__icon:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 16px;
    height: 10px;
    margin-left: -8px;
    background: url(../images/icons/chevron-brand-primary-down.svg) center center/100% auto no-repeat transparent;
  }
}
@media (min-width: 768px) {
  .timeline--item:nth-child(even) {
    padding-bottom: 0px;
    padding-top: 250px;
  }
}
@media (min-width: 768px) {
  .timeline--item:nth-child(even) .timeline--item__wrap {
    align-self: flex-end;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 0px;
  }
}
.timeline--item:nth-child(even) .timeline--item__icon:before {
  top: -18px;
  bottom: auto;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .timeline--item:nth-child(even) .timeline--item__year {
    align-self: flex-start;
  }
}
.timeline--item__year {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  position: relative;
  font-weight: 900;
  font-family: "PT Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (min-width: 768px) {
  .timeline--item__year {
    align-self: flex-end;
  }
}

.video-popup {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 0;
  padding-top: 100%;
}
.video-popup.is-landscape {
  padding-top: 70%;
}
.video-popup.is-cinema {
  padding-top: 56.25%;
}
.video-popup .wp-block-buttons {
  display: block;
  position: absolute;
  right: 30px;
  bottom: 25px;
  z-index: 2;
}
.video-popup .video-popup--content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}
.video-popup .video-popup--content .video-popup--content-inner {
  padding: 0;
  color: #fff;
  position: relative;
}

.wp-block-buttons.is-content-justification-right .wp-block-button + .wp-block-button {
  margin-left: 15px;
}
.wp-block-buttons.is-content-justification-center .wp-block-button + .wp-block-button {
  margin-left: 15px;
}
.wp-block-buttons.is-vertical .wp-block-button + .wp-block-button {
  margin-top: 20px;
  margin-left: 0px;
}
.wp-block-buttons.full-width .wp-block-button {
  width: 100%;
  max-width: 100%;
  display: block;
}
.wp-block-buttons.full-width .wp-block-button .wp-block-button__link {
  display: block;
}

.square-button p {
  margin: 0;
  display: block;
}
.square-button.square-button-blue .square-button--link {
  background: #156cdf;
}
.square-button.square-button-blue .square-button--link i {
  background: #0c57b9;
  color: #18aeff;
}
.square-button.square-button-blue .square-button--link:hover, .square-button.square-button-blue .square-button--link:active, .square-button.square-button-blue .square-button--link:focus {
  background: #0e4a99;
  color: #fff;
}
.square-button.square-button-left p {
  text-align: left;
}
.square-button.square-button-center p {
  text-align: center;
}
.square-button.square-button-right p {
  text-align: right;
}

.wp-block-button + .wp-block-button {
  margin-left: 20px;
}
.wp-block-button .wp-block-button__link:not(.has-text-color) {
  color: #ffffff !important;
}
.wp-block-button .wp-block-button__link:not(.has-text-color):hover {
  color: #ffffff !important;
}
.wp-block-button .wp-block-button__link:not(.has-background) {
  background-color: #a51c30 !important;
}
.wp-block-button .wp-block-button__link:not(.has-background):hover, .wp-block-button .wp-block-button__link:not(.has-background):focus {
  background-color: #64111d !important;
}
.wp-block-button .wp-block-button__link {
  position: relative;
  overflow: hidden;
}
.wp-block-button .wp-block-button__link span {
  position: relative;
  z-index: 2;
}
.wp-block-button.is-style-fill .wp-block-button__link:not(.has-background), .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background) {
  background-color: #a51c30 !important;
  color: white !important;
}
.wp-block-button.is-style-fill .wp-block-button__link:not(.has-background):hover, .wp-block-button.is-style-fill .wp-block-button__link:not(.has-background):focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background):hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background):focus {
  background-color: #64111d !important;
  color: white !important;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  border-width: 2px;
  overflow: hidden;
}
.wp-block-button.is-style-outline .wp-block-button__link:after {
  border-radius: 100% 100% 0 0;
  transform: translateY(100%) scaleY(0.5);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link:active {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link[href*="youtube.com"]:before, .wp-block-button.is-style-outline .wp-block-button__link[href*="vimeo.com"]:before, .wp-block-button.is-style-outline .wp-block-button__link[href*="youtu.be"]:before {
  content: "▶";
  margin: 0 8px 0 -8px;
  z-index: 3;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
  background-color: rgba(0, 0, 255, 0) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):hover, .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):focus {
  background-color: rgba(0, 0, 255, 0) !important;
  color: #ffffff !important;
}
.wp-block-button > .wp-block-button__link {
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  padding: 8px 20px 8px 60px !important;
  transition: all 0.2s ease-in-out;
  border-radius: 0px !important;
  position: relative;
  font-weight: 500;
  border-style: solid;
  border-width: 0px !important;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px !important;
}
.wp-block-button > .wp-block-button__link:hover, .wp-block-button > .wp-block-button__link:focus, .wp-block-button > .wp-block-button__link:active {
  text-decoration: none;
}
.wp-block-button > .wp-block-button__link:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: url(../images/icons/icon-plus-brand-primary.svg) center center/100% auto no-repeat transparent;
}
.wp-block-button > .wp-block-button__link:before {
  z-index: 1;
  height: 44px;
  width: 44px;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: #791523;
  border-radius: 5px 0 0 5px;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-white-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-white-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-white-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-white-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-white-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-white-background-color {
  background-color: white !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-white-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-white-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-white-background-color:focus {
  background-color: #e6e6e6 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-white-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-white-background-color:after {
  background-image: url(../images/icons/icon-plus-white.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-white-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-white-background-color:before {
  background-color: #e6e6e6 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color {
  background-color: rgba(255, 255, 255, 0) !important;
  border-color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  background-color: rgba(230, 230, 230, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-black-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-black-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-black-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-black-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-black-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-black-background-color {
  background-color: black !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-black-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-black-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-black-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-black-background-color:focus {
  background-color: black !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-black-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-black-background-color:after {
  background-image: url(../images/icons/icon-plus-black.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-black-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-black-background-color:before {
  background-color: black !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-black-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-black-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-black-background-color {
  background-color: rgba(0, 0, 0, 0) !important;
  border-color: #000000 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-black-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-black-background-color:focus {
  background-color: rgba(0, 0, 0, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-100-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-100-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-100-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-100-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-100-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-100-background-color {
  background-color: #f9faf8 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-100-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-100-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-100-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-100-background-color:focus {
  background-color: #e0e5da !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-100-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-100-background-color:after {
  background-image: url(../images/icons/icon-plus-gray-100.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-100-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-100-background-color:before {
  background-color: #e0e5da !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-100-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-100-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-100-background-color {
  background-color: rgba(249, 250, 248, 0) !important;
  border-color: #f9faf8 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-100-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-100-background-color:focus {
  background-color: rgba(224, 229, 218, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-200-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-200-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-200-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-200-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-200-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-200-background-color {
  background-color: #dbdde0 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-200-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-200-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-200-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-200-background-color:focus {
  background-color: #c0c3c8 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-200-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-200-background-color:after {
  background-image: url(../images/icons/icon-plus-gray-200.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-200-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-200-background-color:before {
  background-color: #c0c3c8 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-200-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-200-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-200-background-color {
  background-color: rgba(219, 221, 224, 0) !important;
  border-color: #dbdde0 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-200-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-200-background-color:focus {
  background-color: rgba(192, 195, 200, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-300-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-300-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-300-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-300-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-300-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-300-background-color {
  background-color: #d9d9d9 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-300-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-300-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-300-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-300-background-color:focus {
  background-color: silver !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-300-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-300-background-color:after {
  background-image: url(../images/icons/icon-plus-gray-300.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-300-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-300-background-color:before {
  background-color: silver !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-300-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-300-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-300-background-color {
  background-color: rgba(217, 217, 217, 0) !important;
  border-color: #d9d9d9 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-300-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-300-background-color:focus {
  background-color: rgba(192, 192, 192, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-400-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-400-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-400-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-400-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-400-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-400-background-color {
  background-color: #99a0a6 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-400-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-400-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-400-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-400-background-color:focus {
  background-color: #7e878e !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-400-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-400-background-color:after {
  background-image: url(../images/icons/icon-plus-gray-400.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-400-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-400-background-color:before {
  background-color: #7e878e !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-400-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-400-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-400-background-color {
  background-color: rgba(153, 160, 166, 0) !important;
  border-color: #99a0a6 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-400-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-400-background-color:focus {
  background-color: rgba(126, 135, 142, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-600-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-600-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-600-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-600-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-600-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-600-background-color {
  background-color: #2c2d30 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-600-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-600-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-600-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-600-background-color:focus {
  background-color: #141415 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-600-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-600-background-color:after {
  background-image: url(../images/icons/icon-plus-gray-600.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-600-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-600-background-color:before {
  background-color: #141415 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-600-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-600-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-600-background-color {
  background-color: rgba(44, 45, 48, 0) !important;
  border-color: #2c2d30 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-600-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-600-background-color:focus {
  background-color: rgba(20, 20, 21, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-700-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-700-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-700-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-700-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-700-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-700-background-color {
  background-color: #151b1f !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-700-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-gray-700-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-700-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-700-background-color:focus {
  background-color: #000101 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-700-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-700-background-color:after {
  background-image: url(../images/icons/icon-plus-gray-700.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-gray-700-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-gray-700-background-color:before {
  background-color: #000101 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-700-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-700-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-700-background-color {
  background-color: rgba(21, 27, 31, 0) !important;
  border-color: #151b1f !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-700-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-700-background-color:focus {
  background-color: rgba(0, 1, 1, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-200-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-blue-200-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-200-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-200-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-200-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-200-background-color {
  background-color: #57bcf2 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-200-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-blue-200-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-200-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-200-background-color:focus {
  background-color: #28a9ee !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-200-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-200-background-color:after {
  background-image: url(../images/icons/icon-plus-blue-200.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-200-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-200-background-color:before {
  background-color: #28a9ee !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-200-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-blue-200-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-200-background-color {
  background-color: rgba(87, 188, 242, 0) !important;
  border-color: #57bcf2 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-200-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-blue-200-background-color:focus {
  background-color: rgba(40, 169, 238, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-300-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-blue-300-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-300-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-300-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-300-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-300-background-color {
  background-color: #6a97d4 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-300-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-blue-300-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-300-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-300-background-color:focus {
  background-color: #427bc9 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-300-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-300-background-color:after {
  background-image: url(../images/icons/icon-plus-blue-300.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-300-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-300-background-color:before {
  background-color: #427bc9 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-300-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-blue-300-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-300-background-color {
  background-color: rgba(106, 151, 212, 0) !important;
  border-color: #6a97d4 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-300-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-blue-300-background-color:focus {
  background-color: rgba(66, 123, 201, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-400-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-blue-400-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-400-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-400-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-400-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-400-background-color {
  background-color: #264d82 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-400-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-blue-400-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-400-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-400-background-color:focus {
  background-color: #1a365b !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-400-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-400-background-color:after {
  background-image: url(../images/icons/icon-plus-blue-400.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-400-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-400-background-color:before {
  background-color: #1a365b !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-400-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-blue-400-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-400-background-color {
  background-color: rgba(38, 77, 130, 0) !important;
  border-color: #264d82 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-400-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-blue-400-background-color:focus {
  background-color: rgba(26, 54, 91, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-700-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-blue-700-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-700-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-700-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-700-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-700-background-color {
  background-color: #002037 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-700-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-blue-700-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-700-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-700-background-color:focus {
  background-color: #000204 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-700-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-700-background-color:after {
  background-image: url(../images/icons/icon-plus-blue-700.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-blue-700-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-blue-700-background-color:before {
  background-color: #000204 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-700-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-blue-700-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-700-background-color {
  background-color: rgba(0, 32, 55, 0) !important;
  border-color: #002037 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-blue-700-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-blue-700-background-color:focus {
  background-color: rgba(0, 2, 4, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-primary-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-primary-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-primary-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-primary-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-primary-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-primary-background-color {
  background-color: #a51c30 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-primary-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-primary-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-primary-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-primary-background-color:focus {
  background-color: #791523 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-primary-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-primary-background-color:after {
  background-image: url(../images/icons/icon-plus-primary.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-primary-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-primary-background-color:before {
  background-color: #791523 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-primary-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-primary-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-primary-background-color {
  background-color: rgba(165, 28, 48, 0) !important;
  border-color: #a51c30 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-primary-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-primary-background-color:focus {
  background-color: rgba(121, 21, 35, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-secondary-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-secondary-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-secondary-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-secondary-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-secondary-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-secondary-background-color {
  background-color: #1e1e1e !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-secondary-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-secondary-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-secondary-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-secondary-background-color:focus {
  background-color: #050505 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-secondary-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-secondary-background-color:after {
  background-image: url(../images/icons/icon-plus-secondary.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-secondary-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-secondary-background-color:before {
  background-color: #050505 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-secondary-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-secondary-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-secondary-background-color {
  background-color: rgba(30, 30, 30, 0) !important;
  border-color: #1e1e1e !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-secondary-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-secondary-background-color:focus {
  background-color: rgba(5, 5, 5, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-tertiary-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-tertiary-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-tertiary-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-tertiary-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-tertiary-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-tertiary-background-color {
  background-color: #666666 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-tertiary-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-tertiary-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-tertiary-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-tertiary-background-color:focus {
  background-color: #4d4d4d !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-tertiary-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-tertiary-background-color:after {
  background-image: url(../images/icons/icon-plus-tertiary.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-tertiary-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-tertiary-background-color:before {
  background-color: #4d4d4d !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-tertiary-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-tertiary-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-tertiary-background-color {
  background-color: rgba(102, 102, 102, 0) !important;
  border-color: #666666 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-tertiary-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-tertiary-background-color:focus {
  background-color: rgba(77, 77, 77, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-quaternary-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-quaternary-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-quaternary-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-quaternary-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-quaternary-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-quaternary-background-color {
  background-color: #156cdf !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-quaternary-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-quaternary-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-quaternary-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-quaternary-background-color:focus {
  background-color: #1155b0 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-quaternary-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-quaternary-background-color:after {
  background-image: url(../images/icons/icon-plus-quaternary.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-quaternary-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-quaternary-background-color:before {
  background-color: #1155b0 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-quaternary-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-quaternary-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-quaternary-background-color {
  background-color: rgba(21, 108, 223, 0) !important;
  border-color: #156cdf !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-quaternary-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-quaternary-background-color:focus {
  background-color: rgba(17, 85, 176, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-light-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-light-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-light-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-light-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-light-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-light-background-color {
  background-color: #d2d2d2 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-light-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-light-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-light-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-light-background-color:focus {
  background-color: #b9b9b9 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-light-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-light-background-color:after {
  background-image: url(../images/icons/icon-plus-light.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-light-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-light-background-color:before {
  background-color: #b9b9b9 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-light-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-light-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-light-background-color {
  background-color: rgba(210, 210, 210, 0) !important;
  border-color: #d2d2d2 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-light-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-light-background-color:focus {
  background-color: rgba(185, 185, 185, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-lighter-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-lighter-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-lighter-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-lighter-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-lighter-background-color, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-lighter-background-color {
  background-color: #f7f7f7 !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-lighter-background-color:hover, .wp-block-button.is-style-fill .wp-block-button__link.has-lighter-background-color:focus, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-lighter-background-color:hover, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-lighter-background-color:focus {
  background-color: #dedede !important;
}
.wp-block-button.is-style-fill .wp-block-button__link.has-lighter-background-color:after, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-lighter-background-color:after {
  background-image: url(../images/icons/icon-plus-lighter.svg);
}
.wp-block-button.is-style-fill .wp-block-button__link.has-lighter-background-color:before, .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-lighter-background-color:before {
  background-color: #dedede !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-lighter-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-lighter-color:focus {
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-lighter-background-color {
  background-color: rgba(247, 247, 247, 0) !important;
  border-color: #f7f7f7 !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-lighter-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-lighter-background-color:focus {
  background-color: rgba(222, 222, 222, 0) !important;
  color: #ffffff !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  color: #000000 !important;
}

.wp-block-cover {
  padding-left: 0px;
  padding-right: 0px;
  min-height: 360px;
  padding-top: 0;
  padding-bottom: 0;
}
.wp-block-cover .wp-block-cover-image {
  min-height: 360px;
}
.wp-block-cover .wp-block-cover__inner-container {
  margin: 0 auto;
}
.wp-block-cover.full-height {
  height: 100% !important;
}
.wp-block-cover.landscape-cover {
  min-height: 320px;
  padding-left: 60px;
  padding-right: 60px;
  border-radius: 6px;
}
.wp-block-cover.landscape-cover .wp-block-button {
  font-size: 14px;
}
.wp-block-cover.landscape-cover h3 {
  margin-top: 0;
}
.wp-block-cover.landscape-cover .wp-block-buttons {
  margin-bottom: 0;
}
.wp-block-cover h1.intro em, .wp-block-cover h2.intro em, .wp-block-cover h3.intro em, .wp-block-cover h4.intro em, .wp-block-cover h5.intro em, .wp-block-cover h6.intro em {
  color: #dacdaf;
}

.wp-block-group {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}
.wp-block-group.is-slider .wp-block-cover {
  height: 360px;
  width: 100%;
}
.wp-block-group.is-slider .wp-block-group__inner-container {
  max-height: 360px;
}
.wp-block-group.is-slider .swiper-pagination-bullet {
  opacity: 0.5;
  background-color: #111;
  margin: 10px 0 !important;
}
.wp-block-group.is-slider .swiper-vertical > .swiper-pagination-bullets, .wp-block-group.is-slider .swiper-pagination-vertical.swiper-pagination-bullets {
  right: 30px;
}
.wp-block-group.is-slider .swiper-pagination-bullet-active {
  opacity: 1;
}
.wp-block-group.border .wp-block-group__inner-container {
  border: 1px solid #d2d2d2;
}
.wp-block-group .wp-block-group {
  padding-left: 0px;
  padding-right: 0px;
}
.wp-block-group.narrow > * {
  max-width: 1170px;
}
.wp-block-group.narrower > * {
  max-width: 900px;
}
.wp-block-group.narrowest > * {
  max-width: 700px;
}
.wp-block-group.full-width {
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 768px) {
  .wp-block-group.full-width {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 992px) {
  .wp-block-group.full-width {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 1200px) {
  .wp-block-group.full-width {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 1440px) {
  .wp-block-group.full-width {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.wp-block-group.full-width > .wp-block-group__inner-container {
  max-width: 4000px;
}
.wp-block-group.full-width .wp-block-group {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .wp-block-group.full-width .wp-block-group {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) {
  .wp-block-group.full-width .wp-block-group {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-group.full-width .wp-block-group {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.wp-block-group.background-logo {
  overflow: hidden;
  background-color: #1e1e1e;
}
.wp-block-group.background-logo:after {
  background-image: url(../images/background-logo.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 120% auto;
  z-index: 1;
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  right: 0;
  height: 600px;
}
@media (min-width: 768px) {
  .wp-block-group.background-logo:after {
    background-position: center 75%;
  }
}
.wp-block-group.background-logo .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.background-logo2 {
  overflow: hidden;
  background-color: #1e1e1e;
}
.wp-block-group.background-logo2:after {
  background-image: url(../images/background-logo.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 120% auto;
  z-index: 1;
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  right: 0;
  height: 600px;
}
@media (min-width: 768px) {
  .wp-block-group.background-logo2:after {
    background-position: center 5%;
  }
}
.wp-block-group.background-logo2 .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.background-waves-left {
  overflow: hidden;
}
@media (min-width: 992px) {
  .wp-block-group.background-waves-left:after {
    background-image: url(../images/background-waves.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    bottom: 0;
    right: 50%;
  }
}
.wp-block-group.background-waves-left .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.background-waves-white {
  overflow: hidden;
}
.wp-block-group.background-waves-white:before {
  background-image: url(../images/pattern-waves-bottom-right.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  height: 400px;
  width: 400px;
}
.wp-block-group.background-waves-white .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.background-waves-gray-bottom-left {
  overflow: hidden;
}
.wp-block-group.background-waves-gray-bottom-left:after {
  background-image: url(../images/background-waves-gray.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  content: "";
  width: 500px;
}
.wp-block-group.background-waves-gray-bottom-left .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.background-waves-white-bottom-left {
  overflow: hidden;
}
.wp-block-group.background-waves-white-bottom-left:after {
  background-image: url(../images/background-waves-white.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  content: "";
  width: 500px;
}
.wp-block-group.background-waves-white-bottom-left .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.background-waves-gray {
  overflow: hidden;
}
.wp-block-group.background-waves-gray:before {
  background-image: url(../images/pattern-waves-bottom-right-gray.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  height: 400px;
  width: 400px;
}
.wp-block-group.background-waves-gray .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.flex .wp-block-group__inner-container {
  display: flex;
  flex-flow: row nowrap;
}
.wp-block-group.justify-center .wp-block-group__inner-container {
  justify-content: center;
}
.wp-block-group.justify-center .wp-block-group__inner-container > * {
  margin-left: 15px;
  margin-right: 15px;
}
.wp-block-group.align-center .wp-block-group__inner-container {
  align-items: center;
  align-content: center;
}
.wp-block-group .wp-block-group__inner-container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-group.narrow > * {
  max-width: 1170px;
}
.wp-block-group.narrower > * {
  max-width: 900px;
}
.wp-block-group.narrowest > * {
  max-width: 700px;
}
.wp-block-group.top-half-white {
  position: relative;
}
.wp-block-group.top-half-white:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #ffffff;
}
.wp-block-group.bottom-half-white {
  position: relative;
}
.wp-block-group.bottom-half-white:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #ffffff;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-black {
  position: relative;
}
.wp-block-group.top-half-black:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #000000;
}
.wp-block-group.bottom-half-black {
  position: relative;
}
.wp-block-group.bottom-half-black:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #000000;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-gray-100 {
  position: relative;
}
.wp-block-group.top-half-gray-100:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #f9faf8;
}
.wp-block-group.bottom-half-gray-100 {
  position: relative;
}
.wp-block-group.bottom-half-gray-100:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #f9faf8;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-gray-200 {
  position: relative;
}
.wp-block-group.top-half-gray-200:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #dbdde0;
}
.wp-block-group.bottom-half-gray-200 {
  position: relative;
}
.wp-block-group.bottom-half-gray-200:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #dbdde0;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-gray-300 {
  position: relative;
}
.wp-block-group.top-half-gray-300:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #d9d9d9;
}
.wp-block-group.bottom-half-gray-300 {
  position: relative;
}
.wp-block-group.bottom-half-gray-300:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #d9d9d9;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-gray-400 {
  position: relative;
}
.wp-block-group.top-half-gray-400:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #99a0a6;
}
.wp-block-group.bottom-half-gray-400 {
  position: relative;
}
.wp-block-group.bottom-half-gray-400:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #99a0a6;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-gray-600 {
  position: relative;
}
.wp-block-group.top-half-gray-600:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #2c2d30;
}
.wp-block-group.bottom-half-gray-600 {
  position: relative;
}
.wp-block-group.bottom-half-gray-600:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #2c2d30;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-gray-700 {
  position: relative;
}
.wp-block-group.top-half-gray-700:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #151b1f;
}
.wp-block-group.bottom-half-gray-700 {
  position: relative;
}
.wp-block-group.bottom-half-gray-700:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #151b1f;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-blue-200 {
  position: relative;
}
.wp-block-group.top-half-blue-200:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #57bcf2;
}
.wp-block-group.bottom-half-blue-200 {
  position: relative;
}
.wp-block-group.bottom-half-blue-200:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #57bcf2;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-blue-300 {
  position: relative;
}
.wp-block-group.top-half-blue-300:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #6a97d4;
}
.wp-block-group.bottom-half-blue-300 {
  position: relative;
}
.wp-block-group.bottom-half-blue-300:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #6a97d4;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-blue-400 {
  position: relative;
}
.wp-block-group.top-half-blue-400:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #264d82;
}
.wp-block-group.bottom-half-blue-400 {
  position: relative;
}
.wp-block-group.bottom-half-blue-400:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #264d82;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-blue-700 {
  position: relative;
}
.wp-block-group.top-half-blue-700:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #002037;
}
.wp-block-group.bottom-half-blue-700 {
  position: relative;
}
.wp-block-group.bottom-half-blue-700:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #002037;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-primary {
  position: relative;
}
.wp-block-group.top-half-primary:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #a51c30;
}
.wp-block-group.bottom-half-primary {
  position: relative;
}
.wp-block-group.bottom-half-primary:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #a51c30;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-secondary {
  position: relative;
}
.wp-block-group.top-half-secondary:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #1e1e1e;
}
.wp-block-group.bottom-half-secondary {
  position: relative;
}
.wp-block-group.bottom-half-secondary:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #1e1e1e;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-tertiary {
  position: relative;
}
.wp-block-group.top-half-tertiary:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #666666;
}
.wp-block-group.bottom-half-tertiary {
  position: relative;
}
.wp-block-group.bottom-half-tertiary:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #666666;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-quaternary {
  position: relative;
}
.wp-block-group.top-half-quaternary:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #156cdf;
}
.wp-block-group.bottom-half-quaternary {
  position: relative;
}
.wp-block-group.bottom-half-quaternary:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #156cdf;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-light {
  position: relative;
}
.wp-block-group.top-half-light:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #d2d2d2;
}
.wp-block-group.bottom-half-light {
  position: relative;
}
.wp-block-group.bottom-half-light:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #d2d2d2;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
.wp-block-group.top-half-lighter {
  position: relative;
}
.wp-block-group.top-half-lighter:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: #f7f7f7;
}
.wp-block-group.bottom-half-lighter {
  position: relative;
}
.wp-block-group.bottom-half-lighter:after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: #f7f7f7;
}
.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}

.wp-block-image {
  margin: 0;
}
.wp-block-image.cover {
  height: 100%;
  width: 100%;
}
.wp-block-image.cover img {
  max-width: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .wp-block-image img {
    width: 100%;
    display: block;
  }
}

@media (max-width: 767px) {
  .wp-block-group:not(.has-background) .wp-block-group:has(.has-background) .wp-block-media-text .wp-block-media-text__content {
    padding: 20px;
  }
}
.wp-block-group:not(.has-background) .wp-block-group:has(.has-background) .wp-block-media-text .wp-block-media-text__content > *:first-child {
  margin-top: 0;
}
.wp-block-group:not(.has-background) .wp-block-group:has(.has-background) .wp-block-media-text .wp-block-media-text__content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .wp-block-media-text {
    display: block;
  }
}
.wp-block-media-text.align-bottom .wp-block-media-text__media,
.wp-block-media-text.align-bottom .wp-block-media-text__content {
  align-self: flex-end !important;
}
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding-left: 0;
}
@media (min-width: 768px) {
  .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
    margin: 0 0 0 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-media-text .wp-block-media-text__media {
    margin: 0 60px 0 0;
  }
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
@media (max-width: 767px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 15px 0 0;
  }
}
.wp-block-media-text .wp-block-media-text__content .wp-block-buttons .wp-block-button {
  margin-bottom: 0;
}

:root {
  --navigation-layout-justify:center;
}

.wp-block-navigation.wp-block-navigation-is-layout-flex .wp-block-navigation__container {
  justify-content: flex-start;
}
.wp-block-navigation.wp-block-navigation-is-layout-flex .wp-block-navigation__container:only-child, .wp-block-navigation.wp-block-navigation-is-layout-flex .wp-block-navigation__container:only-child {
  flex-grow: 0;
  gap: 30px;
}
.wp-block-navigation .wp-block-navigation__container li {
  margin: 0;
}
.wp-block-navigation .wp-block-navigation__container li.nav-linkedin {
  flex: 1 0 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 30px;
}
.wp-block-navigation .wp-block-navigation__container li.nav-linkedin a {
  border: 2px solid blue;
  border-radius: 8px;
  padding: 15px 15px 15px 65px;
  color: blue;
  text-transform: uppercase;
  position: relative;
}
.wp-block-navigation .wp-block-navigation__container li.nav-linkedin a:before {
  content: "";
  width: 20px;
  height: 20px;
  left: 14px;
  position: absolute;
  background: url(../images/icons/icon-linkedin-blue-400.svg) center center/100% auto no-repeat transparent;
  top: 14px;
}
.wp-block-navigation .wp-block-navigation__container li.nav-linkedin a:after {
  content: "";
  width: 2px;
  height: 100%;
  left: 50px;
  position: absolute;
  background: blue;
  top: 0;
}
.wp-block-navigation .wp-block-navigation__container li a {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16px;
}

.wp-block-quote {
  max-width: calc(100% - 160px);
  margin: 0 auto;
  border: none;
}
@media (min-width: 1200px) {
  .wp-block-quote {
    max-width: 9999px;
  }
}
.wp-block-quote p {
  display: inline;
  position: relative;
  font-size: 70px;
  margin: 0 0 20px;
  line-height: 1.05;
  font-weight: 700;
  font-family: "PT Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.wp-block-quote p:before {
  content: "“";
  position: absolute;
  top: 0;
  right: 100%;
}
.wp-block-quote p strong {
  color: blue;
  font-weight: 700;
}
.wp-block-quote cite {
  padding: 0 0 0 60px;
  position: relative;
  top: -12px;
  white-space: nowrap;
}
.wp-block-quote cite:before {
  content: "—";
  margin: 0 8px 0 0;
}
.wp-block-quote cite:after {
  content: "”";
  position: absolute;
  top: -18px;
  left: -10px;
  font-size: 70px;
  line-height: 1.05;
  font-weight: 700;
  font-family: "PT Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.wp-block-separator {
  width: 120px;
  border-width: 0 0 1px;
  border-style: solid;
  opacity: 1;
  margin: 0;
  height: 1px;
  background: none !important;
}
.wp-block-separator.has-text-color.has-white-color {
  color: #ffffff !important;
}
.wp-block-separator.has-background.has-white-background-color {
  border-color: #ffffff !important;
}
.wp-block-separator.has-text-color.has-black-color {
  color: #000000 !important;
}
.wp-block-separator.has-background.has-black-background-color {
  border-color: #000000 !important;
}
.wp-block-separator.has-text-color.has-gray-100-color {
  color: #f9faf8 !important;
}
.wp-block-separator.has-background.has-gray-100-background-color {
  border-color: #f9faf8 !important;
}
.wp-block-separator.has-text-color.has-gray-200-color {
  color: #dbdde0 !important;
}
.wp-block-separator.has-background.has-gray-200-background-color {
  border-color: #dbdde0 !important;
}
.wp-block-separator.has-text-color.has-gray-300-color {
  color: #d9d9d9 !important;
}
.wp-block-separator.has-background.has-gray-300-background-color {
  border-color: #d9d9d9 !important;
}
.wp-block-separator.has-text-color.has-gray-400-color {
  color: #99a0a6 !important;
}
.wp-block-separator.has-background.has-gray-400-background-color {
  border-color: #99a0a6 !important;
}
.wp-block-separator.has-text-color.has-gray-600-color {
  color: #2c2d30 !important;
}
.wp-block-separator.has-background.has-gray-600-background-color {
  border-color: #2c2d30 !important;
}
.wp-block-separator.has-text-color.has-gray-700-color {
  color: #151b1f !important;
}
.wp-block-separator.has-background.has-gray-700-background-color {
  border-color: #151b1f !important;
}
.wp-block-separator.has-text-color.has-blue-200-color {
  color: #57bcf2 !important;
}
.wp-block-separator.has-background.has-blue-200-background-color {
  border-color: #57bcf2 !important;
}
.wp-block-separator.has-text-color.has-blue-300-color {
  color: #6a97d4 !important;
}
.wp-block-separator.has-background.has-blue-300-background-color {
  border-color: #6a97d4 !important;
}
.wp-block-separator.has-text-color.has-blue-400-color {
  color: #264d82 !important;
}
.wp-block-separator.has-background.has-blue-400-background-color {
  border-color: #264d82 !important;
}
.wp-block-separator.has-text-color.has-blue-700-color {
  color: #002037 !important;
}
.wp-block-separator.has-background.has-blue-700-background-color {
  border-color: #002037 !important;
}
.wp-block-separator.has-text-color.has-primary-color {
  color: #a51c30 !important;
}
.wp-block-separator.has-background.has-primary-background-color {
  border-color: #a51c30 !important;
}
.wp-block-separator.has-text-color.has-secondary-color {
  color: #1e1e1e !important;
}
.wp-block-separator.has-background.has-secondary-background-color {
  border-color: #1e1e1e !important;
}
.wp-block-separator.has-text-color.has-tertiary-color {
  color: #666666 !important;
}
.wp-block-separator.has-background.has-tertiary-background-color {
  border-color: #666666 !important;
}
.wp-block-separator.has-text-color.has-quaternary-color {
  color: #156cdf !important;
}
.wp-block-separator.has-background.has-quaternary-background-color {
  border-color: #156cdf !important;
}
.wp-block-separator.has-text-color.has-light-color {
  color: #d2d2d2 !important;
}
.wp-block-separator.has-background.has-light-background-color {
  border-color: #d2d2d2 !important;
}
.wp-block-separator.has-text-color.has-lighter-color {
  color: #f7f7f7 !important;
}
.wp-block-separator.has-background.has-lighter-background-color {
  border-color: #f7f7f7 !important;
}
.wp-block-separator.is-style-wide {
  width: 100%;
}

.wp-block-columns {
  margin: 0;
  position: static;
}
@media (max-width: 991px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
.wp-block-columns.border {
  border: 1px solid #d2d2d2;
}
@media (max-width: 991px) {
  .wp-block-columns.two-column-min {
    display: flex !important;
    flex-flow: row wrap !important;
    gap: 30px !important;
  }
}
@media (max-width: 991px) {
  .wp-block-columns.two-column-min .wp-block-column {
    flex: 1 0 calc(50% - 15px) !important;
    max-width: calc(50% - 15px) !important;
    align-self: center;
  }
}
.wp-block-columns.columns-xs-break {
  display: flex !important;
}
@media (max-width: 499px) {
  .wp-block-columns.columns-xs-break {
    display: block !important;
  }
}
.wp-block-columns.columns-xs-break .wp-block-column {
  flex-basis: 0 !important;
  flex-grow: 1 !important;
}
@media (max-width: 499px) {
  .wp-block-columns.columns-xs-break .wp-block-column:not(:first-child) {
    margin-left: 30px !important;
  }
}
@media (max-width: 499px) {
  .wp-block-columns.columns-xs-break .wp-block-column:not(:first-child) {
    margin-left: 0px !important;
  }
}
.wp-block-columns.columns-sm-break {
  display: flex !important;
}
@media (max-width: 767px) {
  .wp-block-columns.columns-sm-break {
    display: block !important;
  }
}
.wp-block-columns.columns-sm-break .wp-block-column {
  flex-basis: 0 !important;
  flex-grow: 1 !important;
}
@media (max-width: 499px) {
  .wp-block-columns.columns-sm-break .wp-block-column:not(:first-child) {
    margin-left: 30px !important;
  }
}
@media (max-width: 499px) {
  .wp-block-columns.columns-sm-break .wp-block-column:not(:first-child) {
    margin-left: 0px !important;
  }
}
.wp-block-columns.columns-md-break {
  display: flex !important;
}
@media (max-width: 991px) {
  .wp-block-columns.columns-md-break {
    display: block !important;
  }
}
.wp-block-columns.columns-md-break .wp-block-column {
  flex-basis: 0 !important;
  flex-grow: 1 !important;
}
@media (max-width: 499px) {
  .wp-block-columns.columns-md-break .wp-block-column:not(:first-child) {
    margin-left: 30px !important;
  }
}
@media (max-width: 499px) {
  .wp-block-columns.columns-md-break .wp-block-column:not(:first-child) {
    margin-left: 0px !important;
  }
}
.wp-block-columns.columns-lg-break {
  display: flex !important;
}
@media (max-width: 1199px) {
  .wp-block-columns.columns-lg-break {
    display: block !important;
  }
}
.wp-block-columns.columns-lg-break .wp-block-column {
  flex-basis: 0 !important;
  flex-grow: 1 !important;
}
@media (max-width: 499px) {
  .wp-block-columns.columns-lg-break .wp-block-column:not(:first-child) {
    margin-left: 30px !important;
  }
}
@media (max-width: 499px) {
  .wp-block-columns.columns-lg-break .wp-block-column:not(:first-child) {
    margin-left: 0px !important;
  }
}
@media (max-width: 991px) {
  .wp-block-columns .wp-block-column:nth-child(2n) {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column:not(:first-child) {
    margin-left: 30px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns.gutter-0 .wp-block-column:not(:first-child) {
    margin-left: 0px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns.gutter-30 .wp-block-column:not(:first-child) {
    margin-left: 30px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns.gutter-45 .wp-block-column:not(:first-child) {
    margin-left: 45px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns.gutter-60 .wp-block-column:not(:first-child) {
    margin-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns.gutter-90 .wp-block-column:not(:first-child) {
    margin-left: 90px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns.gutter-120 .wp-block-column:not(:first-child) {
    margin-left: 120px;
  }
}
.wp-block-columns .wp-block-column {
  flex-flow: column wrap;
  align-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .wp-block-columns .wp-block-column {
    margin-left: 0 !important;
  }
}
.wp-block-columns .wp-block-column.span-right {
  overflow: visible;
}
.wp-block-columns .wp-block-column.span-right > * {
  max-width: 4000px;
  height: 100%;
}
@media (max-width: 991px) {
  .wp-block-columns .wp-block-column.span-right > * {
    max-width: 100%;
  }
}
.wp-block-columns .wp-block-column.span-right > *.wp-block-cover {
  height: 100%;
  min-height: 460px;
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.span-right > *.wp-block-image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: unset;
    max-width: none;
  }
}
.wp-block-columns .wp-block-column.span-left {
  overflow: visible;
}
.wp-block-columns .wp-block-column.span-left > * {
  max-width: 4000px;
  height: 100%;
  left: 0;
}
@media (max-width: 991px) {
  .wp-block-columns .wp-block-column.span-left > * {
    max-width: 100%;
  }
}
.wp-block-columns .wp-block-column.span-left > *.wp-block-cover, .wp-block-columns .wp-block-column.span-left > *.box-list--block {
  height: 100%;
  min-height: 460px;
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.span-left > *.wp-block-image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: unset;
    max-width: none;
  }
}
.wp-block-columns .wp-block-column.border-column {
  padding: 45px;
  border: 1px solid #c4c6cb;
}
.wp-block-columns .wp-block-column.border-column > *:first-child {
  margin-top: 0;
}
.wp-block-columns .wp-block-column.border-column > *:last-child {
  margin-bottom: 0;
}
.wp-block-columns .wp-block-column.align-center {
  display: flex;
  align-content: center;
}
.wp-block-columns .wp-block-column.background-waves {
  background-image: url(../images/background-waves.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .wp-block-columns .wp-block-column.md_down_background-waves {
    background-image: url(../images/background-waves.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (max-width: 991px) {
  .wp-block-columns .wp-block-column.lg_down_background-waves {
    background-image: url(../images/background-waves.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.wp-block-columns .wp-block-column.background-waves-white {
  background-image: url(../images/background-waves-white.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
}
.wp-block-columns.justify-center {
  justify-content: center;
}
@media (min-width: 992px) {
  .wp-block-columns.justify-center > * {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.wp-block-columns.space-around {
  justify-content: space-around;
}
.wp-block-columns.space-around .wp-block-column {
  flex: 0 1 auto;
}
@media (min-width: 992px) {
  .wp-block-columns.space-around > * {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.wp-block-columns.space-between {
  justify-content: space-between;
}
.wp-block-columns.space-between .wp-block-column {
  flex: 0 1 auto;
}
@media (min-width: 992px) {
  .wp-block-columns.space-between > * {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.wp-block-columns.align-center {
  align-items: center !important;
  align-content: center !important;
}
@media (max-width: 767px) {
  .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
    margin-left: 0 !important;
  }
}
.wp-block-columns .wp-block-column.border {
  border: 1px solid #d2d2d2;
}
@media (max-width: 767px) {
  .wp-block-columns .wp-block-column.order-1-mobile {
    order: 1;
  }
}
@media (max-width: 767px) {
  .wp-block-columns .wp-block-column.order-2-mobile {
    order: 2;
  }
}
@media (max-width: 767px) {
  .wp-block-columns .wp-block-column.order-3-mobile {
    order: 3;
  }
}
.wp-block-columns .wp-block-column.align-center-self {
  align-self: center;
}
.wp-block-columns .wp-block-column.flex-0 {
  flex: 0 0 auto !important;
}
.wp-block-columns .wp-block-column.flex-1 {
  flex: 1 !important;
}
.wp-block-columns .wp-block-column.flex {
  display: flex;
}
.wp-block-columns .wp-block-column.flex.align-bottom {
  justify-content: flex-end;
  flex-flow: column wrap;
}
.wp-block-columns .wp-block-column.justify-center {
  justify-content: center;
  display: flex;
  flex-flow: column wrap;
}

.wp-block-columns .wp-block-column.border-white-left {
  border-left: 1px solid #ffffff;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-white-right {
  border-right: 1px solid #ffffff;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-white-right {
    border-right: 1px solid #ffffff;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-white-left {
    border-left: 1px solid #ffffff;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-white-right {
    border-right: 1px solid #ffffff;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-white-left {
    border-left: 1px solid #ffffff;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-white-right {
    border-right: 1px solid #ffffff;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-white-left {
    border-left: 1px solid #ffffff;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-white-right {
    border-right: 1px solid #ffffff;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-white-left {
    border-left: 1px solid #ffffff;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-black-left {
  border-left: 1px solid #000000;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-black-right {
  border-right: 1px solid #000000;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-black-right {
    border-right: 1px solid #000000;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-black-left {
    border-left: 1px solid #000000;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-black-right {
    border-right: 1px solid #000000;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-black-left {
    border-left: 1px solid #000000;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-black-right {
    border-right: 1px solid #000000;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-black-left {
    border-left: 1px solid #000000;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-black-right {
    border-right: 1px solid #000000;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-black-left {
    border-left: 1px solid #000000;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-gray-100-left {
  border-left: 1px solid #f9faf8;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-gray-100-right {
  border-right: 1px solid #f9faf8;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-100-right {
    border-right: 1px solid #f9faf8;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-100-left {
    border-left: 1px solid #f9faf8;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-100-right {
    border-right: 1px solid #f9faf8;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-100-left {
    border-left: 1px solid #f9faf8;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-100-right {
    border-right: 1px solid #f9faf8;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-100-left {
    border-left: 1px solid #f9faf8;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-100-right {
    border-right: 1px solid #f9faf8;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-100-left {
    border-left: 1px solid #f9faf8;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-gray-200-left {
  border-left: 1px solid #dbdde0;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-gray-200-right {
  border-right: 1px solid #dbdde0;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-200-right {
    border-right: 1px solid #dbdde0;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-200-left {
    border-left: 1px solid #dbdde0;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-200-right {
    border-right: 1px solid #dbdde0;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-200-left {
    border-left: 1px solid #dbdde0;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-200-right {
    border-right: 1px solid #dbdde0;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-200-left {
    border-left: 1px solid #dbdde0;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-200-right {
    border-right: 1px solid #dbdde0;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-200-left {
    border-left: 1px solid #dbdde0;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-gray-300-left {
  border-left: 1px solid #d9d9d9;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-gray-300-right {
  border-right: 1px solid #d9d9d9;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-300-right {
    border-right: 1px solid #d9d9d9;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-300-left {
    border-left: 1px solid #d9d9d9;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-300-right {
    border-right: 1px solid #d9d9d9;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-300-left {
    border-left: 1px solid #d9d9d9;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-300-right {
    border-right: 1px solid #d9d9d9;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-300-left {
    border-left: 1px solid #d9d9d9;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-300-right {
    border-right: 1px solid #d9d9d9;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-300-left {
    border-left: 1px solid #d9d9d9;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-gray-400-left {
  border-left: 1px solid #99a0a6;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-gray-400-right {
  border-right: 1px solid #99a0a6;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-400-right {
    border-right: 1px solid #99a0a6;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-400-left {
    border-left: 1px solid #99a0a6;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-400-right {
    border-right: 1px solid #99a0a6;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-400-left {
    border-left: 1px solid #99a0a6;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-400-right {
    border-right: 1px solid #99a0a6;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-400-left {
    border-left: 1px solid #99a0a6;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-400-right {
    border-right: 1px solid #99a0a6;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-400-left {
    border-left: 1px solid #99a0a6;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-gray-600-left {
  border-left: 1px solid #2c2d30;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-gray-600-right {
  border-right: 1px solid #2c2d30;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-600-right {
    border-right: 1px solid #2c2d30;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-600-left {
    border-left: 1px solid #2c2d30;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-600-right {
    border-right: 1px solid #2c2d30;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-600-left {
    border-left: 1px solid #2c2d30;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-600-right {
    border-right: 1px solid #2c2d30;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-600-left {
    border-left: 1px solid #2c2d30;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-600-right {
    border-right: 1px solid #2c2d30;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-600-left {
    border-left: 1px solid #2c2d30;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-gray-700-left {
  border-left: 1px solid #151b1f;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-gray-700-right {
  border-right: 1px solid #151b1f;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-700-right {
    border-right: 1px solid #151b1f;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-gray-700-left {
    border-left: 1px solid #151b1f;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-700-right {
    border-right: 1px solid #151b1f;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-gray-700-left {
    border-left: 1px solid #151b1f;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-700-right {
    border-right: 1px solid #151b1f;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-gray-700-left {
    border-left: 1px solid #151b1f;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-700-right {
    border-right: 1px solid #151b1f;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-gray-700-left {
    border-left: 1px solid #151b1f;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-blue-200-left {
  border-left: 1px solid #57bcf2;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-blue-200-right {
  border-right: 1px solid #57bcf2;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-blue-200-right {
    border-right: 1px solid #57bcf2;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-blue-200-left {
    border-left: 1px solid #57bcf2;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-blue-200-right {
    border-right: 1px solid #57bcf2;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-blue-200-left {
    border-left: 1px solid #57bcf2;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-blue-200-right {
    border-right: 1px solid #57bcf2;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-blue-200-left {
    border-left: 1px solid #57bcf2;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-blue-200-right {
    border-right: 1px solid #57bcf2;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-blue-200-left {
    border-left: 1px solid #57bcf2;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-blue-300-left {
  border-left: 1px solid #6a97d4;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-blue-300-right {
  border-right: 1px solid #6a97d4;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-blue-300-right {
    border-right: 1px solid #6a97d4;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-blue-300-left {
    border-left: 1px solid #6a97d4;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-blue-300-right {
    border-right: 1px solid #6a97d4;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-blue-300-left {
    border-left: 1px solid #6a97d4;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-blue-300-right {
    border-right: 1px solid #6a97d4;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-blue-300-left {
    border-left: 1px solid #6a97d4;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-blue-300-right {
    border-right: 1px solid #6a97d4;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-blue-300-left {
    border-left: 1px solid #6a97d4;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-blue-400-left {
  border-left: 1px solid #264d82;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-blue-400-right {
  border-right: 1px solid #264d82;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-blue-400-right {
    border-right: 1px solid #264d82;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-blue-400-left {
    border-left: 1px solid #264d82;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-blue-400-right {
    border-right: 1px solid #264d82;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-blue-400-left {
    border-left: 1px solid #264d82;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-blue-400-right {
    border-right: 1px solid #264d82;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-blue-400-left {
    border-left: 1px solid #264d82;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-blue-400-right {
    border-right: 1px solid #264d82;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-blue-400-left {
    border-left: 1px solid #264d82;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-blue-700-left {
  border-left: 1px solid #002037;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-blue-700-right {
  border-right: 1px solid #002037;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-blue-700-right {
    border-right: 1px solid #002037;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-blue-700-left {
    border-left: 1px solid #002037;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-blue-700-right {
    border-right: 1px solid #002037;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-blue-700-left {
    border-left: 1px solid #002037;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-blue-700-right {
    border-right: 1px solid #002037;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-blue-700-left {
    border-left: 1px solid #002037;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-blue-700-right {
    border-right: 1px solid #002037;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-blue-700-left {
    border-left: 1px solid #002037;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-primary-left {
  border-left: 1px solid #a51c30;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-primary-right {
  border-right: 1px solid #a51c30;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-primary-right {
    border-right: 1px solid #a51c30;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-primary-left {
    border-left: 1px solid #a51c30;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-primary-right {
    border-right: 1px solid #a51c30;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-primary-left {
    border-left: 1px solid #a51c30;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-primary-right {
    border-right: 1px solid #a51c30;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-primary-left {
    border-left: 1px solid #a51c30;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-primary-right {
    border-right: 1px solid #a51c30;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-primary-left {
    border-left: 1px solid #a51c30;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-secondary-left {
  border-left: 1px solid #1e1e1e;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-secondary-right {
  border-right: 1px solid #1e1e1e;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-secondary-right {
    border-right: 1px solid #1e1e1e;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-secondary-left {
    border-left: 1px solid #1e1e1e;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-secondary-right {
    border-right: 1px solid #1e1e1e;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-secondary-left {
    border-left: 1px solid #1e1e1e;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-secondary-right {
    border-right: 1px solid #1e1e1e;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-secondary-left {
    border-left: 1px solid #1e1e1e;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-secondary-right {
    border-right: 1px solid #1e1e1e;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-secondary-left {
    border-left: 1px solid #1e1e1e;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-tertiary-left {
  border-left: 1px solid #666666;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-tertiary-right {
  border-right: 1px solid #666666;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-tertiary-right {
    border-right: 1px solid #666666;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-tertiary-left {
    border-left: 1px solid #666666;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-tertiary-right {
    border-right: 1px solid #666666;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-tertiary-left {
    border-left: 1px solid #666666;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-tertiary-right {
    border-right: 1px solid #666666;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-tertiary-left {
    border-left: 1px solid #666666;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-tertiary-right {
    border-right: 1px solid #666666;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-tertiary-left {
    border-left: 1px solid #666666;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-quaternary-left {
  border-left: 1px solid #156cdf;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-quaternary-right {
  border-right: 1px solid #156cdf;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-quaternary-right {
    border-right: 1px solid #156cdf;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-quaternary-left {
    border-left: 1px solid #156cdf;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-quaternary-right {
    border-right: 1px solid #156cdf;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-quaternary-left {
    border-left: 1px solid #156cdf;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-quaternary-right {
    border-right: 1px solid #156cdf;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-quaternary-left {
    border-left: 1px solid #156cdf;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-quaternary-right {
    border-right: 1px solid #156cdf;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-quaternary-left {
    border-left: 1px solid #156cdf;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-light-left {
  border-left: 1px solid #d2d2d2;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-light-right {
  border-right: 1px solid #d2d2d2;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-light-right {
    border-right: 1px solid #d2d2d2;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-light-left {
    border-left: 1px solid #d2d2d2;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-light-right {
    border-right: 1px solid #d2d2d2;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-light-left {
    border-left: 1px solid #d2d2d2;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-light-right {
    border-right: 1px solid #d2d2d2;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-light-left {
    border-left: 1px solid #d2d2d2;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-light-right {
    border-right: 1px solid #d2d2d2;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-light-left {
    border-left: 1px solid #d2d2d2;
    padding-left: 60px;
  }
}
.wp-block-columns .wp-block-column.border-lighter-left {
  border-left: 1px solid #f7f7f7;
  padding-left: 30px;
}
.wp-block-columns .wp-block-column.border-lighter-right {
  border-right: 1px solid #f7f7f7;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-lighter-right {
    border-right: 1px solid #f7f7f7;
    padding-right: 60px;
  }
}
@media (min-width: 667px) {
  .wp-block-columns .wp-block-column.sm_border-lighter-left {
    border-left: 1px solid #f7f7f7;
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-lighter-right {
    border-right: 1px solid #f7f7f7;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-column.md_border-lighter-left {
    border-left: 1px solid #f7f7f7;
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-lighter-right {
    border-right: 1px solid #f7f7f7;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .wp-block-columns .wp-block-column.lg_border-lighter-left {
    border-left: 1px solid #f7f7f7;
    padding-left: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-lighter-right {
    border-right: 1px solid #f7f7f7;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-column.xl_border-lighter-left {
    border-left: 1px solid #f7f7f7;
    padding-left: 60px;
  }
}

.wp-menu--nav {
  display: flex;
  flex-flow: row wrap;
  margin: 0;
  list-style-type: none;
  padding: 0;
  gap: 0 15px;
}
@media (min-width: 667px) {
  .wp-menu--nav {
    justify-content: center;
  }
}
@media (min-width: 667px) {
  .wp-menu--nav.is-horizontal.is-flex-end li {
    margin: 0 0 15px 15px;
  }
}
.wp-menu--nav.is-vertical {
  flex-flow: row wrap;
  margin: 0;
}
@media (min-width: 992px) {
  .wp-menu--nav.is-vertical.is-flex-end li {
    text-align: right;
  }
}
.wp-menu--nav.is-vertical li {
  margin: 0;
  padding: 0;
  flex: 1 0 100%;
  width: 100%;
  padding: 0;
  line-height: 1.65;
}
.wp-menu--nav.is-vertical a {
  margin: 0;
  padding: 0;
}
@media (min-width: 667px) {
  .wp-menu--nav.is-flex-start {
    justify-content: flex-start;
  }
}
@media (min-width: 667px) {
  .wp-menu--nav.is-center {
    justify-content: center;
  }
}
@media (min-width: 667px) {
  .wp-menu--nav.is-flex-end {
    justify-content: flex-end;
  }
}
@media (min-width: 667px) {
  .wp-menu--nav.is-space-between {
    justify-content: space-between;
  }
}
.wp-menu--nav li {
  margin: 0;
  padding: 0;
  flex: 1 0 100%;
}
@media (min-width: 667px) {
  .wp-menu--nav li {
    margin: 0 15px 15px;
    flex: 0 0 auto;
  }
}
@media (min-width: 992px) {
  .wp-menu--nav li {
    margin: 0;
  }
}
.wp-menu--nav li.active a, .wp-menu--nav li.current-page-ancestor a {
  text-decoration: underline;
  text-decoration-color: blue;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.wp-menu--nav li.dropdown {
  position: relative;
}
.wp-menu--nav li.dropdown > a {
  padding-right: 20px;
  position: relative;
}
.wp-menu--nav li.dropdown > a .caret {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  position: absolute;
  width: 10px;
  background: url(../images/caret-thin-down.svg) center center/100% auto no-repeat transparent;
}
.wp-menu--nav li.dropdown:hover .sub-menu {
  display: block;
}
.wp-menu--nav li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style-type: none;
  display: none;
  padding: 10px 0 0;
  margin: 0;
}
.wp-menu--nav li .sub-menu li {
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
}
.wp-menu--nav li .sub-menu a {
  word-break: keep-all;
  white-space: nowrap;
  padding: 10px 15px;
  color: #fff;
}
.wp-menu--nav a {
  color: inherit;
  text-decoration: none;
  padding: 15px 0;
  display: block;
  color: blue;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  text-decoration-color: blue;
}
@media (min-width: 768px) {
  .wp-menu--nav a {
    padding: 15px;
  }
}
.wp-menu--nav a:hover {
  color: blue;
  text-decoration: underline;
  text-decoration-color: blue;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.wp-menu--nav > li > a[href*="facebook.com"], .wp-menu--nav > li > a[href*="twitter.com"], .wp-menu--nav > li > a[href*="linkedin.com"], .wp-menu--nav > li > a[href*="youtube.com"], .wp-menu--nav > li > a[href*="instagram.com"], .wp-menu--nav > li > a[href*="/feed"] {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  overflow: hidden;
  text-indent: -9000px;
  position: relative;
  line-height: 1;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin: -1px 0 0;
  background-size: contain;
  height: 40px;
  width: 40px;
  background: #000000;
  border-radius: 100%;
}
.wp-menu--nav > li > a[href*="linkedin.com"] {
  background-size: 50% auto;
  background-image: url(../images/icons/icon-linkedin.svg);
}
.wp-menu--nav > li > a[href*="twitter.com"] {
  background-size: 50% auto;
  background-image: url(../images/icons/icon-twitter.svg);
}
.wp-menu--nav > li > a[href*="instagram.com"] {
  background-size: 50% auto;
  background-image: url(../images/icons/icon-instagram.svg);
}
.wp-menu--nav > li > a[href*="facebook.com"] {
  background-size: auto 50%;
  background-image: url(../images/icons/icon-facebook.svg);
}
.wp-menu--nav > li > a[href*="youtube.com"] {
  background-size: 50% auto;
  background-image: url(../images/icons/icon-youtube.svg);
}
.wp-menu--nav > li > a[href*="/feed"] {
  background-size: 50% auto;
  background-image: url(../images/icons/icon-rss.svg);
}

.wp-block-navigation .wp-block-navigation__container.social-menu {
  gap: 10px !important;
}
.wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="facebook.com"], .wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="twitter.com"], .wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="linkedin.com"], .wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="youtube.com"], .wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="instagram.com"], .wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="/feed"] {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  overflow: hidden;
  text-indent: -9000px;
  position: relative;
  line-height: 1;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin: -1px 0 0;
  background-size: contain;
  height: 40px;
  width: 40px;
  background-color: #000000;
  border-radius: 100%;
}
.wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="linkedin.com"] {
  background-size: 40% auto;
  background-image: url(../images/icons/icon-linkedin-white.svg);
}
.wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="twitter.com"] {
  background-size: 47% auto;
  background-image: url(../images/icons/icon-x-twitter.svg);
}
.wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="instagram.com"] {
  background-size: 40% auto;
  background-image: url(../images/icons/icon-instagram.svg);
}
.wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="facebook.com"] {
  background-size: auto 50%;
  background-image: url(../images/icons/icon-facebook.svg);
}
.wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="youtube.com"] {
  background-size: 50% auto;
  background-image: url(../images/icons/icon-youtube.svg);
}
.wp-block-navigation .wp-block-navigation__container.social-menu > li > a[href*="/feed"] {
  background-size: 50% auto;
  background-image: url(../images/icons/icon-rss.svg);
}

.banner {
  background: #fff;
  position: relative;
  z-index: 10;
  overflow: visible;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.6s ease-in-out;
  transform: translateY(0);
}
@media (min-width: 667px) {
  .banner {
    height: 158px;
  }
}
.banner .navbar-container {
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 667px) {
  .banner .navbar-wrap {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
  }
}
@media (min-width: 667px) {
  .page-parent .banner, .page-child .banner {
    margin: 0 0 50px;
  }
}
.fixed-nav .banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.banner .navbar-info {
  height: 40px;
  background: #1e1e1e;
}
.banner .navbar-info ul {
  list-style-type: none;
  text-align: right;
  margin: 0;
  padding: 0 13px 0 0;
  height: 40px;
}
.banner .navbar-info li {
  display: inline-block;
  margin: 0 0 0 10px;
  position: relative;
  top: -2px;
}
.banner .navbar-info li:last-child a {
  color: #d2203a;
}
.banner .navbar-info a {
  line-height: 40px;
  font-size: 14px;
  color: #8c8c8c;
  text-transform: uppercase;
  display: block;
}
.banner .navbar-info a:hover {
  text-decoration: underline;
}
.page-parent .banner.is-scrolled, .page-child .banner.is-scrolled {
  margin-bottom: 35px;
}
.banner .brand {
  display: block;
  align-content: center;
  height: 59px;
  width: 170px;
  padding: 0;
  margin: 11px 0 10px;
  transition: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 667px) {
  .banner .brand {
    margin: 20px 0;
    height: 78px;
    width: 220px;
  }
}
.banner .brand svg,
.banner .brand img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}
.banner .navbar-toggle {
  background: transparent;
  border: none;
  margin-top: 14px;
  margin-bottom: 0;
  margin-right: 0;
  border-radius: 0;
  padding: 0;
  display: block;
  transition: margin-top 0.3s ease-in-out, margin-bottom 0.3s ease-in-out;
  position: relative;
  float: right;
}
@media (min-width: 667px) {
  .banner .navbar-toggle {
    display: none;
  }
}
.banner .navbar-toggle:focus, .banner .navbar-toggle:hover {
  background: transparent;
}
.banner .navbar-toggle:focus .icon-bar, .banner .navbar-toggle:hover .icon-bar {
  background-color: #000;
}
.banner .navbar-toggle .icon-bar {
  background-color: #000;
  width: 45px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
  position: relative;
  top: 0;
  display: block;
  height: 2px;
  border-radius: 1px;
}
.banner .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 12px;
}
.banner .navbar-collapse {
  border: none;
  box-shadow: 0 0 0 transparent;
  padding: 0;
}
@media (max-width: 666px) {
  .banner .navbar-collapse {
    border-bottom: 1px solid #d5d5d5;
  }
}
.banner .nav-primary {
  background: #fff;
}
@media (max-width: 666px) {
  .banner .nav-primary > div {
    padding: 0px 0 10px;
  }
}
@media (min-width: 1200px) {
  .is-scrolled .banner {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.85);
    transform: translateY(-160px);
    transition: all 0.3s ease-in-out;
    height: auto;
  }
}
.is-scrolled .banner .brand {
  height: 40px;
  margin: 15px 0;
  width: 105px;
  transition: all 0.3s ease-in-out;
}
.is-scrolling .banner {
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
  height: auto;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}
.is-scrolling .banner .brand {
  height: 40px;
  margin: 15px 0;
  width: 105px;
}
.is-scrolling .banner nav .nav > li > a {
  font-size: 15px;
  margin: 6px 0;
  transition: all 0.3s ease-in-out;
}
.menu-is-open .banner .navbar-toggle .icon-bar {
  transform: rotate(45deg);
  top: 14px;
}
.menu-is-open .banner .navbar-toggle .icon-bar + .icon-bar {
  transform: rotate(-45deg);
  top: 0px;
}
.menu-is-open .banner .navbar-toggle .icon-bar + .icon-bar + .icon-bar {
  opacity: 0;
  visibility: hidden;
  transform: rotate(0deg);
}
.menu-is-open .banner nav {
  display: block;
}
.banner nav {
  text-align: center;
  display: none;
}
.banner nav .nav {
  transition: none;
  padding: 80px 0 0;
  display: block;
  margin: 0;
}
@media (min-width: 667px) {
  .banner nav .nav {
    margin: 0px -3px 0 15px;
    padding: 0;
    flex-flow: row wrap;
    justify-content: flex-end;
  }
}
.banner nav .nav .nav-button a {
  color: #fff;
  border-radius: 6px;
  border: 1px solid #fff;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block;
  padding: 4px 11px;
  margin: 34px 0;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.banner nav .nav .nav-button a:hover, .banner nav .nav .nav-button a:active, .banner nav .nav .nav-button a:focus {
  background: #fff;
  color: #028ad1;
  border: 1px solid #fff;
}
.banner nav .nav > li:last-child a {
  margin-right: 0;
}
@media (min-width: 667px) {
  .banner nav .nav > li.active > a, .banner nav .nav > li.current-menu-parent > a, .banner nav .nav > li.current-page-parent > a, .banner nav .nav > li.current_page_parent > a {
    background: none;
    color: #a51c30;
    border: 1px solid #a51c30;
  }
}
.banner nav .nav > li.active .sub-menu, .banner nav .nav > li.current-menu-parent .sub-menu, .banner nav .nav > li.current-page-parent .sub-menu, .banner nav .nav > li.current_page_parent .sub-menu {
  display: block;
}
.banner nav .nav > li > a .caret {
  display: none;
}
@media (min-width: 667px) {
  .banner nav {
    text-align: right;
    display: block;
    padding: 0;
  }
}
.banner nav li {
  margin: 0;
  padding: 0;
  display: block;
}
@media (min-width: 667px) {
  .banner nav li {
    display: inline-block;
    margin: 0 3px;
  }
}
.banner nav li.nav-social {
  margin: 13px 0;
}
@media (max-width: 666px) {
  .banner nav li.nav-social {
    display: inline-block;
    margin: 0;
  }
}
.banner nav a {
  color: #a51c30;
  font-size: 16px;
  padding: 5px 0;
  margin: 5px 0;
  display: inline-block;
  background: transparent;
  border: 1px solid transparent;
  line-height: 1;
  font-weight: 700;
  font-family: "PT Serif", Georgia, "Times New Roman", Times, serif;
  text-decoration: none;
  position: static;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 667px) {
  .banner nav a {
    line-height: 20px;
    font-size: 16px;
    padding: 6px 5px;
    display: block;
    font-weight: 400;
    margin: 10px 0 0;
  }
}
@media (min-width: 768px) {
  .banner nav a {
    font-size: 18px;
    padding: 6px 10px;
  }
}
@media (min-width: 992px) {
  .banner nav a {
    font-size: 20px;
  }
}
@media (min-width: 667px) {
  .banner nav a:hover {
    border: 1px solid #a51c30;
  }
}
.banner nav a .caret {
  display: inline-block;
  margin: 0 0 0 5px;
  position: relative;
  top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #000 transparent transparent transparent;
}
.banner nav ul.sub-menu {
  margin: 5px 0 10px;
  padding: 0 20px;
  display: block;
}
@media (min-width: 667px) {
  .banner nav ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #a51c30;
    z-index: 9997;
    display: none;
    text-align: center;
    height: 50px;
    overflow: hidden;
    margin: 0 0 10px;
  }
}
.banner nav ul.sub-menu li {
  display: block;
  margin: 0 0 15px 0;
}
@media (min-width: 667px) {
  .banner nav ul.sub-menu li {
    margin: 0 5px;
    padding: 0;
    display: inline-block;
  }
}
@media (min-width: 667px) {
  .banner nav ul.sub-menu li {
    margin: 0 15px;
  }
}
.banner nav ul.sub-menu a {
  font-size: 16px;
  margin: 0;
  text-transform: none;
  padding: 0;
  border: none;
  color: #a51c30;
  display: block;
  font-weight: 400;
}
@media (min-width: 667px) {
  .banner nav ul.sub-menu a {
    display: inline-block;
    font-size: 16px;
    margin: 0;
    position: relative;
    color: #fff;
    line-height: 50px;
  }
}
@media (min-width: 768px) {
  .banner nav ul.sub-menu a {
    font-size: 18px;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .banner nav ul.sub-menu a {
    font-size: 20px;
  }
}
.banner nav ul.sub-menu a:hover {
  border: none;
}
@media (min-width: 667px) {
  .banner nav ul.sub-menu a:hover:after {
    height: 3px;
    width: 100%;
    left: 0;
    bottom: 0;
    content: "";
    background: #fff;
    position: absolute;
  }
}

.content-info {
  background: #1e1e1e;
  color: #777777;
  clear: both;
  font-family: "PT Serif", Georgia, "Times New Roman", Times, serif;
}
.content-info .footer-disclaimer {
  margin-bottom: 20px;
  display: none;
}
.content-info .footer-disclaimer p {
  font-size: 12px;
}
.content-info img {
  margin: 0 auto;
  display: block;
}
@media (min-width: 768px) {
  .content-info img {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .content-info .kc-elm {
    border: none !important;
  }
}
.content-info p {
  margin: 0 0 30px;
  font-size: 14px;
  text-align: center !important;
}
@media (max-width: 767px) {
  .content-info p {
    padding: 0 !important;
  }
}
@media (min-width: 768px) {
  .content-info p {
    margin: 0;
    text-align: left;
  }
}
.content-info .menu {
  list-style-type: none;
  margin: 2px 0 20px;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .content-info .menu {
    margin: -5px 0 0;
    text-align: right;
  }
}
.content-info .menu li {
  display: inline-block;
  line-height: 1.25;
  margin: 0 4px;
  padding: 0;
}
@media (min-width: 768px) {
  .content-info .menu li {
    display: inline-block;
    margin: 0 8px 0 0;
  }
}
.content-info .menu a {
  color: #656565;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  text-align: center;
  display: block;
  padding: 5px 0;
  margin: 5px 0;
}
@media (min-width: 768px) {
  .content-info .menu a {
    display: inline-block;
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .content-info .kc_column,
  .content-info .kc_column_inner {
    width: 100%;
    float: none;
    clear: both;
  }
}

.blog .main > .container {
  background: #fff;
  margin-top: -80px;
  padding-top: 60px;
}

.post {
  margin-bottom: 50px;
  padding-bottom: 30px;
}
.post:last-child {
  margin-bottom: 0;
  background: none;
}
.post header h2 {
  margin: 0 0 10px;
  font-weight: 700;
}
.post header a {
  color: #365f91;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
  display: block;
}
.post header a:after {
  width: 20px;
  height: 20px;
  background-color: #365f91;
  border-radius: 7px;
  content: "›";
  text-align: center;
  line-height: 18px;
  margin: -9px 0 0 10px;
  font-size: 20px;
  color: #93c1ec;
  display: inline-block;
  top: -2px;
  position: relative;
}

.secondary-header {
  position: relative;
  overflow: hidden;
  background: #a51c30;
}

.secondary-header--title {
  padding: 80px 0;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  position: relative;
  z-index: 10;
}

.home.page .main > .vc_row:first-child {
  margin-top: 0;
  padding-top: 0;
  background: none;
}

#vc-gmap {
  width: 100%;
  height: 300px;
}

hr {
  background-image: rgb(255, 255, 255); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(205, 205, 205) 20%, rgb(205, 205, 205) 80%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
  background-position: center bottom;
  background-size: 100% 2px;
  background-repeat: no-repeat;
  height: 2px;
  width: 100%;
  border: none;
}

.main .menu {
  list-style-type: none;
  margin: 2px 0 0;
  padding: 0;
}
.main .menu li {
  display: inline-block;
  line-height: 1.25;
  margin: 0 10px 0 0;
  padding: 0;
}
.main .menu li.active a {
  background-image: rgb(255, 255, 255); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(205, 205, 205) 20%, rgb(205, 205, 205) 80%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
  background-position: center bottom;
  background-size: 100% 2px;
  background-repeat: no-repeat;
}
.main .menu a {
  color: #365f91;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 4px;
  text-decoration: none;
  transition: none;
}
.about section {
  position: relative;
}

.post--header {
  margin: 60px 0 10px;
}
.post--header h1 {
  margin: 5px 0 15px;
  font-weight: 500;
  color: #000;
}
.post--header .byline {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0;
}
.post--header h2 {
  float: left;
  line-height: 1.2;
  color: #27578c;
  font-size: 44px;
  font-weight: 300;
  margin: 0;
}
.post--header .post--links {
  margin: 20px 0 0;
}

.post--links {
  float: right;
}
.post--links a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.post--links a:first-child {
  margin-right: 20px;
}
.post--links a span {
  font-size: 20px;
  position: relative;
  top: 1px;
}

.post--content {
  margin: 0 0 60px;
}
.post--content header h1 {
  color: #27578c;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  margin: 0;
}
.post--content header p {
  color: #4c4845;
  font-size: 13px;
  font-weight: 300;
  line-height: 23px;
}
.post--content div p {
  color: #4c4845;
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
}

.post--footer-back {
  float: left;
}
.post--footer-back a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.post--footer-back a span {
  font-size: 20px;
  position: relative;
  top: 1px;
}

.search--content {
  margin: 0 0 80px;
}
.search--content h2 {
  margin: 0;
}
.search--content h2 a {
  color: #27578c;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (max-width: 666px) {
  .home-thirds {
    padding: 0 15px !important;
  }
}
@media (max-width: 666px) {
  .home-thirds .kc_single_image {
    margin-left: -15px;
    margin-right: -15px;
    max-width: calc(100% + 30px);
    width: calc(100% + 30px);
  }
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.letter-spacing-3 {
  letter-spacing: 3px;
}

.letter-spacing-4 {
  letter-spacing: 4px;
}

.letter-spacing-5 {
  letter-spacing: 5px;
}

.letter-spacing-6 {
  letter-spacing: 6px;
}

.letter-spacing-7 {
  letter-spacing: 7px;
}

.letter-spacing-8 {
  letter-spacing: 8px;
}

.letter-spacing-9 {
  letter-spacing: 9px;
}

.letter-spacing-10 {
  letter-spacing: 10px;
}

.padding-0 {
  padding: 0px;
}

.padding-top-0 {
  padding-top: 0px;
}

.padding-left-0 {
  padding-left: 0px;
}

.padding-bottom-0 {
  padding-bottom: 0px;
}

.padding-right-0 {
  padding-right: 0px;
}

.margin-0 {
  margin: 0px;
}

.margin-top-0 {
  margin-top: 0px;
}

.margin-left-0 {
  margin-left: 0px;
}

.margin-bottom-0 {
  margin-bottom: 0px;
}

.margin-right-0 {
  margin-right: 0px;
}

.pull-top-0 {
  margin-top: -0px;
}

.pull-left-0 {
  margin-left: -0px;
}

.pull-bottom-0 {
  margin-bottom: -0px;
}

.pull-right-0 {
  margin-right: -0px;
}

.shadow-0 {
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.15);
}

.padding-5 {
  padding: 5px;
}

.padding-top-5 {
  padding-top: 5px;
}

.padding-left-5 {
  padding-left: 5px;
}

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

.padding-right-5 {
  padding-right: 5px;
}

.margin-5 {
  margin: 5px;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-left-5 {
  margin-left: 5px;
}

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

.margin-right-5 {
  margin-right: 5px;
}

.pull-top-5 {
  margin-top: -5px;
}

.pull-left-5 {
  margin-left: -5px;
}

.pull-bottom-5 {
  margin-bottom: -5px;
}

.pull-right-5 {
  margin-right: -5px;
}

.shadow-5 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.padding-10 {
  padding: 10px;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-left-10 {
  padding-left: 10px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-right-10 {
  padding-right: 10px;
}

.margin-10 {
  margin: 10px;
}

.margin-top-10 {
  margin-top: 10px;
}

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

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

.margin-right-10 {
  margin-right: 10px;
}

.pull-top-10 {
  margin-top: -10px;
}

.pull-left-10 {
  margin-left: -10px;
}

.pull-bottom-10 {
  margin-bottom: -10px;
}

.pull-right-10 {
  margin-right: -10px;
}

.shadow-10 {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.padding-15 {
  padding: 15px;
}

.padding-top-15 {
  padding-top: 15px;
}

.padding-left-15 {
  padding-left: 15px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

.padding-right-15 {
  padding-right: 15px;
}

.margin-15 {
  margin: 15px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-left-15 {
  margin-left: 15px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-right-15 {
  margin-right: 15px;
}

.pull-top-15 {
  margin-top: -15px;
}

.pull-left-15 {
  margin-left: -15px;
}

.pull-bottom-15 {
  margin-bottom: -15px;
}

.pull-right-15 {
  margin-right: -15px;
}

.shadow-15 {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.padding-20 {
  padding: 20px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-left-20 {
  padding-left: 20px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-right-20 {
  padding-right: 20px;
}

.margin-20 {
  margin: 20px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-left-20 {
  margin-left: 20px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-right-20 {
  margin-right: 20px;
}

.pull-top-20 {
  margin-top: -20px;
}

.pull-left-20 {
  margin-left: -20px;
}

.pull-bottom-20 {
  margin-bottom: -20px;
}

.pull-right-20 {
  margin-right: -20px;
}

.shadow-20 {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.padding-30 {
  padding: 30px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-left-30 {
  padding-left: 30px;
}

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

.padding-right-30 {
  padding-right: 30px;
}

.margin-30 {
  margin: 30px;
}

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

.margin-left-30 {
  margin-left: 30px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-right-30 {
  margin-right: 30px;
}

.pull-top-30 {
  margin-top: -30px;
}

.pull-left-30 {
  margin-left: -30px;
}

.pull-bottom-30 {
  margin-bottom: -30px;
}

.pull-right-30 {
  margin-right: -30px;
}

.shadow-30 {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.padding-45 {
  padding: 45px;
}

.padding-top-45 {
  padding-top: 45px;
}

.padding-left-45 {
  padding-left: 45px;
}

.padding-bottom-45 {
  padding-bottom: 45px;
}

.padding-right-45 {
  padding-right: 45px;
}

.margin-45 {
  margin: 45px;
}

.margin-top-45 {
  margin-top: 45px;
}

.margin-left-45 {
  margin-left: 45px;
}

.margin-bottom-45 {
  margin-bottom: 45px;
}

.margin-right-45 {
  margin-right: 45px;
}

.pull-top-45 {
  margin-top: -45px;
}

.pull-left-45 {
  margin-left: -45px;
}

.pull-bottom-45 {
  margin-bottom: -45px;
}

.pull-right-45 {
  margin-right: -45px;
}

.shadow-45 {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
}

.padding-50 {
  padding: 50px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-left-50 {
  padding-left: 50px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.padding-right-50 {
  padding-right: 50px;
}

.margin-50 {
  margin: 50px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-left-50 {
  margin-left: 50px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-right-50 {
  margin-right: 50px;
}

.pull-top-50 {
  margin-top: -50px;
}

.pull-left-50 {
  margin-left: -50px;
}

.pull-bottom-50 {
  margin-bottom: -50px;
}

.pull-right-50 {
  margin-right: -50px;
}

.shadow-50 {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}

.padding-60 {
  padding: 60px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-left-60 {
  padding-left: 60px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-right-60 {
  padding-right: 60px;
}

.margin-60 {
  margin: 60px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-left-60 {
  margin-left: 60px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-right-60 {
  margin-right: 60px;
}

.pull-top-60 {
  margin-top: -60px;
}

.pull-left-60 {
  margin-left: -60px;
}

.pull-bottom-60 {
  margin-bottom: -60px;
}

.pull-right-60 {
  margin-right: -60px;
}

.shadow-60 {
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
}

.padding-70 {
  padding: 70px;
}

.padding-top-70 {
  padding-top: 70px;
}

.padding-left-70 {
  padding-left: 70px;
}

.padding-bottom-70 {
  padding-bottom: 70px;
}

.padding-right-70 {
  padding-right: 70px;
}

.margin-70 {
  margin: 70px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-left-70 {
  margin-left: 70px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-right-70 {
  margin-right: 70px;
}

.pull-top-70 {
  margin-top: -70px;
}

.pull-left-70 {
  margin-left: -70px;
}

.pull-bottom-70 {
  margin-bottom: -70px;
}

.pull-right-70 {
  margin-right: -70px;
}

.shadow-70 {
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.15);
}

.padding-80 {
  padding: 80px;
}

.padding-top-80 {
  padding-top: 80px;
}

.padding-left-80 {
  padding-left: 80px;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}

.padding-right-80 {
  padding-right: 80px;
}

.margin-80 {
  margin: 80px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-left-80 {
  margin-left: 80px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-right-80 {
  margin-right: 80px;
}

.pull-top-80 {
  margin-top: -80px;
}

.pull-left-80 {
  margin-left: -80px;
}

.pull-bottom-80 {
  margin-bottom: -80px;
}

.pull-right-80 {
  margin-right: -80px;
}

.shadow-80 {
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.15);
}

.padding-90 {
  padding: 90px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-left-90 {
  padding-left: 90px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}

.padding-right-90 {
  padding-right: 90px;
}

.margin-90 {
  margin: 90px;
}

.margin-top-90 {
  margin-top: 90px;
}

.margin-left-90 {
  margin-left: 90px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-right-90 {
  margin-right: 90px;
}

.pull-top-90 {
  margin-top: -90px;
}

.pull-left-90 {
  margin-left: -90px;
}

.pull-bottom-90 {
  margin-bottom: -90px;
}

.pull-right-90 {
  margin-right: -90px;
}

.shadow-90 {
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.15);
}

.padding-120 {
  padding: 120px;
}

.padding-top-120 {
  padding-top: 120px;
}

.padding-left-120 {
  padding-left: 120px;
}

.padding-bottom-120 {
  padding-bottom: 120px;
}

.padding-right-120 {
  padding-right: 120px;
}

.margin-120 {
  margin: 120px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-left-120 {
  margin-left: 120px;
}

.margin-bottom-120 {
  margin-bottom: 120px;
}

.margin-right-120 {
  margin-right: 120px;
}

.pull-top-120 {
  margin-top: -120px;
}

.pull-left-120 {
  margin-left: -120px;
}

.pull-bottom-120 {
  margin-bottom: -120px;
}

.pull-right-120 {
  margin-right: -120px;
}

.shadow-120 {
  box-shadow: 0 0 120px rgba(0, 0, 0, 0.15);
}

.padding-150 {
  padding: 150px;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-left-150 {
  padding-left: 150px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

.padding-right-150 {
  padding-right: 150px;
}

.margin-150 {
  margin: 150px;
}

.margin-top-150 {
  margin-top: 150px;
}

.margin-left-150 {
  margin-left: 150px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.margin-right-150 {
  margin-right: 150px;
}

.pull-top-150 {
  margin-top: -150px;
}

.pull-left-150 {
  margin-left: -150px;
}

.pull-bottom-150 {
  margin-bottom: -150px;
}

.pull-right-150 {
  margin-right: -150px;
}

.shadow-150 {
  box-shadow: 0 0 150px rgba(0, 0, 0, 0.15);
}

.padding-180 {
  padding: 180px;
}

.padding-top-180 {
  padding-top: 180px;
}

.padding-left-180 {
  padding-left: 180px;
}

.padding-bottom-180 {
  padding-bottom: 180px;
}

.padding-right-180 {
  padding-right: 180px;
}

.margin-180 {
  margin: 180px;
}

.margin-top-180 {
  margin-top: 180px;
}

.margin-left-180 {
  margin-left: 180px;
}

.margin-bottom-180 {
  margin-bottom: 180px;
}

.margin-right-180 {
  margin-right: 180px;
}

.pull-top-180 {
  margin-top: -180px;
}

.pull-left-180 {
  margin-left: -180px;
}

.pull-bottom-180 {
  margin-bottom: -180px;
}

.pull-right-180 {
  margin-right: -180px;
}

.shadow-180 {
  box-shadow: 0 0 180px rgba(0, 0, 0, 0.15);
}

.padding-240 {
  padding: 240px;
}

.padding-top-240 {
  padding-top: 240px;
}

.padding-left-240 {
  padding-left: 240px;
}

.padding-bottom-240 {
  padding-bottom: 240px;
}

.padding-right-240 {
  padding-right: 240px;
}

.margin-240 {
  margin: 240px;
}

.margin-top-240 {
  margin-top: 240px;
}

.margin-left-240 {
  margin-left: 240px;
}

.margin-bottom-240 {
  margin-bottom: 240px;
}

.margin-right-240 {
  margin-right: 240px;
}

.pull-top-240 {
  margin-top: -240px;
}

.pull-left-240 {
  margin-left: -240px;
}

.pull-bottom-240 {
  margin-bottom: -240px;
}

.pull-right-240 {
  margin-right: -240px;
}

.shadow-240 {
  box-shadow: 0 0 240px rgba(0, 0, 0, 0.15);
}

.padding-270 {
  padding: 270px;
}

.padding-top-270 {
  padding-top: 270px;
}

.padding-left-270 {
  padding-left: 270px;
}

.padding-bottom-270 {
  padding-bottom: 270px;
}

.padding-right-270 {
  padding-right: 270px;
}

.margin-270 {
  margin: 270px;
}

.margin-top-270 {
  margin-top: 270px;
}

.margin-left-270 {
  margin-left: 270px;
}

.margin-bottom-270 {
  margin-bottom: 270px;
}

.margin-right-270 {
  margin-right: 270px;
}

.pull-top-270 {
  margin-top: -270px;
}

.pull-left-270 {
  margin-left: -270px;
}

.pull-bottom-270 {
  margin-bottom: -270px;
}

.pull-right-270 {
  margin-right: -270px;
}

.shadow-270 {
  box-shadow: 0 0 270px rgba(0, 0, 0, 0.15);
}

.padding-300 {
  padding: 300px;
}

.padding-top-300 {
  padding-top: 300px;
}

.padding-left-300 {
  padding-left: 300px;
}

.padding-bottom-300 {
  padding-bottom: 300px;
}

.padding-right-300 {
  padding-right: 300px;
}

.margin-300 {
  margin: 300px;
}

.margin-top-300 {
  margin-top: 300px;
}

.margin-left-300 {
  margin-left: 300px;
}

.margin-bottom-300 {
  margin-bottom: 300px;
}

.margin-right-300 {
  margin-right: 300px;
}

.pull-top-300 {
  margin-top: -300px;
}

.pull-left-300 {
  margin-left: -300px;
}

.pull-bottom-300 {
  margin-bottom: -300px;
}

.pull-right-300 {
  margin-right: -300px;
}

.shadow-300 {
  box-shadow: 0 0 300px rgba(0, 0, 0, 0.15);
}

.padding-330 {
  padding: 330px;
}

.padding-top-330 {
  padding-top: 330px;
}

.padding-left-330 {
  padding-left: 330px;
}

.padding-bottom-330 {
  padding-bottom: 330px;
}

.padding-right-330 {
  padding-right: 330px;
}

.margin-330 {
  margin: 330px;
}

.margin-top-330 {
  margin-top: 330px;
}

.margin-left-330 {
  margin-left: 330px;
}

.margin-bottom-330 {
  margin-bottom: 330px;
}

.margin-right-330 {
  margin-right: 330px;
}

.pull-top-330 {
  margin-top: -330px;
}

.pull-left-330 {
  margin-left: -330px;
}

.pull-bottom-330 {
  margin-bottom: -330px;
}

.pull-right-330 {
  margin-right: -330px;
}

.shadow-330 {
  box-shadow: 0 0 330px rgba(0, 0, 0, 0.15);
}

.padding-360 {
  padding: 360px;
}

.padding-top-360 {
  padding-top: 360px;
}

.padding-left-360 {
  padding-left: 360px;
}

.padding-bottom-360 {
  padding-bottom: 360px;
}

.padding-right-360 {
  padding-right: 360px;
}

.margin-360 {
  margin: 360px;
}

.margin-top-360 {
  margin-top: 360px;
}

.margin-left-360 {
  margin-left: 360px;
}

.margin-bottom-360 {
  margin-bottom: 360px;
}

.margin-right-360 {
  margin-right: 360px;
}

.pull-top-360 {
  margin-top: -360px;
}

.pull-left-360 {
  margin-left: -360px;
}

.pull-bottom-360 {
  margin-bottom: -360px;
}

.pull-right-360 {
  margin-right: -360px;
}

.shadow-360 {
  box-shadow: 0 0 360px rgba(0, 0, 0, 0.15);
}

.padding-390 {
  padding: 390px;
}

.padding-top-390 {
  padding-top: 390px;
}

.padding-left-390 {
  padding-left: 390px;
}

.padding-bottom-390 {
  padding-bottom: 390px;
}

.padding-right-390 {
  padding-right: 390px;
}

.margin-390 {
  margin: 390px;
}

.margin-top-390 {
  margin-top: 390px;
}

.margin-left-390 {
  margin-left: 390px;
}

.margin-bottom-390 {
  margin-bottom: 390px;
}

.margin-right-390 {
  margin-right: 390px;
}

.pull-top-390 {
  margin-top: -390px;
}

.pull-left-390 {
  margin-left: -390px;
}

.pull-bottom-390 {
  margin-bottom: -390px;
}

.pull-right-390 {
  margin-right: -390px;
}

.shadow-390 {
  box-shadow: 0 0 390px rgba(0, 0, 0, 0.15);
}

.padding-420 {
  padding: 420px;
}

.padding-top-420 {
  padding-top: 420px;
}

.padding-left-420 {
  padding-left: 420px;
}

.padding-bottom-420 {
  padding-bottom: 420px;
}

.padding-right-420 {
  padding-right: 420px;
}

.margin-420 {
  margin: 420px;
}

.margin-top-420 {
  margin-top: 420px;
}

.margin-left-420 {
  margin-left: 420px;
}

.margin-bottom-420 {
  margin-bottom: 420px;
}

.margin-right-420 {
  margin-right: 420px;
}

.pull-top-420 {
  margin-top: -420px;
}

.pull-left-420 {
  margin-left: -420px;
}

.pull-bottom-420 {
  margin-bottom: -420px;
}

.pull-right-420 {
  margin-right: -420px;
}

.shadow-420 {
  box-shadow: 0 0 420px rgba(0, 0, 0, 0.15);
}

@media (min-width: 667px) {
  .sm_padding-0 {
    padding: 0px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-0 {
    padding-top: 0px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-0 {
    padding-left: 0px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-0 {
    padding-bottom: 0px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-0 {
    padding-right: 0px;
  }
}

@media (min-width: 667px) {
  .sm_margin-0 {
    margin: 0px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-0 {
    margin-top: 0px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-0 {
    margin-left: 0px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-0 {
    margin-bottom: 0px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-0 {
    margin-right: 0px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-0 {
    margin-top: -0px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-0 {
    margin-left: -0px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-0 {
    margin-bottom: -0px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-0 {
    margin-right: -0px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-0 {
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-5 {
    padding: 5px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-5 {
    padding-top: 5px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-5 {
    padding-left: 5px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-5 {
    padding-bottom: 5px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-5 {
    padding-right: 5px;
  }
}

@media (min-width: 667px) {
  .sm_margin-5 {
    margin: 5px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-5 {
    margin-top: 5px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-5 {
    margin-left: 5px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-5 {
    margin-bottom: 5px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-5 {
    margin-right: 5px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-5 {
    margin-top: -5px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-5 {
    margin-left: -5px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-5 {
    margin-bottom: -5px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-5 {
    margin-right: -5px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-5 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-10 {
    padding: 10px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-10 {
    padding-top: 10px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-10 {
    padding-left: 10px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-10 {
    padding-bottom: 10px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-10 {
    padding-right: 10px;
  }
}

@media (min-width: 667px) {
  .sm_margin-10 {
    margin: 10px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-10 {
    margin-top: 10px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-10 {
    margin-left: 10px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-10 {
    margin-bottom: 10px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-10 {
    margin-right: 10px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-10 {
    margin-top: -10px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-10 {
    margin-left: -10px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-10 {
    margin-bottom: -10px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-10 {
    margin-right: -10px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-10 {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-15 {
    padding: 15px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-15 {
    padding-top: 15px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-15 {
    padding-left: 15px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-15 {
    padding-bottom: 15px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-15 {
    padding-right: 15px;
  }
}

@media (min-width: 667px) {
  .sm_margin-15 {
    margin: 15px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-15 {
    margin-top: 15px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-15 {
    margin-left: 15px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-15 {
    margin-bottom: 15px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-15 {
    margin-right: 15px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-15 {
    margin-top: -15px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-15 {
    margin-left: -15px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-15 {
    margin-bottom: -15px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-15 {
    margin-right: -15px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-15 {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-20 {
    padding: 20px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-20 {
    padding-top: 20px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-20 {
    padding-left: 20px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-20 {
    padding-bottom: 20px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-20 {
    padding-right: 20px;
  }
}

@media (min-width: 667px) {
  .sm_margin-20 {
    margin: 20px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-20 {
    margin-top: 20px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-20 {
    margin-left: 20px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-20 {
    margin-bottom: 20px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-20 {
    margin-right: 20px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-20 {
    margin-top: -20px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-20 {
    margin-left: -20px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-20 {
    margin-bottom: -20px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-20 {
    margin-right: -20px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-20 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-30 {
    padding: 30px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-30 {
    padding-top: 30px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-30 {
    padding-left: 30px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-30 {
    padding-bottom: 30px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-30 {
    padding-right: 30px;
  }
}

@media (min-width: 667px) {
  .sm_margin-30 {
    margin: 30px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-30 {
    margin-top: 30px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-30 {
    margin-left: 30px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-30 {
    margin-bottom: 30px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-30 {
    margin-right: 30px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-30 {
    margin-top: -30px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-30 {
    margin-left: -30px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-30 {
    margin-bottom: -30px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-30 {
    margin-right: -30px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-30 {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-45 {
    padding: 45px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-45 {
    padding-top: 45px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-45 {
    padding-left: 45px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-45 {
    padding-bottom: 45px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-45 {
    padding-right: 45px;
  }
}

@media (min-width: 667px) {
  .sm_margin-45 {
    margin: 45px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-45 {
    margin-top: 45px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-45 {
    margin-left: 45px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-45 {
    margin-bottom: 45px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-45 {
    margin-right: 45px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-45 {
    margin-top: -45px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-45 {
    margin-left: -45px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-45 {
    margin-bottom: -45px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-45 {
    margin-right: -45px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-45 {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-50 {
    padding: 50px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-50 {
    padding-top: 50px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-50 {
    padding-left: 50px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-50 {
    padding-bottom: 50px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-50 {
    padding-right: 50px;
  }
}

@media (min-width: 667px) {
  .sm_margin-50 {
    margin: 50px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-50 {
    margin-top: 50px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-50 {
    margin-left: 50px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-50 {
    margin-bottom: 50px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-50 {
    margin-right: 50px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-50 {
    margin-top: -50px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-50 {
    margin-left: -50px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-50 {
    margin-bottom: -50px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-50 {
    margin-right: -50px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-50 {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-60 {
    padding: 60px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-60 {
    padding-top: 60px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-60 {
    padding-left: 60px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-60 {
    padding-bottom: 60px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-60 {
    padding-right: 60px;
  }
}

@media (min-width: 667px) {
  .sm_margin-60 {
    margin: 60px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-60 {
    margin-top: 60px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-60 {
    margin-left: 60px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-60 {
    margin-bottom: 60px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-60 {
    margin-right: 60px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-60 {
    margin-top: -60px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-60 {
    margin-left: -60px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-60 {
    margin-bottom: -60px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-60 {
    margin-right: -60px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-60 {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-70 {
    padding: 70px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-70 {
    padding-top: 70px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-70 {
    padding-left: 70px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-70 {
    padding-bottom: 70px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-70 {
    padding-right: 70px;
  }
}

@media (min-width: 667px) {
  .sm_margin-70 {
    margin: 70px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-70 {
    margin-top: 70px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-70 {
    margin-left: 70px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-70 {
    margin-bottom: 70px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-70 {
    margin-right: 70px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-70 {
    margin-top: -70px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-70 {
    margin-left: -70px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-70 {
    margin-bottom: -70px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-70 {
    margin-right: -70px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-70 {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-80 {
    padding: 80px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-80 {
    padding-top: 80px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-80 {
    padding-left: 80px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-80 {
    padding-bottom: 80px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-80 {
    padding-right: 80px;
  }
}

@media (min-width: 667px) {
  .sm_margin-80 {
    margin: 80px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-80 {
    margin-top: 80px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-80 {
    margin-left: 80px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-80 {
    margin-bottom: 80px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-80 {
    margin-right: 80px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-80 {
    margin-top: -80px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-80 {
    margin-left: -80px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-80 {
    margin-bottom: -80px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-80 {
    margin-right: -80px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-80 {
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-90 {
    padding: 90px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-90 {
    padding-top: 90px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-90 {
    padding-left: 90px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-90 {
    padding-bottom: 90px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-90 {
    padding-right: 90px;
  }
}

@media (min-width: 667px) {
  .sm_margin-90 {
    margin: 90px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-90 {
    margin-top: 90px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-90 {
    margin-left: 90px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-90 {
    margin-bottom: 90px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-90 {
    margin-right: 90px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-90 {
    margin-top: -90px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-90 {
    margin-left: -90px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-90 {
    margin-bottom: -90px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-90 {
    margin-right: -90px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-90 {
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-120 {
    padding: 120px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-120 {
    padding-top: 120px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-120 {
    padding-left: 120px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-120 {
    padding-bottom: 120px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-120 {
    padding-right: 120px;
  }
}

@media (min-width: 667px) {
  .sm_margin-120 {
    margin: 120px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-120 {
    margin-top: 120px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-120 {
    margin-left: 120px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-120 {
    margin-bottom: 120px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-120 {
    margin-right: 120px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-120 {
    margin-top: -120px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-120 {
    margin-left: -120px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-120 {
    margin-bottom: -120px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-120 {
    margin-right: -120px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-120 {
    box-shadow: 0 0 120px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-150 {
    padding: 150px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-150 {
    padding-top: 150px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-150 {
    padding-left: 150px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-150 {
    padding-bottom: 150px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-150 {
    padding-right: 150px;
  }
}

@media (min-width: 667px) {
  .sm_margin-150 {
    margin: 150px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-150 {
    margin-top: 150px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-150 {
    margin-left: 150px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-150 {
    margin-bottom: 150px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-150 {
    margin-right: 150px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-150 {
    margin-top: -150px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-150 {
    margin-left: -150px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-150 {
    margin-bottom: -150px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-150 {
    margin-right: -150px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-150 {
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-180 {
    padding: 180px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-180 {
    padding-top: 180px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-180 {
    padding-left: 180px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-180 {
    padding-bottom: 180px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-180 {
    padding-right: 180px;
  }
}

@media (min-width: 667px) {
  .sm_margin-180 {
    margin: 180px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-180 {
    margin-top: 180px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-180 {
    margin-left: 180px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-180 {
    margin-bottom: 180px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-180 {
    margin-right: 180px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-180 {
    margin-top: -180px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-180 {
    margin-left: -180px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-180 {
    margin-bottom: -180px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-180 {
    margin-right: -180px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-180 {
    box-shadow: 0 0 180px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-240 {
    padding: 240px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-240 {
    padding-top: 240px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-240 {
    padding-left: 240px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-240 {
    padding-bottom: 240px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-240 {
    padding-right: 240px;
  }
}

@media (min-width: 667px) {
  .sm_margin-240 {
    margin: 240px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-240 {
    margin-top: 240px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-240 {
    margin-left: 240px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-240 {
    margin-bottom: 240px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-240 {
    margin-right: 240px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-240 {
    margin-top: -240px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-240 {
    margin-left: -240px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-240 {
    margin-bottom: -240px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-240 {
    margin-right: -240px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-240 {
    box-shadow: 0 0 240px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-270 {
    padding: 270px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-270 {
    padding-top: 270px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-270 {
    padding-left: 270px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-270 {
    padding-bottom: 270px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-270 {
    padding-right: 270px;
  }
}

@media (min-width: 667px) {
  .sm_margin-270 {
    margin: 270px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-270 {
    margin-top: 270px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-270 {
    margin-left: 270px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-270 {
    margin-bottom: 270px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-270 {
    margin-right: 270px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-270 {
    margin-top: -270px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-270 {
    margin-left: -270px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-270 {
    margin-bottom: -270px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-270 {
    margin-right: -270px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-270 {
    box-shadow: 0 0 270px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-300 {
    padding: 300px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-300 {
    padding-top: 300px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-300 {
    padding-left: 300px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-300 {
    padding-bottom: 300px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-300 {
    padding-right: 300px;
  }
}

@media (min-width: 667px) {
  .sm_margin-300 {
    margin: 300px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-300 {
    margin-top: 300px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-300 {
    margin-left: 300px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-300 {
    margin-bottom: 300px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-300 {
    margin-right: 300px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-300 {
    margin-top: -300px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-300 {
    margin-left: -300px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-300 {
    margin-bottom: -300px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-300 {
    margin-right: -300px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-300 {
    box-shadow: 0 0 300px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-330 {
    padding: 330px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-330 {
    padding-top: 330px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-330 {
    padding-left: 330px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-330 {
    padding-bottom: 330px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-330 {
    padding-right: 330px;
  }
}

@media (min-width: 667px) {
  .sm_margin-330 {
    margin: 330px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-330 {
    margin-top: 330px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-330 {
    margin-left: 330px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-330 {
    margin-bottom: 330px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-330 {
    margin-right: 330px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-330 {
    margin-top: -330px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-330 {
    margin-left: -330px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-330 {
    margin-bottom: -330px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-330 {
    margin-right: -330px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-330 {
    box-shadow: 0 0 330px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-360 {
    padding: 360px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-360 {
    padding-top: 360px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-360 {
    padding-left: 360px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-360 {
    padding-bottom: 360px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-360 {
    padding-right: 360px;
  }
}

@media (min-width: 667px) {
  .sm_margin-360 {
    margin: 360px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-360 {
    margin-top: 360px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-360 {
    margin-left: 360px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-360 {
    margin-bottom: 360px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-360 {
    margin-right: 360px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-360 {
    margin-top: -360px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-360 {
    margin-left: -360px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-360 {
    margin-bottom: -360px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-360 {
    margin-right: -360px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-360 {
    box-shadow: 0 0 360px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-390 {
    padding: 390px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-390 {
    padding-top: 390px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-390 {
    padding-left: 390px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-390 {
    padding-bottom: 390px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-390 {
    padding-right: 390px;
  }
}

@media (min-width: 667px) {
  .sm_margin-390 {
    margin: 390px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-390 {
    margin-top: 390px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-390 {
    margin-left: 390px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-390 {
    margin-bottom: 390px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-390 {
    margin-right: 390px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-390 {
    margin-top: -390px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-390 {
    margin-left: -390px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-390 {
    margin-bottom: -390px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-390 {
    margin-right: -390px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-390 {
    box-shadow: 0 0 390px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 667px) {
  .sm_padding-420 {
    padding: 420px;
  }
}

@media (min-width: 667px) {
  .sm_padding-top-420 {
    padding-top: 420px;
  }
}

@media (min-width: 667px) {
  .sm_padding-left-420 {
    padding-left: 420px;
  }
}

@media (min-width: 667px) {
  .sm_padding-bottom-420 {
    padding-bottom: 420px;
  }
}

@media (min-width: 667px) {
  .sm_padding-right-420 {
    padding-right: 420px;
  }
}

@media (min-width: 667px) {
  .sm_margin-420 {
    margin: 420px;
  }
}

@media (min-width: 667px) {
  .sm_margin-top-420 {
    margin-top: 420px;
  }
}

@media (min-width: 667px) {
  .sm_margin-left-420 {
    margin-left: 420px;
  }
}

@media (min-width: 667px) {
  .sm_margin-bottom-420 {
    margin-bottom: 420px;
  }
}

@media (min-width: 667px) {
  .sm_margin-right-420 {
    margin-right: 420px;
  }
}

@media (min-width: 667px) {
  .sm_pull-top-420 {
    margin-top: -420px;
  }
}

@media (min-width: 667px) {
  .sm_pull-left-420 {
    margin-left: -420px;
  }
}

@media (min-width: 667px) {
  .sm_pull-bottom-420 {
    margin-bottom: -420px;
  }
}

@media (min-width: 667px) {
  .sm_pull-right-420 {
    margin-right: -420px;
  }
}

@media (min-width: 667px) {
  .sm_shadow-420 {
    box-shadow: 0 0 420px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-0 {
    padding: 0px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-0 {
    padding-top: 0px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-0 {
    padding-left: 0px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-0 {
    padding-bottom: 0px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-0 {
    padding-right: 0px;
  }
}

@media (min-width: 768px) {
  .md_margin-0 {
    margin: 0px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-0 {
    margin-top: 0px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-0 {
    margin-left: 0px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-0 {
    margin-bottom: 0px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-0 {
    margin-right: 0px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-0 {
    margin-top: -0px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-0 {
    margin-left: -0px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-0 {
    margin-bottom: -0px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-0 {
    margin-right: -0px;
  }
}

@media (min-width: 768px) {
  .md_shadow-0 {
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-5 {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-5 {
    padding-top: 5px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-5 {
    padding-left: 5px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-5 {
    padding-bottom: 5px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-5 {
    padding-right: 5px;
  }
}

@media (min-width: 768px) {
  .md_margin-5 {
    margin: 5px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-5 {
    margin-top: 5px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-5 {
    margin-left: 5px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-5 {
    margin-bottom: 5px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-5 {
    margin-right: 5px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-5 {
    margin-top: -5px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-5 {
    margin-left: -5px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-5 {
    margin-bottom: -5px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-5 {
    margin-right: -5px;
  }
}

@media (min-width: 768px) {
  .md_shadow-5 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-10 {
    padding: 10px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-10 {
    padding-top: 10px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-10 {
    padding-left: 10px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-10 {
    padding-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-10 {
    padding-right: 10px;
  }
}

@media (min-width: 768px) {
  .md_margin-10 {
    margin: 10px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-10 {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-10 {
    margin-left: 10px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-10 {
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-10 {
    margin-right: 10px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-10 {
    margin-top: -10px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-10 {
    margin-left: -10px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-10 {
    margin-bottom: -10px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-10 {
    margin-right: -10px;
  }
}

@media (min-width: 768px) {
  .md_shadow-10 {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-15 {
    padding: 15px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-15 {
    padding-top: 15px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-15 {
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-15 {
    padding-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-15 {
    padding-right: 15px;
  }
}

@media (min-width: 768px) {
  .md_margin-15 {
    margin: 15px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-15 {
    margin-top: 15px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-15 {
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-15 {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-15 {
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-15 {
    margin-top: -15px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-15 {
    margin-left: -15px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-15 {
    margin-bottom: -15px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-15 {
    margin-right: -15px;
  }
}

@media (min-width: 768px) {
  .md_shadow-15 {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-20 {
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-20 {
    padding-top: 20px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-20 {
    padding-left: 20px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-20 {
    padding-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-20 {
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .md_margin-20 {
    margin: 20px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-20 {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-20 {
    margin-left: 20px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-20 {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-20 {
    margin-right: 20px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-20 {
    margin-top: -20px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-20 {
    margin-left: -20px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-20 {
    margin-bottom: -20px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-20 {
    margin-right: -20px;
  }
}

@media (min-width: 768px) {
  .md_shadow-20 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-30 {
    padding: 30px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-30 {
    padding-top: 30px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-30 {
    padding-left: 30px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-30 {
    padding-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-30 {
    padding-right: 30px;
  }
}

@media (min-width: 768px) {
  .md_margin-30 {
    margin: 30px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-30 {
    margin-top: 30px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-30 {
    margin-left: 30px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-30 {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-30 {
    margin-right: 30px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-30 {
    margin-top: -30px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-30 {
    margin-left: -30px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-30 {
    margin-bottom: -30px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-30 {
    margin-right: -30px;
  }
}

@media (min-width: 768px) {
  .md_shadow-30 {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-45 {
    padding: 45px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-45 {
    padding-top: 45px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-45 {
    padding-left: 45px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-45 {
    padding-bottom: 45px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-45 {
    padding-right: 45px;
  }
}

@media (min-width: 768px) {
  .md_margin-45 {
    margin: 45px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-45 {
    margin-top: 45px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-45 {
    margin-left: 45px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-45 {
    margin-bottom: 45px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-45 {
    margin-right: 45px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-45 {
    margin-top: -45px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-45 {
    margin-left: -45px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-45 {
    margin-bottom: -45px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-45 {
    margin-right: -45px;
  }
}

@media (min-width: 768px) {
  .md_shadow-45 {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
  }
}

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

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

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

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

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

@media (min-width: 768px) {
  .md_margin-50 {
    margin: 50px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-50 {
    margin-top: 50px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-50 {
    margin-left: 50px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-50 {
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-50 {
    margin-right: 50px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-50 {
    margin-top: -50px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-50 {
    margin-left: -50px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-50 {
    margin-bottom: -50px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-50 {
    margin-right: -50px;
  }
}

@media (min-width: 768px) {
  .md_shadow-50 {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-60 {
    padding: 60px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-60 {
    padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-60 {
    padding-left: 60px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-60 {
    padding-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-60 {
    padding-right: 60px;
  }
}

@media (min-width: 768px) {
  .md_margin-60 {
    margin: 60px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-60 {
    margin-top: 60px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-60 {
    margin-left: 60px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-60 {
    margin-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-60 {
    margin-right: 60px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-60 {
    margin-top: -60px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-60 {
    margin-left: -60px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-60 {
    margin-bottom: -60px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-60 {
    margin-right: -60px;
  }
}

@media (min-width: 768px) {
  .md_shadow-60 {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-70 {
    padding: 70px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-70 {
    padding-top: 70px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-70 {
    padding-left: 70px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-70 {
    padding-bottom: 70px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-70 {
    padding-right: 70px;
  }
}

@media (min-width: 768px) {
  .md_margin-70 {
    margin: 70px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-70 {
    margin-top: 70px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-70 {
    margin-left: 70px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-70 {
    margin-bottom: 70px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-70 {
    margin-right: 70px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-70 {
    margin-top: -70px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-70 {
    margin-left: -70px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-70 {
    margin-bottom: -70px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-70 {
    margin-right: -70px;
  }
}

@media (min-width: 768px) {
  .md_shadow-70 {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-80 {
    padding: 80px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-80 {
    padding-top: 80px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-80 {
    padding-left: 80px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-80 {
    padding-bottom: 80px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-80 {
    padding-right: 80px;
  }
}

@media (min-width: 768px) {
  .md_margin-80 {
    margin: 80px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-80 {
    margin-top: 80px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-80 {
    margin-left: 80px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-80 {
    margin-bottom: 80px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-80 {
    margin-right: 80px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-80 {
    margin-top: -80px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-80 {
    margin-left: -80px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-80 {
    margin-bottom: -80px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-80 {
    margin-right: -80px;
  }
}

@media (min-width: 768px) {
  .md_shadow-80 {
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-90 {
    padding: 90px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-90 {
    padding-top: 90px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-90 {
    padding-left: 90px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-90 {
    padding-bottom: 90px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-90 {
    padding-right: 90px;
  }
}

@media (min-width: 768px) {
  .md_margin-90 {
    margin: 90px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-90 {
    margin-top: 90px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-90 {
    margin-left: 90px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-90 {
    margin-bottom: 90px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-90 {
    margin-right: 90px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-90 {
    margin-top: -90px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-90 {
    margin-left: -90px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-90 {
    margin-bottom: -90px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-90 {
    margin-right: -90px;
  }
}

@media (min-width: 768px) {
  .md_shadow-90 {
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-120 {
    padding: 120px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-120 {
    padding-top: 120px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-120 {
    padding-left: 120px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-120 {
    padding-bottom: 120px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-120 {
    padding-right: 120px;
  }
}

@media (min-width: 768px) {
  .md_margin-120 {
    margin: 120px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-120 {
    margin-top: 120px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-120 {
    margin-left: 120px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-120 {
    margin-bottom: 120px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-120 {
    margin-right: 120px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-120 {
    margin-top: -120px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-120 {
    margin-left: -120px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-120 {
    margin-bottom: -120px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-120 {
    margin-right: -120px;
  }
}

@media (min-width: 768px) {
  .md_shadow-120 {
    box-shadow: 0 0 120px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-150 {
    padding: 150px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-150 {
    padding-top: 150px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-150 {
    padding-left: 150px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-150 {
    padding-bottom: 150px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-150 {
    padding-right: 150px;
  }
}

@media (min-width: 768px) {
  .md_margin-150 {
    margin: 150px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-150 {
    margin-top: 150px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-150 {
    margin-left: 150px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-150 {
    margin-bottom: 150px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-150 {
    margin-right: 150px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-150 {
    margin-top: -150px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-150 {
    margin-left: -150px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-150 {
    margin-bottom: -150px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-150 {
    margin-right: -150px;
  }
}

@media (min-width: 768px) {
  .md_shadow-150 {
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-180 {
    padding: 180px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-180 {
    padding-top: 180px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-180 {
    padding-left: 180px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-180 {
    padding-bottom: 180px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-180 {
    padding-right: 180px;
  }
}

@media (min-width: 768px) {
  .md_margin-180 {
    margin: 180px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-180 {
    margin-top: 180px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-180 {
    margin-left: 180px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-180 {
    margin-bottom: 180px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-180 {
    margin-right: 180px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-180 {
    margin-top: -180px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-180 {
    margin-left: -180px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-180 {
    margin-bottom: -180px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-180 {
    margin-right: -180px;
  }
}

@media (min-width: 768px) {
  .md_shadow-180 {
    box-shadow: 0 0 180px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-240 {
    padding: 240px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-240 {
    padding-top: 240px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-240 {
    padding-left: 240px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-240 {
    padding-bottom: 240px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-240 {
    padding-right: 240px;
  }
}

@media (min-width: 768px) {
  .md_margin-240 {
    margin: 240px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-240 {
    margin-top: 240px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-240 {
    margin-left: 240px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-240 {
    margin-bottom: 240px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-240 {
    margin-right: 240px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-240 {
    margin-top: -240px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-240 {
    margin-left: -240px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-240 {
    margin-bottom: -240px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-240 {
    margin-right: -240px;
  }
}

@media (min-width: 768px) {
  .md_shadow-240 {
    box-shadow: 0 0 240px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-270 {
    padding: 270px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-270 {
    padding-top: 270px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-270 {
    padding-left: 270px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-270 {
    padding-bottom: 270px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-270 {
    padding-right: 270px;
  }
}

@media (min-width: 768px) {
  .md_margin-270 {
    margin: 270px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-270 {
    margin-top: 270px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-270 {
    margin-left: 270px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-270 {
    margin-bottom: 270px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-270 {
    margin-right: 270px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-270 {
    margin-top: -270px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-270 {
    margin-left: -270px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-270 {
    margin-bottom: -270px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-270 {
    margin-right: -270px;
  }
}

@media (min-width: 768px) {
  .md_shadow-270 {
    box-shadow: 0 0 270px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-300 {
    padding: 300px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-300 {
    padding-top: 300px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-300 {
    padding-left: 300px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-300 {
    padding-bottom: 300px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-300 {
    padding-right: 300px;
  }
}

@media (min-width: 768px) {
  .md_margin-300 {
    margin: 300px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-300 {
    margin-top: 300px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-300 {
    margin-left: 300px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-300 {
    margin-bottom: 300px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-300 {
    margin-right: 300px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-300 {
    margin-top: -300px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-300 {
    margin-left: -300px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-300 {
    margin-bottom: -300px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-300 {
    margin-right: -300px;
  }
}

@media (min-width: 768px) {
  .md_shadow-300 {
    box-shadow: 0 0 300px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-330 {
    padding: 330px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-330 {
    padding-top: 330px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-330 {
    padding-left: 330px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-330 {
    padding-bottom: 330px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-330 {
    padding-right: 330px;
  }
}

@media (min-width: 768px) {
  .md_margin-330 {
    margin: 330px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-330 {
    margin-top: 330px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-330 {
    margin-left: 330px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-330 {
    margin-bottom: 330px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-330 {
    margin-right: 330px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-330 {
    margin-top: -330px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-330 {
    margin-left: -330px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-330 {
    margin-bottom: -330px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-330 {
    margin-right: -330px;
  }
}

@media (min-width: 768px) {
  .md_shadow-330 {
    box-shadow: 0 0 330px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-360 {
    padding: 360px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-360 {
    padding-top: 360px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-360 {
    padding-left: 360px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-360 {
    padding-bottom: 360px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-360 {
    padding-right: 360px;
  }
}

@media (min-width: 768px) {
  .md_margin-360 {
    margin: 360px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-360 {
    margin-top: 360px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-360 {
    margin-left: 360px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-360 {
    margin-bottom: 360px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-360 {
    margin-right: 360px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-360 {
    margin-top: -360px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-360 {
    margin-left: -360px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-360 {
    margin-bottom: -360px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-360 {
    margin-right: -360px;
  }
}

@media (min-width: 768px) {
  .md_shadow-360 {
    box-shadow: 0 0 360px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-390 {
    padding: 390px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-390 {
    padding-top: 390px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-390 {
    padding-left: 390px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-390 {
    padding-bottom: 390px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-390 {
    padding-right: 390px;
  }
}

@media (min-width: 768px) {
  .md_margin-390 {
    margin: 390px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-390 {
    margin-top: 390px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-390 {
    margin-left: 390px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-390 {
    margin-bottom: 390px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-390 {
    margin-right: 390px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-390 {
    margin-top: -390px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-390 {
    margin-left: -390px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-390 {
    margin-bottom: -390px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-390 {
    margin-right: -390px;
  }
}

@media (min-width: 768px) {
  .md_shadow-390 {
    box-shadow: 0 0 390px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .md_padding-420 {
    padding: 420px;
  }
}

@media (min-width: 768px) {
  .md_padding-top-420 {
    padding-top: 420px;
  }
}

@media (min-width: 768px) {
  .md_padding-left-420 {
    padding-left: 420px;
  }
}

@media (min-width: 768px) {
  .md_padding-bottom-420 {
    padding-bottom: 420px;
  }
}

@media (min-width: 768px) {
  .md_padding-right-420 {
    padding-right: 420px;
  }
}

@media (min-width: 768px) {
  .md_margin-420 {
    margin: 420px;
  }
}

@media (min-width: 768px) {
  .md_margin-top-420 {
    margin-top: 420px;
  }
}

@media (min-width: 768px) {
  .md_margin-left-420 {
    margin-left: 420px;
  }
}

@media (min-width: 768px) {
  .md_margin-bottom-420 {
    margin-bottom: 420px;
  }
}

@media (min-width: 768px) {
  .md_margin-right-420 {
    margin-right: 420px;
  }
}

@media (min-width: 768px) {
  .md_pull-top-420 {
    margin-top: -420px;
  }
}

@media (min-width: 768px) {
  .md_pull-left-420 {
    margin-left: -420px;
  }
}

@media (min-width: 768px) {
  .md_pull-bottom-420 {
    margin-bottom: -420px;
  }
}

@media (min-width: 768px) {
  .md_pull-right-420 {
    margin-right: -420px;
  }
}

@media (min-width: 768px) {
  .md_shadow-420 {
    box-shadow: 0 0 420px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-0 {
    padding: 0px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-0 {
    padding-top: 0px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-0 {
    padding-left: 0px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-0 {
    padding-bottom: 0px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-0 {
    padding-right: 0px;
  }
}

@media (min-width: 992px) {
  .lg_margin-0 {
    margin: 0px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-0 {
    margin-top: 0px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-0 {
    margin-left: 0px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-0 {
    margin-bottom: 0px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-0 {
    margin-right: 0px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-0 {
    margin-top: -0px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-0 {
    margin-left: -0px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-0 {
    margin-bottom: -0px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-0 {
    margin-right: -0px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-0 {
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-5 {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-5 {
    padding-top: 5px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-5 {
    padding-left: 5px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-5 {
    padding-bottom: 5px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-5 {
    padding-right: 5px;
  }
}

@media (min-width: 992px) {
  .lg_margin-5 {
    margin: 5px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-5 {
    margin-top: 5px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-5 {
    margin-left: 5px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-5 {
    margin-bottom: 5px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-5 {
    margin-right: 5px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-5 {
    margin-top: -5px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-5 {
    margin-left: -5px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-5 {
    margin-bottom: -5px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-5 {
    margin-right: -5px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-5 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-10 {
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-10 {
    padding-top: 10px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-10 {
    padding-left: 10px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-10 {
    padding-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-10 {
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .lg_margin-10 {
    margin: 10px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-10 {
    margin-top: 10px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-10 {
    margin-left: 10px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-10 {
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-10 {
    margin-right: 10px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-10 {
    margin-top: -10px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-10 {
    margin-left: -10px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-10 {
    margin-bottom: -10px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-10 {
    margin-right: -10px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-10 {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-15 {
    padding: 15px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-15 {
    padding-top: 15px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-15 {
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-15 {
    padding-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-15 {
    padding-right: 15px;
  }
}

@media (min-width: 992px) {
  .lg_margin-15 {
    margin: 15px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-15 {
    margin-top: 15px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-15 {
    margin-left: 15px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-15 {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-15 {
    margin-right: 15px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-15 {
    margin-top: -15px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-15 {
    margin-left: -15px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-15 {
    margin-bottom: -15px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-15 {
    margin-right: -15px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-15 {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-20 {
    padding: 20px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-20 {
    padding-top: 20px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-20 {
    padding-left: 20px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-20 {
    padding-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-20 {
    padding-right: 20px;
  }
}

@media (min-width: 992px) {
  .lg_margin-20 {
    margin: 20px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-20 {
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-20 {
    margin-left: 20px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-20 {
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-20 {
    margin-right: 20px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-20 {
    margin-top: -20px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-20 {
    margin-left: -20px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-20 {
    margin-bottom: -20px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-20 {
    margin-right: -20px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-20 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-30 {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-30 {
    padding-top: 30px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-30 {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-30 {
    padding-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-30 {
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .lg_margin-30 {
    margin: 30px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-30 {
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-30 {
    margin-left: 30px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-30 {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-30 {
    margin-right: 30px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-30 {
    margin-top: -30px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-30 {
    margin-left: -30px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-30 {
    margin-bottom: -30px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-30 {
    margin-right: -30px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-30 {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-45 {
    padding: 45px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-45 {
    padding-top: 45px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-45 {
    padding-left: 45px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-45 {
    padding-bottom: 45px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-45 {
    padding-right: 45px;
  }
}

@media (min-width: 992px) {
  .lg_margin-45 {
    margin: 45px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-45 {
    margin-top: 45px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-45 {
    margin-left: 45px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-45 {
    margin-bottom: 45px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-45 {
    margin-right: 45px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-45 {
    margin-top: -45px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-45 {
    margin-left: -45px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-45 {
    margin-bottom: -45px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-45 {
    margin-right: -45px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-45 {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-50 {
    padding: 50px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-50 {
    padding-top: 50px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-50 {
    padding-left: 50px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-50 {
    padding-bottom: 50px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-50 {
    padding-right: 50px;
  }
}

@media (min-width: 992px) {
  .lg_margin-50 {
    margin: 50px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-50 {
    margin-top: 50px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-50 {
    margin-left: 50px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-50 {
    margin-bottom: 50px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-50 {
    margin-right: 50px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-50 {
    margin-top: -50px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-50 {
    margin-left: -50px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-50 {
    margin-bottom: -50px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-50 {
    margin-right: -50px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-50 {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-60 {
    padding: 60px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-60 {
    padding-top: 60px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-60 {
    padding-left: 60px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-60 {
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-60 {
    padding-right: 60px;
  }
}

@media (min-width: 992px) {
  .lg_margin-60 {
    margin: 60px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-60 {
    margin-top: 60px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-60 {
    margin-left: 60px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-60 {
    margin-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-60 {
    margin-right: 60px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-60 {
    margin-top: -60px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-60 {
    margin-left: -60px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-60 {
    margin-bottom: -60px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-60 {
    margin-right: -60px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-60 {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-70 {
    padding: 70px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-70 {
    padding-top: 70px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-70 {
    padding-left: 70px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-70 {
    padding-bottom: 70px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-70 {
    padding-right: 70px;
  }
}

@media (min-width: 992px) {
  .lg_margin-70 {
    margin: 70px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-70 {
    margin-top: 70px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-70 {
    margin-left: 70px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-70 {
    margin-bottom: 70px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-70 {
    margin-right: 70px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-70 {
    margin-top: -70px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-70 {
    margin-left: -70px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-70 {
    margin-bottom: -70px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-70 {
    margin-right: -70px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-70 {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.15);
  }
}

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

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

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

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

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

@media (min-width: 992px) {
  .lg_margin-80 {
    margin: 80px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-80 {
    margin-top: 80px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-80 {
    margin-left: 80px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-80 {
    margin-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-80 {
    margin-right: 80px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-80 {
    margin-top: -80px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-80 {
    margin-left: -80px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-80 {
    margin-bottom: -80px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-80 {
    margin-right: -80px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-80 {
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-90 {
    padding: 90px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-90 {
    padding-top: 90px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-90 {
    padding-left: 90px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-90 {
    padding-bottom: 90px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-90 {
    padding-right: 90px;
  }
}

@media (min-width: 992px) {
  .lg_margin-90 {
    margin: 90px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-90 {
    margin-top: 90px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-90 {
    margin-left: 90px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-90 {
    margin-bottom: 90px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-90 {
    margin-right: 90px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-90 {
    margin-top: -90px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-90 {
    margin-left: -90px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-90 {
    margin-bottom: -90px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-90 {
    margin-right: -90px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-90 {
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-120 {
    padding: 120px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-120 {
    padding-top: 120px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-120 {
    padding-left: 120px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-120 {
    padding-bottom: 120px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-120 {
    padding-right: 120px;
  }
}

@media (min-width: 992px) {
  .lg_margin-120 {
    margin: 120px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-120 {
    margin-top: 120px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-120 {
    margin-left: 120px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-120 {
    margin-bottom: 120px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-120 {
    margin-right: 120px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-120 {
    margin-top: -120px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-120 {
    margin-left: -120px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-120 {
    margin-bottom: -120px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-120 {
    margin-right: -120px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-120 {
    box-shadow: 0 0 120px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-150 {
    padding: 150px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-150 {
    padding-top: 150px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-150 {
    padding-left: 150px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-150 {
    padding-bottom: 150px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-150 {
    padding-right: 150px;
  }
}

@media (min-width: 992px) {
  .lg_margin-150 {
    margin: 150px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-150 {
    margin-top: 150px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-150 {
    margin-left: 150px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-150 {
    margin-bottom: 150px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-150 {
    margin-right: 150px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-150 {
    margin-top: -150px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-150 {
    margin-left: -150px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-150 {
    margin-bottom: -150px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-150 {
    margin-right: -150px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-150 {
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-180 {
    padding: 180px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-180 {
    padding-top: 180px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-180 {
    padding-left: 180px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-180 {
    padding-bottom: 180px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-180 {
    padding-right: 180px;
  }
}

@media (min-width: 992px) {
  .lg_margin-180 {
    margin: 180px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-180 {
    margin-top: 180px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-180 {
    margin-left: 180px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-180 {
    margin-bottom: 180px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-180 {
    margin-right: 180px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-180 {
    margin-top: -180px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-180 {
    margin-left: -180px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-180 {
    margin-bottom: -180px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-180 {
    margin-right: -180px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-180 {
    box-shadow: 0 0 180px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-240 {
    padding: 240px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-240 {
    padding-top: 240px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-240 {
    padding-left: 240px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-240 {
    padding-bottom: 240px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-240 {
    padding-right: 240px;
  }
}

@media (min-width: 992px) {
  .lg_margin-240 {
    margin: 240px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-240 {
    margin-top: 240px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-240 {
    margin-left: 240px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-240 {
    margin-bottom: 240px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-240 {
    margin-right: 240px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-240 {
    margin-top: -240px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-240 {
    margin-left: -240px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-240 {
    margin-bottom: -240px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-240 {
    margin-right: -240px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-240 {
    box-shadow: 0 0 240px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-270 {
    padding: 270px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-270 {
    padding-top: 270px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-270 {
    padding-left: 270px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-270 {
    padding-bottom: 270px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-270 {
    padding-right: 270px;
  }
}

@media (min-width: 992px) {
  .lg_margin-270 {
    margin: 270px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-270 {
    margin-top: 270px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-270 {
    margin-left: 270px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-270 {
    margin-bottom: 270px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-270 {
    margin-right: 270px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-270 {
    margin-top: -270px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-270 {
    margin-left: -270px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-270 {
    margin-bottom: -270px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-270 {
    margin-right: -270px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-270 {
    box-shadow: 0 0 270px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-300 {
    padding: 300px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-300 {
    padding-top: 300px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-300 {
    padding-left: 300px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-300 {
    padding-bottom: 300px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-300 {
    padding-right: 300px;
  }
}

@media (min-width: 992px) {
  .lg_margin-300 {
    margin: 300px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-300 {
    margin-top: 300px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-300 {
    margin-left: 300px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-300 {
    margin-bottom: 300px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-300 {
    margin-right: 300px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-300 {
    margin-top: -300px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-300 {
    margin-left: -300px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-300 {
    margin-bottom: -300px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-300 {
    margin-right: -300px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-300 {
    box-shadow: 0 0 300px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-330 {
    padding: 330px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-330 {
    padding-top: 330px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-330 {
    padding-left: 330px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-330 {
    padding-bottom: 330px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-330 {
    padding-right: 330px;
  }
}

@media (min-width: 992px) {
  .lg_margin-330 {
    margin: 330px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-330 {
    margin-top: 330px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-330 {
    margin-left: 330px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-330 {
    margin-bottom: 330px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-330 {
    margin-right: 330px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-330 {
    margin-top: -330px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-330 {
    margin-left: -330px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-330 {
    margin-bottom: -330px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-330 {
    margin-right: -330px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-330 {
    box-shadow: 0 0 330px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-360 {
    padding: 360px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-360 {
    padding-top: 360px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-360 {
    padding-left: 360px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-360 {
    padding-bottom: 360px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-360 {
    padding-right: 360px;
  }
}

@media (min-width: 992px) {
  .lg_margin-360 {
    margin: 360px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-360 {
    margin-top: 360px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-360 {
    margin-left: 360px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-360 {
    margin-bottom: 360px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-360 {
    margin-right: 360px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-360 {
    margin-top: -360px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-360 {
    margin-left: -360px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-360 {
    margin-bottom: -360px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-360 {
    margin-right: -360px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-360 {
    box-shadow: 0 0 360px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-390 {
    padding: 390px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-390 {
    padding-top: 390px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-390 {
    padding-left: 390px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-390 {
    padding-bottom: 390px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-390 {
    padding-right: 390px;
  }
}

@media (min-width: 992px) {
  .lg_margin-390 {
    margin: 390px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-390 {
    margin-top: 390px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-390 {
    margin-left: 390px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-390 {
    margin-bottom: 390px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-390 {
    margin-right: 390px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-390 {
    margin-top: -390px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-390 {
    margin-left: -390px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-390 {
    margin-bottom: -390px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-390 {
    margin-right: -390px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-390 {
    box-shadow: 0 0 390px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .lg_padding-420 {
    padding: 420px;
  }
}

@media (min-width: 992px) {
  .lg_padding-top-420 {
    padding-top: 420px;
  }
}

@media (min-width: 992px) {
  .lg_padding-left-420 {
    padding-left: 420px;
  }
}

@media (min-width: 992px) {
  .lg_padding-bottom-420 {
    padding-bottom: 420px;
  }
}

@media (min-width: 992px) {
  .lg_padding-right-420 {
    padding-right: 420px;
  }
}

@media (min-width: 992px) {
  .lg_margin-420 {
    margin: 420px;
  }
}

@media (min-width: 992px) {
  .lg_margin-top-420 {
    margin-top: 420px;
  }
}

@media (min-width: 992px) {
  .lg_margin-left-420 {
    margin-left: 420px;
  }
}

@media (min-width: 992px) {
  .lg_margin-bottom-420 {
    margin-bottom: 420px;
  }
}

@media (min-width: 992px) {
  .lg_margin-right-420 {
    margin-right: 420px;
  }
}

@media (min-width: 992px) {
  .lg_pull-top-420 {
    margin-top: -420px;
  }
}

@media (min-width: 992px) {
  .lg_pull-left-420 {
    margin-left: -420px;
  }
}

@media (min-width: 992px) {
  .lg_pull-bottom-420 {
    margin-bottom: -420px;
  }
}

@media (min-width: 992px) {
  .lg_pull-right-420 {
    margin-right: -420px;
  }
}

@media (min-width: 992px) {
  .lg_shadow-420 {
    box-shadow: 0 0 420px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-0 {
    padding: 0px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-0 {
    padding-top: 0px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-0 {
    padding-left: 0px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-0 {
    padding-bottom: 0px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-0 {
    padding-right: 0px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-0 {
    margin: 0px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-0 {
    margin-top: 0px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-0 {
    margin-left: 0px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-0 {
    margin-bottom: 0px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-0 {
    margin-right: 0px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-0 {
    margin-top: -0px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-0 {
    margin-left: -0px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-0 {
    margin-bottom: -0px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-0 {
    margin-right: -0px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-0 {
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-5 {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-5 {
    padding-top: 5px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-5 {
    padding-left: 5px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-5 {
    padding-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-5 {
    padding-right: 5px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-5 {
    margin: 5px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-5 {
    margin-top: 5px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-5 {
    margin-left: 5px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-5 {
    margin-bottom: 5px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-5 {
    margin-right: 5px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-5 {
    margin-top: -5px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-5 {
    margin-left: -5px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-5 {
    margin-bottom: -5px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-5 {
    margin-right: -5px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-5 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-10 {
    padding: 10px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-10 {
    padding-top: 10px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-10 {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-10 {
    padding-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-10 {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-10 {
    margin: 10px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-10 {
    margin-top: 10px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-10 {
    margin-left: 10px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-10 {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-10 {
    margin-right: 10px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-10 {
    margin-top: -10px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-10 {
    margin-left: -10px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-10 {
    margin-bottom: -10px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-10 {
    margin-right: -10px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-10 {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-15 {
    padding: 15px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-15 {
    padding-top: 15px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-15 {
    padding-left: 15px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-15 {
    padding-bottom: 15px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-15 {
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-15 {
    margin: 15px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-15 {
    margin-top: 15px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-15 {
    margin-left: 15px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-15 {
    margin-bottom: 15px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-15 {
    margin-right: 15px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-15 {
    margin-top: -15px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-15 {
    margin-left: -15px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-15 {
    margin-bottom: -15px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-15 {
    margin-right: -15px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-15 {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-20 {
    padding: 20px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-20 {
    padding-top: 20px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-20 {
    padding-left: 20px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-20 {
    padding-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-20 {
    padding-right: 20px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-20 {
    margin: 20px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-20 {
    margin-top: 20px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-20 {
    margin-left: 20px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-20 {
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-20 {
    margin-right: 20px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-20 {
    margin-top: -20px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-20 {
    margin-left: -20px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-20 {
    margin-bottom: -20px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-20 {
    margin-right: -20px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-20 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-30 {
    padding: 30px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-30 {
    padding-top: 30px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-30 {
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-30 {
    padding-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-30 {
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-30 {
    margin: 30px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-30 {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-30 {
    margin-left: 30px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-30 {
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-30 {
    margin-right: 30px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-30 {
    margin-top: -30px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-30 {
    margin-left: -30px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-30 {
    margin-bottom: -30px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-30 {
    margin-right: -30px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-30 {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-45 {
    padding: 45px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-45 {
    padding-top: 45px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-45 {
    padding-left: 45px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-45 {
    padding-bottom: 45px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-45 {
    padding-right: 45px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-45 {
    margin: 45px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-45 {
    margin-top: 45px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-45 {
    margin-left: 45px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-45 {
    margin-bottom: 45px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-45 {
    margin-right: 45px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-45 {
    margin-top: -45px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-45 {
    margin-left: -45px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-45 {
    margin-bottom: -45px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-45 {
    margin-right: -45px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-45 {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-50 {
    padding: 50px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-50 {
    padding-top: 50px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-50 {
    padding-left: 50px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-50 {
    padding-bottom: 50px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-50 {
    padding-right: 50px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-50 {
    margin: 50px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-50 {
    margin-top: 50px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-50 {
    margin-left: 50px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-50 {
    margin-bottom: 50px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-50 {
    margin-right: 50px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-50 {
    margin-top: -50px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-50 {
    margin-left: -50px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-50 {
    margin-bottom: -50px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-50 {
    margin-right: -50px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-50 {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-60 {
    padding: 60px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-60 {
    padding-top: 60px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-60 {
    padding-left: 60px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-60 {
    padding-bottom: 60px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-60 {
    padding-right: 60px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-60 {
    margin: 60px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-60 {
    margin-top: 60px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-60 {
    margin-left: 60px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-60 {
    margin-bottom: 60px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-60 {
    margin-right: 60px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-60 {
    margin-top: -60px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-60 {
    margin-left: -60px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-60 {
    margin-bottom: -60px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-60 {
    margin-right: -60px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-60 {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-70 {
    padding: 70px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-70 {
    padding-top: 70px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-70 {
    padding-left: 70px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-70 {
    padding-bottom: 70px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-70 {
    padding-right: 70px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-70 {
    margin: 70px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-70 {
    margin-top: 70px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-70 {
    margin-left: 70px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-70 {
    margin-bottom: 70px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-70 {
    margin-right: 70px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-70 {
    margin-top: -70px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-70 {
    margin-left: -70px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-70 {
    margin-bottom: -70px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-70 {
    margin-right: -70px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-70 {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-80 {
    padding: 80px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-80 {
    padding-top: 80px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-80 {
    padding-left: 80px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-80 {
    padding-bottom: 80px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-80 {
    padding-right: 80px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-80 {
    margin: 80px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-80 {
    margin-top: 80px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-80 {
    margin-left: 80px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-80 {
    margin-bottom: 80px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-80 {
    margin-right: 80px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-80 {
    margin-top: -80px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-80 {
    margin-left: -80px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-80 {
    margin-bottom: -80px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-80 {
    margin-right: -80px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-80 {
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-90 {
    padding: 90px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-90 {
    padding-top: 90px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-90 {
    padding-left: 90px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-90 {
    padding-bottom: 90px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-90 {
    padding-right: 90px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-90 {
    margin: 90px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-90 {
    margin-top: 90px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-90 {
    margin-left: 90px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-90 {
    margin-bottom: 90px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-90 {
    margin-right: 90px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-90 {
    margin-top: -90px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-90 {
    margin-left: -90px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-90 {
    margin-bottom: -90px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-90 {
    margin-right: -90px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-90 {
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-120 {
    padding: 120px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-120 {
    padding-top: 120px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-120 {
    padding-left: 120px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-120 {
    padding-bottom: 120px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-120 {
    padding-right: 120px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-120 {
    margin: 120px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-120 {
    margin-top: 120px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-120 {
    margin-left: 120px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-120 {
    margin-bottom: 120px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-120 {
    margin-right: 120px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-120 {
    margin-top: -120px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-120 {
    margin-left: -120px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-120 {
    margin-bottom: -120px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-120 {
    margin-right: -120px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-120 {
    box-shadow: 0 0 120px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-150 {
    padding: 150px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-150 {
    padding-top: 150px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-150 {
    padding-left: 150px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-150 {
    padding-bottom: 150px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-150 {
    padding-right: 150px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-150 {
    margin: 150px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-150 {
    margin-top: 150px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-150 {
    margin-left: 150px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-150 {
    margin-bottom: 150px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-150 {
    margin-right: 150px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-150 {
    margin-top: -150px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-150 {
    margin-left: -150px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-150 {
    margin-bottom: -150px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-150 {
    margin-right: -150px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-150 {
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-180 {
    padding: 180px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-180 {
    padding-top: 180px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-180 {
    padding-left: 180px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-180 {
    padding-bottom: 180px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-180 {
    padding-right: 180px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-180 {
    margin: 180px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-180 {
    margin-top: 180px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-180 {
    margin-left: 180px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-180 {
    margin-bottom: 180px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-180 {
    margin-right: 180px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-180 {
    margin-top: -180px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-180 {
    margin-left: -180px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-180 {
    margin-bottom: -180px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-180 {
    margin-right: -180px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-180 {
    box-shadow: 0 0 180px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-240 {
    padding: 240px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-240 {
    padding-top: 240px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-240 {
    padding-left: 240px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-240 {
    padding-bottom: 240px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-240 {
    padding-right: 240px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-240 {
    margin: 240px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-240 {
    margin-top: 240px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-240 {
    margin-left: 240px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-240 {
    margin-bottom: 240px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-240 {
    margin-right: 240px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-240 {
    margin-top: -240px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-240 {
    margin-left: -240px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-240 {
    margin-bottom: -240px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-240 {
    margin-right: -240px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-240 {
    box-shadow: 0 0 240px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-270 {
    padding: 270px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-270 {
    padding-top: 270px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-270 {
    padding-left: 270px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-270 {
    padding-bottom: 270px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-270 {
    padding-right: 270px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-270 {
    margin: 270px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-270 {
    margin-top: 270px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-270 {
    margin-left: 270px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-270 {
    margin-bottom: 270px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-270 {
    margin-right: 270px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-270 {
    margin-top: -270px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-270 {
    margin-left: -270px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-270 {
    margin-bottom: -270px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-270 {
    margin-right: -270px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-270 {
    box-shadow: 0 0 270px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-300 {
    padding: 300px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-300 {
    padding-top: 300px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-300 {
    padding-left: 300px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-300 {
    padding-bottom: 300px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-300 {
    padding-right: 300px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-300 {
    margin: 300px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-300 {
    margin-top: 300px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-300 {
    margin-left: 300px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-300 {
    margin-bottom: 300px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-300 {
    margin-right: 300px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-300 {
    margin-top: -300px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-300 {
    margin-left: -300px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-300 {
    margin-bottom: -300px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-300 {
    margin-right: -300px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-300 {
    box-shadow: 0 0 300px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-330 {
    padding: 330px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-330 {
    padding-top: 330px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-330 {
    padding-left: 330px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-330 {
    padding-bottom: 330px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-330 {
    padding-right: 330px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-330 {
    margin: 330px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-330 {
    margin-top: 330px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-330 {
    margin-left: 330px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-330 {
    margin-bottom: 330px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-330 {
    margin-right: 330px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-330 {
    margin-top: -330px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-330 {
    margin-left: -330px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-330 {
    margin-bottom: -330px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-330 {
    margin-right: -330px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-330 {
    box-shadow: 0 0 330px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-360 {
    padding: 360px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-360 {
    padding-top: 360px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-360 {
    padding-left: 360px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-360 {
    padding-bottom: 360px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-360 {
    padding-right: 360px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-360 {
    margin: 360px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-360 {
    margin-top: 360px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-360 {
    margin-left: 360px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-360 {
    margin-bottom: 360px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-360 {
    margin-right: 360px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-360 {
    margin-top: -360px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-360 {
    margin-left: -360px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-360 {
    margin-bottom: -360px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-360 {
    margin-right: -360px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-360 {
    box-shadow: 0 0 360px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-390 {
    padding: 390px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-390 {
    padding-top: 390px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-390 {
    padding-left: 390px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-390 {
    padding-bottom: 390px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-390 {
    padding-right: 390px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-390 {
    margin: 390px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-390 {
    margin-top: 390px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-390 {
    margin-left: 390px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-390 {
    margin-bottom: 390px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-390 {
    margin-right: 390px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-390 {
    margin-top: -390px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-390 {
    margin-left: -390px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-390 {
    margin-bottom: -390px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-390 {
    margin-right: -390px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-390 {
    box-shadow: 0 0 390px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1200px) {
  .xl_padding-420 {
    padding: 420px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-top-420 {
    padding-top: 420px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-left-420 {
    padding-left: 420px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-bottom-420 {
    padding-bottom: 420px;
  }
}

@media (min-width: 1200px) {
  .xl_padding-right-420 {
    padding-right: 420px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-420 {
    margin: 420px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-top-420 {
    margin-top: 420px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-left-420 {
    margin-left: 420px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-bottom-420 {
    margin-bottom: 420px;
  }
}

@media (min-width: 1200px) {
  .xl_margin-right-420 {
    margin-right: 420px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-top-420 {
    margin-top: -420px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-left-420 {
    margin-left: -420px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-bottom-420 {
    margin-bottom: -420px;
  }
}

@media (min-width: 1200px) {
  .xl_pull-right-420 {
    margin-right: -420px;
  }
}

@media (min-width: 1200px) {
  .xl_shadow-420 {
    box-shadow: 0 0 420px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 666px) {
  .hide-sm-down {
    display: none !important;
  }
}

@media (min-width: 667px) {
  .hide-sm-up {
    display: none !important;
  }
}

@media (min-width: 667px) {
  .left-align-sm-up {
    text-align: left;
  }
}

@media (max-width: 666px) {
  .left-align-sm-down {
    text-align: left;
  }
}

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

@media (max-width: 666px) {
  .center-align-sm-down {
    text-align: center;
  }
}

@media (min-width: 667px) {
  .right-align-sm-up {
    text-align: right;
  }
}

@media (max-width: 666px) {
  .right-align-sm-down {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .hide-md-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-md-up {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .left-align-md-up {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .left-align-md-down {
    text-align: left;
  }
}

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

@media (max-width: 767px) {
  .center-align-md-down {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .right-align-md-up {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .right-align-md-down {
    text-align: right;
  }
}

@media (max-width: 991px) {
  .hide-lg-down {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-lg-up {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .left-align-lg-up {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .left-align-lg-down {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .center-align-lg-up {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .center-align-lg-down {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .right-align-lg-up {
    text-align: right;
  }
}

@media (max-width: 991px) {
  .right-align-lg-down {
    text-align: right;
  }
}

@media (max-width: 1199px) {
  .hide-xl-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hide-xl-up {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .left-align-xl-up {
    text-align: left;
  }
}

@media (max-width: 1199px) {
  .left-align-xl-down {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .center-align-xl-up {
    text-align: center;
  }
}

@media (max-width: 1199px) {
  .center-align-xl-down {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .right-align-xl-up {
    text-align: right;
  }
}

@media (max-width: 1199px) {
  .right-align-xl-down {
    text-align: right;
  }
}

.no-margin {
  margin: 0;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

body:not(.home) .home-only {
  display: none;
}

.serif {
  font-family: "PT Serif", Georgia, "Times New Roman", Times, serif;
}

.sans {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
