body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e11516 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #005d3f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e11516 !important;
  border-color: #e11516 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #920e0e !important;
  border-color: #920e0e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #920e0e !important;
  border-color: #920e0e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #005d3f !important;
  border-color: #005d3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000604 !important;
  border-color: #000604 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000604 !important;
  border-color: #000604 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e11516;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #920e0e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e11516 !important;
  border-color: #e11516 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #005d3f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000604 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #005d3f !important;
  border-color: #005d3f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e11516 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #005d3f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #840c0d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e11516;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #005d3f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e11516;
  border-color: #e11516;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e11516;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fac8c8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #00dd95;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e11516 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #e11516;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e11516;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e11516;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e11516;
  border-bottom-color: #e11516;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #e11516 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e11516' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tIiPFfhYeR {
  z-index: 1000;
  width: 100%;
}
.cid-tIiPFfhYeR nav.navbar {
  position: fixed;
}
.cid-tIiPFfhYeR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIiPFfhYeR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIiPFfhYeR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIiPFfhYeR .dropdown-item:hover,
.cid-tIiPFfhYeR .dropdown-item:focus {
  background: #e11516 !important;
  color: white !important;
}
.cid-tIiPFfhYeR .dropdown-item:hover span {
  color: white;
}
.cid-tIiPFfhYeR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIiPFfhYeR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIiPFfhYeR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIiPFfhYeR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIiPFfhYeR .nav-link {
  position: relative;
}
.cid-tIiPFfhYeR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIiPFfhYeR .container {
    flex-wrap: nowrap;
  }
}
.cid-tIiPFfhYeR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIiPFfhYeR .dropdown-menu,
.cid-tIiPFfhYeR .navbar.opened {
  background: #000000 !important;
}
.cid-tIiPFfhYeR .nav-item:focus,
.cid-tIiPFfhYeR .nav-link:focus {
  outline: none;
}
.cid-tIiPFfhYeR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIiPFfhYeR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIiPFfhYeR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIiPFfhYeR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIiPFfhYeR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIiPFfhYeR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIiPFfhYeR .navbar {
  min-height: 120px;
  -webkit-box-shadow: 0px 0px 25px 10px #000000;
  -moz-box-shadow: 0px 0px 25px 10px #000000;
  box-shadow: 0px 0px 25px 10px #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tIiPFfhYeR .navbar.opened {
  transition: all 0.3s;
}
.cid-tIiPFfhYeR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIiPFfhYeR .navbar .navbar-logo img {
  width: auto;
}
.cid-tIiPFfhYeR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIiPFfhYeR .navbar.collapsed {
  justify-content: center;
}
.cid-tIiPFfhYeR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIiPFfhYeR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIiPFfhYeR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIiPFfhYeR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIiPFfhYeR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIiPFfhYeR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIiPFfhYeR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIiPFfhYeR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIiPFfhYeR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIiPFfhYeR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIiPFfhYeR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIiPFfhYeR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIiPFfhYeR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIiPFfhYeR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIiPFfhYeR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIiPFfhYeR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIiPFfhYeR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIiPFfhYeR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIiPFfhYeR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIiPFfhYeR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIiPFfhYeR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIiPFfhYeR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIiPFfhYeR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIiPFfhYeR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIiPFfhYeR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIiPFfhYeR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIiPFfhYeR .dropdown-item.active,
.cid-tIiPFfhYeR .dropdown-item:active {
  background-color: transparent;
}
.cid-tIiPFfhYeR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIiPFfhYeR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIiPFfhYeR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIiPFfhYeR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tIiPFfhYeR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIiPFfhYeR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIiPFfhYeR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIiPFfhYeR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIiPFfhYeR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIiPFfhYeR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f91919;
}
.cid-tIiPFfhYeR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIiPFfhYeR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIiPFfhYeR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIiPFfhYeR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIiPFfhYeR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIiPFfhYeR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIiPFfhYeR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIiPFfhYeR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIiPFfhYeR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIiPFfhYeR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIiPFfhYeR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIiPFfhYeR .navbar {
    height: 70px;
  }
  .cid-tIiPFfhYeR .navbar.opened {
    height: auto;
  }
  .cid-tIiPFfhYeR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIiTmwrGbH {
  padding-top: 15rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/david-garofalo-speaking-hero-16.jpg");
}
.cid-tIiTmwrGbH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIiTmwrGbH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIiTmwrGbH .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-tIiTmwrGbH .mbr-section-title {
  color: #ffffff;
}
.cid-tIiTmwrGbH .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tIiTmwrGbH .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tIiTmwrGbH .mbr-section-btn {
  margin-top: 28px;
}
.cid-tIiTmwrGbH iframe,
.cid-tIiTmwrGbH img,
.cid-tIiTmwrGbH video {
  width: 100%;
}
.cid-tIiTmwrGbH .mbr-media {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto 32px 0;
  width: fit-content;
  max-width: 100%;
}
.cid-tIiTmwrGbH .mbr-media span {
  font-size: 1.5rem;
  color: #005d3f;
  transition: all 0.2s;
}
.cid-tIiTmwrGbH .icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
  z-index: 2;
}
.cid-tIiTmwrGbH .icon-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.6;
  border-radius: 50%;
  transition: 0.3s all;
}
.cid-tIiTmwrGbH .icon-wrap:hover:before {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}
.cid-tIiTmwrGbH .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tIiTmwrGbH .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tIiTmwrGbH .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tIiTmwrGbH .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tIiTmwrGbH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tIiTmwrGbH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tIiTmwrGbH h3 {
  letter-spacing: 10px;
  font-size: 1.5rem;
}
.cid-tIiTmwrGbH h1 {
  color: #ffffff;
  font-size: 5rem;
  text-shadow: 2px 2px 2px #000000;
}
.cid-tIiTmwrGbH span {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
}
.cid-tIiTmwrGbH hr {
  margin: 1rem 0;
  color: #ffffff;
  opacity: .80;
  width: 80%;
}
@media (max-width: 520px) {
  .cid-tIiTmwrGbH h1 {
    font-size: 50px !important;
    line-height: 3rem;
  }
}
.cid-tIiTmwrGbH H5 {
  color: #ffffff;
}
.cid-vdLoCDksl5.popup-builder {
  background-color: #ffffff;
}
.cid-vdLoCDksl5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vdLoCDksl5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vdLoCDksl5 .modal-content,
.cid-vdLoCDksl5 .modal-dialog {
  height: auto;
}
.cid-vdLoCDksl5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vdLoCDksl5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vdLoCDksl5 .form-wrapper .mbr-form .form-group,
  .cid-vdLoCDksl5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vdLoCDksl5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vdLoCDksl5 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vdLoCDksl5 .mbr-text {
  text-align: center;
}
.cid-vdLoCDksl5 .pt-0 {
  padding-top: 0 !important;
}
.cid-vdLoCDksl5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vdLoCDksl5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vdLoCDksl5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vdLoCDksl5 .modal-open {
  overflow: hidden;
}
.cid-vdLoCDksl5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vdLoCDksl5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vdLoCDksl5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vdLoCDksl5 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vdLoCDksl5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vdLoCDksl5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vdLoCDksl5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vdLoCDksl5 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vdLoCDksl5 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vdLoCDksl5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vdLoCDksl5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-vdLoCDksl5 .modal-backdrop.show {
  opacity: .5;
}
.cid-vdLoCDksl5 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vdLoCDksl5 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vdLoCDksl5 .modal-header {
    padding: 1rem;
  }
}
.cid-vdLoCDksl5 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vdLoCDksl5 .modal-header .close svg {
  fill: #353535;
}
.cid-vdLoCDksl5 .modal-header .close:hover {
  opacity: 1;
}
.cid-vdLoCDksl5 .modal-header .close:focus {
  outline: none;
}
.cid-vdLoCDksl5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vdLoCDksl5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vdLoCDksl5 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vdLoCDksl5 .modal-body {
    padding: 1rem;
  }
}
.cid-vdLoCDksl5 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vdLoCDksl5 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vdLoCDksl5 .modal-footer {
    padding: 1rem;
  }
}
.cid-vdLoCDksl5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vdLoCDksl5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vdLoCDksl5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vdLoCDksl5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vdLoCDksl5 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vdLoCDksl5 .modal-lg,
  .cid-vdLoCDksl5 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vdLoCDksl5 .modal-xl {
    max-width: 1140px;
  }
}
.cid-vdLoCDksl5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vdLoCDksl5 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vdLoCDksl5 .form-group {
  margin-bottom: 1rem;
}
.cid-vdLoCDksl5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vdLoCDksl5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vdLoCDksl5 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vdLoCDksl5 .mbr-section-btn {
  margin: 0;
}
.cid-vdLoCDksl5 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tIj8nSt1NI {
  padding-top: 3rem;
  padding-bottom: 4rem;
  -webkit-box-shadow: 0px 0px 25px 5px #000000;
  -moz-box-shadow: 0px 0px 25px 5px #000000;
  box-shadow: 0px 0px 25px 5px #000000;
  background-color: #005d3f;
}
.cid-tIj8nSt1NI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIj8nSt1NI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIj8nSt1NI .content-wrapper {
  background: #fafafa;
  -webkit-box-shadow: 0px 0px 30px 0px #000000;
  -moz-box-shadow: 0px 0px 30px 0px #000000;
  box-shadow: 0px 0px 30px 0px #000000;
  transition: box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-tIj8nSt1NI .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tIj8nSt1NI .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tIj8nSt1NI .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tIj8nSt1NI .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tIj8nSt1NI .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tIj8nSt1NI .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tIj8nSt1NI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tIj8nSt1NI hr {
  margin: 1rem 0;
  color: #E11516;
  opacity: .80;
}
.cid-vdLfHquJsg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-vdLfHquJsg .mbr-text,
.cid-vdLfHquJsg blockquote {
  color: #767676;
}
.cid-vdLfHquJsg .mbr-text {
  text-align: center;
  color: #2e2e2e;
}
.cid-vdLfHquJsg .mbr-text B {
  color: #efefef;
}
.cid-vdLfHquJsg .custom-shape-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-vdLfHquJsg .custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 40px;
}
.cid-vdLfHquJsg .custom-shape-divider .shape-fill {
  fill: #005d3f;
}
.cid-vdLb2VnOif {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-vdLb2VnOif .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdLb2VnOif .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdLb2VnOif .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vdLb2VnOif .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-vdLb2VnOif .items-wrap {
  justify-content: center;
  margin: 0 -14px;
}
.cid-vdLb2VnOif .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-vdLb2VnOif .item {
    padding: 0 14px;
  }
}
.cid-vdLb2VnOif .item .item-wrapper {
  position: relative;
  border: 1px solid #005d3f;
  display: flex;
  overflow: hidden;
  background-color: #00846d;
}
@media (max-width: 992px) {
  .cid-vdLb2VnOif .item .item-wrapper {
    display: block;
  }
}
.cid-vdLb2VnOif .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vdLb2VnOif .item .item-wrapper .item-content {
    padding: 14px;
    width: 100%;
  }
}
.cid-vdLb2VnOif .item .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
}
.cid-vdLb2VnOif .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-vdLb2VnOif .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vdLb2VnOif .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-vdLb2VnOif .item .item-wrapper .item-img img {
  min-height: 320px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-vdLb2VnOif .item .item-wrapper .item-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.cid-vdLb2VnOif .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vdLb2VnOif .item-title {
  color: #ffffff;
}
.cid-vdLb2VnOif .item-text {
  color: #ffffff;
  font-size: 1.1rem;
}
.cid-vdLb2VnOif hr {
  margin: 1rem 0;
  color: #ffffff;
  opacity: .80;
}
.cid-vdLb2VnOif hr.red-line {
  margin: 1rem 0;
  color: #ff0000;
  opacity: .80;
}
.cid-vdLb2VnOif b,
.cid-vdLb2VnOif strong {
  font-size: 1.8rem;
  font-weight: 600;
}
.cid-vdLb2VnOif h2 {
  font-size: 3rem;
  font-weight: 600;
}
.cid-vdLb2VnOif span {
  font-size: 1.3rem;
  color: #000000;
}
.cid-vdLb2VnOif .mbr-section-title .item-text {
  text-align: justify;
}
@media (max-width: 520px) {
  .cid-vdLb2VnOif h2 {
    line-height: 2.5rem;
  }
}
.cid-tIFJ8PDJMy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #005d3f;
}
.cid-tIFJ8PDJMy .mbr-text,
.cid-tIFJ8PDJMy blockquote {
  color: #767676;
}
.cid-tIFJ8PDJMy .mbr-text {
  text-align: center;
  color: #2e2e2e;
}
.cid-tIFJ8PDJMy .mbr-text B {
  color: #efefef;
}
.cid-tIFJ8PDJMy .custom-shape-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-tIFJ8PDJMy .custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 40px;
}
.cid-tIFJ8PDJMy .custom-shape-divider .shape-fill {
  fill: #ffffff;
}
.cid-tIjughRmus {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #005d3f;
}
.cid-tIjughRmus .content_box {
  position: relative;
  z-index: 5;
}
.cid-tIjughRmus .carousel-item {
  justify-content: center;
}
.cid-tIjughRmus .carousel-item.active,
.cid-tIjughRmus .carousel-item-next,
.cid-tIjughRmus .carousel-item-prev {
  display: flex;
}
.cid-tIjughRmus .carousel-controls a {
  transition: opacity .5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  font-size: 22px;
  height: 22px;
  width: 22px;
  padding: 10px;
  color: #ffffff;
  opacity: 1;
}
.cid-tIjughRmus .carousel-control-next span {
  padding-left: 5px;
}
.cid-tIjughRmus .carousel-control-prev span {
  padding-right: 5px;
}
.cid-tIjughRmus .user_image {
  width: 100px;
  margin-bottom: 35px;
  overflow: hidden;
  margin: 0 auto 2rem auto;
}
.cid-tIjughRmus .user_image img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tIjughRmus .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tIjughRmus .user_text {
  line-height: 1.272em;
  font-weight: 500;
  color: #ffffff;
}
.cid-tIjughRmus .user_name {
  color: #b39a0f;
}
.cid-tIjughRmus p {
  font-size: 1.5rem;
}
.cid-tIjvQGTJuz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tIjvQGTJuz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIjvQGTJuz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIjvQGTJuz .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tIjvQGTJuz .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tIjvQGTJuz .container {
    padding: 0 26px;
  }
}
.cid-tIjvQGTJuz .row {
  padding: 60px;
  margin: 0;
  border: 1px solid #ffffff;
  padding: 120px 60px 60px 30px;
}
@media (max-width: 992px) {
  .cid-tIjvQGTJuz .row {
    padding: 120px 30px;
  }
}
@media (max-width: 992px) {
  .cid-tIjvQGTJuz .row {
    padding: 26px;
  }
}
.cid-tIjvQGTJuz .title-wrapper {
  margin-bottom: 50px;
}
.cid-tIjvQGTJuz .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tIjvQGTJuz .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-tIjvQGTJuz .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIjvQGTJuz .title-wrapper .title-wrap .logo-wrap {
  margin: 0 16px;
}
.cid-tIjvQGTJuz .title-wrapper .title-wrap .logo-wrap img {
  width: 110px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .cid-tIjvQGTJuz .title-wrapper .title-wrap .logo-wrap img {
    margin: 0 auto;
  }
}
.cid-tIjvQGTJuz .nav-wrapper {
  margin-bottom: 50px;
}
.cid-tIjvQGTJuz .nav-wrapper .list {
  display: inline-flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tIjvQGTJuz .nav-wrapper .list {
    display: block;
  }
}
.cid-tIjvQGTJuz .nav-wrapper .list .item-wrap {
  margin-right: 56px;
  margin-bottom: 0;
  padding-bottom: 2px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIjvQGTJuz .nav-wrapper .list .item-wrap {
    margin: 0;
  }
}
.cid-tIjvQGTJuz .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-tIjvQGTJuz .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e11516;
  transition: all 0.3s ease-in-out;
}
.cid-tIjvQGTJuz .nav-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-tIjvQGTJuz .soc-wrapper {
  margin-bottom: 50px;
}
.cid-tIjvQGTJuz .soc-wrapper .social-row {
  display: inline-flex;
}
.cid-tIjvQGTJuz .soc-wrapper .social-row .soc-item {
  margin-left: 24px;
}
.cid-tIjvQGTJuz .soc-wrapper .social-row .soc-item:first-child {
  margin-left: 0;
}
.cid-tIjvQGTJuz .soc-wrapper .social-row .soc-item a:hover .mbr-iconfont {
  display: inline-flex;
  transform: translateY(-5px);
}
.cid-tIjvQGTJuz .soc-wrapper .social-row .soc-item a .mbr-iconfont {
  font-size: 22px;
  transition: all 0.3s ease-in-out;
  color: #00846d;
}
.cid-tIjvQGTJuz .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-tIjvQGTJuz .mbr-section-title,
.cid-tIjvQGTJuz .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tIjvQGTJuz .list {
  color: #ffffff;
}
.cid-tIjvQGTJuz .copyright {
  color: #cacaca;
  text-align: center;
}
.cid-tIjvQGTJuz .list,
.cid-tIjvQGTJuz .nav-wrapper,
.cid-tIjvQGTJuz .soc-wrapper {
  text-align: center;
}
.cid-tIjzPKuMdL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e11516;
}
.cid-tIjzPKuMdL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIjzPKuMdL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIjzPKuMdL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tIG7dClWnL {
  z-index: 1000;
  width: 100%;
}
.cid-tIG7dClWnL nav.navbar {
  position: fixed;
}
.cid-tIG7dClWnL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIG7dClWnL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIG7dClWnL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIG7dClWnL .dropdown-item:hover,
.cid-tIG7dClWnL .dropdown-item:focus {
  background: #e11516 !important;
  color: white !important;
}
.cid-tIG7dClWnL .dropdown-item:hover span {
  color: white;
}
.cid-tIG7dClWnL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIG7dClWnL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIG7dClWnL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIG7dClWnL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIG7dClWnL .nav-link {
  position: relative;
}
.cid-tIG7dClWnL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIG7dClWnL .container {
    flex-wrap: nowrap;
  }
}
.cid-tIG7dClWnL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIG7dClWnL .dropdown-menu,
.cid-tIG7dClWnL .navbar.opened {
  background: #000000 !important;
}
.cid-tIG7dClWnL .nav-item:focus,
.cid-tIG7dClWnL .nav-link:focus {
  outline: none;
}
.cid-tIG7dClWnL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIG7dClWnL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIG7dClWnL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIG7dClWnL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIG7dClWnL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIG7dClWnL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIG7dClWnL .navbar {
  min-height: 120px;
  -webkit-box-shadow: 0px 0px 25px 10px #000000;
  -moz-box-shadow: 0px 0px 25px 10px #000000;
  box-shadow: 0px 0px 25px 10px #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tIG7dClWnL .navbar.opened {
  transition: all 0.3s;
}
.cid-tIG7dClWnL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIG7dClWnL .navbar .navbar-logo img {
  width: auto;
}
.cid-tIG7dClWnL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIG7dClWnL .navbar.collapsed {
  justify-content: center;
}
.cid-tIG7dClWnL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIG7dClWnL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIG7dClWnL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIG7dClWnL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIG7dClWnL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIG7dClWnL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIG7dClWnL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIG7dClWnL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIG7dClWnL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIG7dClWnL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIG7dClWnL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIG7dClWnL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIG7dClWnL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIG7dClWnL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIG7dClWnL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIG7dClWnL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIG7dClWnL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIG7dClWnL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIG7dClWnL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIG7dClWnL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIG7dClWnL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIG7dClWnL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIG7dClWnL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIG7dClWnL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIG7dClWnL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIG7dClWnL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIG7dClWnL .dropdown-item.active,
.cid-tIG7dClWnL .dropdown-item:active {
  background-color: transparent;
}
.cid-tIG7dClWnL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIG7dClWnL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIG7dClWnL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIG7dClWnL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tIG7dClWnL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIG7dClWnL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIG7dClWnL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIG7dClWnL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIG7dClWnL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIG7dClWnL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f91919;
}
.cid-tIG7dClWnL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIG7dClWnL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIG7dClWnL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIG7dClWnL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIG7dClWnL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIG7dClWnL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIG7dClWnL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIG7dClWnL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIG7dClWnL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIG7dClWnL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIG7dClWnL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIG7dClWnL .navbar {
    height: 70px;
  }
  .cid-tIG7dClWnL .navbar.opened {
    height: auto;
  }
  .cid-tIG7dClWnL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIG7oHR82y {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/david-garofalo-about-the-author-david-vs-goliath-2.jpg");
}
.cid-tIG7oHR82y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIG7oHR82y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIG7oHR82y hr {
  margin: 1rem 0;
  color: #ffffff;
  opacity: .80;
  width: 80%;
}
.cid-tIG7oHR82y h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 2px #000000;
}
.cid-tIG7oHR82y h2 {
  font-size: 2rem;
  text-shadow: 2px 2px 2px #000000;
  font-weight: normal;
}
.cid-tIG7oHR82y P {
  font-size: 1.3rem;
  text-shadow: 2px 2px 2px #000000;
}
@media (max-width: 520px) {
  .cid-tIG7oHR82y h1 {
    font-size: 40px !important;
    line-height: 3rem;
  }
  .cid-tIG7oHR82y h2 {
    font-size: 25px !important;
    line-height: 1.5rem;
  }
  .cid-tIG7oHR82y p {
    font-size: 15px !important;
  }
}
.cid-tIGc5XqFWC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIGc5XqFWC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIGc5XqFWC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIGc5XqFWC .mbr-section-title {
  text-align: left;
}
.cid-tIGc5XqFWC .mbr-section-subtitle {
  text-align: left;
}
.cid-tIGc5XqFWC hr {
  margin: 1rem 0;
  color: #e11516;
  opacity: .80;
}
.cid-tIGc5XqFWC b,
.cid-tIGc5XqFWC strong {
  font-size: 2.5rem;
}
.cid-tIGc5XqFWC h4 {
  font-size: 1.3rem;
}
.cid-tIGc5XqFWC span {
  font-size: 1.5rem;
  font-weight: 600;
}
.cid-tIG7dEjq3S {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #005d3f;
}
.cid-tIG7dEjq3S .mbr-text,
.cid-tIG7dEjq3S blockquote {
  color: #767676;
}
.cid-tIG7dEjq3S .mbr-text {
  text-align: center;
  color: #2e2e2e;
}
.cid-tIG7dEjq3S .mbr-text B {
  color: #efefef;
}
.cid-tIG7dEjq3S .custom-shape-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-tIG7dEjq3S .custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 40px;
}
.cid-tIG7dEjq3S .custom-shape-divider .shape-fill {
  fill: #ffffff;
}
.cid-tIG7dEv8o5 {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #005d3f;
}
.cid-tIG7dEv8o5 .content_box {
  position: relative;
  z-index: 5;
}
.cid-tIG7dEv8o5 .carousel-item {
  justify-content: center;
}
.cid-tIG7dEv8o5 .carousel-item.active,
.cid-tIG7dEv8o5 .carousel-item-next,
.cid-tIG7dEv8o5 .carousel-item-prev {
  display: flex;
}
.cid-tIG7dEv8o5 .carousel-controls a {
  transition: opacity .5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  font-size: 22px;
  height: 22px;
  width: 22px;
  padding: 10px;
  color: #ffffff;
  opacity: 1;
}
.cid-tIG7dEv8o5 .carousel-control-next span {
  padding-left: 5px;
}
.cid-tIG7dEv8o5 .carousel-control-prev span {
  padding-right: 5px;
}
.cid-tIG7dEv8o5 .user_image {
  width: 100px;
  margin-bottom: 35px;
  overflow: hidden;
  margin: 0 auto 2rem auto;
}
.cid-tIG7dEv8o5 .user_image img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tIG7dEv8o5 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tIG7dEv8o5 .user_text {
  line-height: 1.272em;
  font-weight: 500;
  color: #ffffff;
}
.cid-tIG7dEv8o5 .user_name {
  color: #b39a0f;
}
.cid-tIG7dEv8o5 p {
  font-size: 1.5rem;
}
.cid-tIG7dETV9w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tIG7dETV9w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIG7dETV9w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIG7dETV9w .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tIG7dETV9w .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tIG7dETV9w .container {
    padding: 0 26px;
  }
}
.cid-tIG7dETV9w .row {
  padding: 60px;
  margin: 0;
  border: 1px solid #ffffff;
  padding: 120px 60px 60px 30px;
}
@media (max-width: 992px) {
  .cid-tIG7dETV9w .row {
    padding: 120px 30px;
  }
}
@media (max-width: 992px) {
  .cid-tIG7dETV9w .row {
    padding: 26px;
  }
}
.cid-tIG7dETV9w .title-wrapper {
  margin-bottom: 50px;
}
.cid-tIG7dETV9w .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tIG7dETV9w .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-tIG7dETV9w .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIG7dETV9w .title-wrapper .title-wrap .logo-wrap {
  margin: 0 16px;
}
.cid-tIG7dETV9w .title-wrapper .title-wrap .logo-wrap img {
  width: 110px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .cid-tIG7dETV9w .title-wrapper .title-wrap .logo-wrap img {
    margin: 0 auto;
  }
}
.cid-tIG7dETV9w .nav-wrapper {
  margin-bottom: 50px;
}
.cid-tIG7dETV9w .nav-wrapper .list {
  display: inline-flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tIG7dETV9w .nav-wrapper .list {
    display: block;
  }
}
.cid-tIG7dETV9w .nav-wrapper .list .item-wrap {
  margin-right: 56px;
  margin-bottom: 0;
  padding-bottom: 2px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIG7dETV9w .nav-wrapper .list .item-wrap {
    margin: 0;
  }
}
.cid-tIG7dETV9w .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-tIG7dETV9w .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e11516;
  transition: all 0.3s ease-in-out;
}
.cid-tIG7dETV9w .nav-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-tIG7dETV9w .soc-wrapper {
  margin-bottom: 50px;
}
.cid-tIG7dETV9w .soc-wrapper .social-row {
  display: inline-flex;
}
.cid-tIG7dETV9w .soc-wrapper .social-row .soc-item {
  margin-left: 24px;
}
.cid-tIG7dETV9w .soc-wrapper .social-row .soc-item:first-child {
  margin-left: 0;
}
.cid-tIG7dETV9w .soc-wrapper .social-row .soc-item a:hover .mbr-iconfont {
  display: inline-flex;
  transform: translateY(-5px);
}
.cid-tIG7dETV9w .soc-wrapper .social-row .soc-item a .mbr-iconfont {
  font-size: 22px;
  transition: all 0.3s ease-in-out;
  color: #00846d;
}
.cid-tIG7dETV9w .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-tIG7dETV9w .mbr-section-title,
.cid-tIG7dETV9w .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tIG7dETV9w .list {
  color: #ffffff;
}
.cid-tIG7dETV9w .copyright {
  color: #cacaca;
  text-align: center;
}
.cid-tIG7dETV9w .list,
.cid-tIG7dETV9w .nav-wrapper,
.cid-tIG7dETV9w .soc-wrapper {
  text-align: center;
}
.cid-tIXKTy4b2t {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e11516;
}
.cid-tIXKTy4b2t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXKTy4b2t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXKTy4b2t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tIGcw6h0jf {
  z-index: 1000;
  width: 100%;
}
.cid-tIGcw6h0jf nav.navbar {
  position: fixed;
}
.cid-tIGcw6h0jf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIGcw6h0jf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIGcw6h0jf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIGcw6h0jf .dropdown-item:hover,
.cid-tIGcw6h0jf .dropdown-item:focus {
  background: #e11516 !important;
  color: white !important;
}
.cid-tIGcw6h0jf .dropdown-item:hover span {
  color: white;
}
.cid-tIGcw6h0jf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIGcw6h0jf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIGcw6h0jf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIGcw6h0jf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIGcw6h0jf .nav-link {
  position: relative;
}
.cid-tIGcw6h0jf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIGcw6h0jf .container {
    flex-wrap: nowrap;
  }
}
.cid-tIGcw6h0jf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIGcw6h0jf .dropdown-menu,
.cid-tIGcw6h0jf .navbar.opened {
  background: #000000 !important;
}
.cid-tIGcw6h0jf .nav-item:focus,
.cid-tIGcw6h0jf .nav-link:focus {
  outline: none;
}
.cid-tIGcw6h0jf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIGcw6h0jf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIGcw6h0jf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIGcw6h0jf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIGcw6h0jf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIGcw6h0jf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIGcw6h0jf .navbar {
  min-height: 120px;
  -webkit-box-shadow: 0px 0px 25px 10px #000000;
  -moz-box-shadow: 0px 0px 25px 10px #000000;
  box-shadow: 0px 0px 25px 10px #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tIGcw6h0jf .navbar.opened {
  transition: all 0.3s;
}
.cid-tIGcw6h0jf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIGcw6h0jf .navbar .navbar-logo img {
  width: auto;
}
.cid-tIGcw6h0jf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIGcw6h0jf .navbar.collapsed {
  justify-content: center;
}
.cid-tIGcw6h0jf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIGcw6h0jf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIGcw6h0jf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIGcw6h0jf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIGcw6h0jf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIGcw6h0jf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIGcw6h0jf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIGcw6h0jf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIGcw6h0jf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIGcw6h0jf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIGcw6h0jf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIGcw6h0jf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIGcw6h0jf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIGcw6h0jf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIGcw6h0jf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIGcw6h0jf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIGcw6h0jf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIGcw6h0jf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIGcw6h0jf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIGcw6h0jf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIGcw6h0jf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIGcw6h0jf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIGcw6h0jf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIGcw6h0jf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIGcw6h0jf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIGcw6h0jf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIGcw6h0jf .dropdown-item.active,
.cid-tIGcw6h0jf .dropdown-item:active {
  background-color: transparent;
}
.cid-tIGcw6h0jf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIGcw6h0jf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIGcw6h0jf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIGcw6h0jf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tIGcw6h0jf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIGcw6h0jf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIGcw6h0jf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIGcw6h0jf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIGcw6h0jf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIGcw6h0jf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f91919;
}
.cid-tIGcw6h0jf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIGcw6h0jf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIGcw6h0jf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIGcw6h0jf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIGcw6h0jf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIGcw6h0jf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIGcw6h0jf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIGcw6h0jf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIGcw6h0jf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIGcw6h0jf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIGcw6h0jf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIGcw6h0jf .navbar {
    height: 70px;
  }
  .cid-tIGcw6h0jf .navbar.opened {
    height: auto;
  }
  .cid-tIGcw6h0jf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIGcw6IzgM {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/david-garofalo-david-vs-goliath-book-banner-3.jpg");
}
.cid-tIGcw6IzgM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIGcw6IzgM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIGcw6IzgM hr {
  margin: 1rem 0;
  color: #ffffff;
  opacity: .80;
  width: 80%;
}
.cid-tIGcw6IzgM h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 2px #000000;
}
.cid-tIGcw6IzgM h2 {
  font-size: 2rem;
  text-shadow: 2px 2px 2px #000000;
  font-weight: normal;
}
.cid-tIGcw6IzgM P {
  font-size: 1.3rem;
  text-shadow: 2px 2px 2px #000000;
}
@media (max-width: 520px) {
  .cid-tIGcw6IzgM h1 {
    font-size: 40px !important;
    line-height: 3rem;
  }
  .cid-tIGcw6IzgM h2 {
    font-size: 25px !important;
    line-height: 1.5rem;
  }
  .cid-tIGcw6IzgM p {
    font-size: 15px !important;
  }
}
.cid-tIGcw73G4P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIGcw73G4P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIGcw73G4P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIGcw73G4P .mbr-section-title {
  text-align: left;
}
.cid-tIGcw73G4P .mbr-section-subtitle {
  text-align: left;
}
.cid-tIGcw73G4P hr {
  margin: 1rem 0;
  color: #e11516;
  opacity: .80;
}
.cid-tIGcw73G4P b,
.cid-tIGcw73G4P strong {
  font-size: 2.5rem;
}
.cid-tIGcw73G4P h4 {
  font-size: 1.3rem;
}
.cid-tIGcw73G4P span {
  font-size: 1.5rem;
  font-weight: 600;
}
.cid-tIGimSHzmd {
  -webkit-box-shadow: 0px 0px 25px 5px #000000;
  -moz-box-shadow: 0px 0px 25px 5px #000000;
  box-shadow: 0px 0px 25px 5px #000000;
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-tIGimSHzmd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIGimSHzmd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIGimSHzmd .row {
  align-items: center;
}
.cid-tIGimSHzmd .mbr-section-title {
  color: #000000;
}
.cid-tIGimSHzmd hr {
  margin: 1rem 0;
  color: #d90000;
  opacity: .80;
}
.cid-tIGimSHzmd span {
  color: #9c7941;
}
.cid-tIGimSHzmd b,
.cid-tIGimSHzmd strong {
  font-size: 2.8rem;
}
.cid-tIGimSHzmd p {
  font-size: 1.2rem;
}
.cid-tIGcw7n680 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #005d3f;
}
.cid-tIGcw7n680 .mbr-text,
.cid-tIGcw7n680 blockquote {
  color: #767676;
}
.cid-tIGcw7n680 .mbr-text {
  text-align: center;
  color: #2e2e2e;
}
.cid-tIGcw7n680 .mbr-text B {
  color: #efefef;
}
.cid-tIGcw7n680 .custom-shape-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-tIGcw7n680 .custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 40px;
}
.cid-tIGcw7n680 .custom-shape-divider .shape-fill {
  fill: #ffffff;
}
.cid-tIGcw7BTAC {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #005d3f;
}
.cid-tIGcw7BTAC .content_box {
  position: relative;
  z-index: 5;
}
.cid-tIGcw7BTAC .carousel-item {
  justify-content: center;
}
.cid-tIGcw7BTAC .carousel-item.active,
.cid-tIGcw7BTAC .carousel-item-next,
.cid-tIGcw7BTAC .carousel-item-prev {
  display: flex;
}
.cid-tIGcw7BTAC .carousel-controls a {
  transition: opacity .5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  font-size: 22px;
  height: 22px;
  width: 22px;
  padding: 10px;
  color: #ffffff;
  opacity: 1;
}
.cid-tIGcw7BTAC .carousel-control-next span {
  padding-left: 5px;
}
.cid-tIGcw7BTAC .carousel-control-prev span {
  padding-right: 5px;
}
.cid-tIGcw7BTAC .user_image {
  width: 100px;
  margin-bottom: 35px;
  overflow: hidden;
  margin: 0 auto 2rem auto;
}
.cid-tIGcw7BTAC .user_image img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tIGcw7BTAC .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tIGcw7BTAC .user_text {
  line-height: 1.272em;
  font-weight: 500;
  color: #ffffff;
}
.cid-tIGcw7BTAC .user_name {
  color: #b39a0f;
}
.cid-tIGcw7BTAC p {
  font-size: 1.5rem;
}
.cid-tIGcw82fwp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tIGcw82fwp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIGcw82fwp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIGcw82fwp .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tIGcw82fwp .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tIGcw82fwp .container {
    padding: 0 26px;
  }
}
.cid-tIGcw82fwp .row {
  padding: 60px;
  margin: 0;
  border: 1px solid #ffffff;
  padding: 120px 60px 60px 30px;
}
@media (max-width: 992px) {
  .cid-tIGcw82fwp .row {
    padding: 120px 30px;
  }
}
@media (max-width: 992px) {
  .cid-tIGcw82fwp .row {
    padding: 26px;
  }
}
.cid-tIGcw82fwp .title-wrapper {
  margin-bottom: 50px;
}
.cid-tIGcw82fwp .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tIGcw82fwp .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-tIGcw82fwp .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIGcw82fwp .title-wrapper .title-wrap .logo-wrap {
  margin: 0 16px;
}
.cid-tIGcw82fwp .title-wrapper .title-wrap .logo-wrap img {
  width: 110px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .cid-tIGcw82fwp .title-wrapper .title-wrap .logo-wrap img {
    margin: 0 auto;
  }
}
.cid-tIGcw82fwp .nav-wrapper {
  margin-bottom: 50px;
}
.cid-tIGcw82fwp .nav-wrapper .list {
  display: inline-flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tIGcw82fwp .nav-wrapper .list {
    display: block;
  }
}
.cid-tIGcw82fwp .nav-wrapper .list .item-wrap {
  margin-right: 56px;
  margin-bottom: 0;
  padding-bottom: 2px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIGcw82fwp .nav-wrapper .list .item-wrap {
    margin: 0;
  }
}
.cid-tIGcw82fwp .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-tIGcw82fwp .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e11516;
  transition: all 0.3s ease-in-out;
}
.cid-tIGcw82fwp .nav-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-tIGcw82fwp .soc-wrapper {
  margin-bottom: 50px;
}
.cid-tIGcw82fwp .soc-wrapper .social-row {
  display: inline-flex;
}
.cid-tIGcw82fwp .soc-wrapper .social-row .soc-item {
  margin-left: 24px;
}
.cid-tIGcw82fwp .soc-wrapper .social-row .soc-item:first-child {
  margin-left: 0;
}
.cid-tIGcw82fwp .soc-wrapper .social-row .soc-item a:hover .mbr-iconfont {
  display: inline-flex;
  transform: translateY(-5px);
}
.cid-tIGcw82fwp .soc-wrapper .social-row .soc-item a .mbr-iconfont {
  font-size: 22px;
  transition: all 0.3s ease-in-out;
  color: #00846d;
}
.cid-tIGcw82fwp .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-tIGcw82fwp .mbr-section-title,
.cid-tIGcw82fwp .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tIGcw82fwp .list {
  color: #ffffff;
}
.cid-tIGcw82fwp .copyright {
  color: #cacaca;
  text-align: center;
}
.cid-tIGcw82fwp .list,
.cid-tIGcw82fwp .nav-wrapper,
.cid-tIGcw82fwp .soc-wrapper {
  text-align: center;
}
.cid-tIGcw8s4VR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e11516;
}
.cid-tIGcw8s4VR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIGcw8s4VR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIGcw8s4VR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tIGmbOmxlU {
  z-index: 1000;
  width: 100%;
}
.cid-tIGmbOmxlU nav.navbar {
  position: fixed;
}
.cid-tIGmbOmxlU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIGmbOmxlU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIGmbOmxlU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIGmbOmxlU .dropdown-item:hover,
.cid-tIGmbOmxlU .dropdown-item:focus {
  background: #e11516 !important;
  color: white !important;
}
.cid-tIGmbOmxlU .dropdown-item:hover span {
  color: white;
}
.cid-tIGmbOmxlU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIGmbOmxlU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIGmbOmxlU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIGmbOmxlU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIGmbOmxlU .nav-link {
  position: relative;
}
.cid-tIGmbOmxlU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIGmbOmxlU .container {
    flex-wrap: nowrap;
  }
}
.cid-tIGmbOmxlU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIGmbOmxlU .dropdown-menu,
.cid-tIGmbOmxlU .navbar.opened {
  background: #000000 !important;
}
.cid-tIGmbOmxlU .nav-item:focus,
.cid-tIGmbOmxlU .nav-link:focus {
  outline: none;
}
.cid-tIGmbOmxlU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIGmbOmxlU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIGmbOmxlU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIGmbOmxlU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIGmbOmxlU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIGmbOmxlU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIGmbOmxlU .navbar {
  min-height: 120px;
  -webkit-box-shadow: 0px 0px 25px 10px #000000;
  -moz-box-shadow: 0px 0px 25px 10px #000000;
  box-shadow: 0px 0px 25px 10px #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tIGmbOmxlU .navbar.opened {
  transition: all 0.3s;
}
.cid-tIGmbOmxlU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIGmbOmxlU .navbar .navbar-logo img {
  width: auto;
}
.cid-tIGmbOmxlU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIGmbOmxlU .navbar.collapsed {
  justify-content: center;
}
.cid-tIGmbOmxlU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIGmbOmxlU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIGmbOmxlU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIGmbOmxlU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIGmbOmxlU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIGmbOmxlU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIGmbOmxlU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIGmbOmxlU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIGmbOmxlU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIGmbOmxlU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIGmbOmxlU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIGmbOmxlU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIGmbOmxlU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIGmbOmxlU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIGmbOmxlU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIGmbOmxlU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIGmbOmxlU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIGmbOmxlU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIGmbOmxlU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIGmbOmxlU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIGmbOmxlU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIGmbOmxlU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIGmbOmxlU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIGmbOmxlU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIGmbOmxlU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIGmbOmxlU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIGmbOmxlU .dropdown-item.active,
.cid-tIGmbOmxlU .dropdown-item:active {
  background-color: transparent;
}
.cid-tIGmbOmxlU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIGmbOmxlU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIGmbOmxlU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIGmbOmxlU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tIGmbOmxlU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIGmbOmxlU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIGmbOmxlU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIGmbOmxlU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIGmbOmxlU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIGmbOmxlU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f91919;
}
.cid-tIGmbOmxlU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIGmbOmxlU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIGmbOmxlU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIGmbOmxlU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIGmbOmxlU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIGmbOmxlU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIGmbOmxlU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIGmbOmxlU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIGmbOmxlU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIGmbOmxlU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIGmbOmxlU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIGmbOmxlU .navbar {
    height: 70px;
  }
  .cid-tIGmbOmxlU .navbar.opened {
    height: auto;
  }
  .cid-tIGmbOmxlU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIGmbOTPPR {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/david-garofalo-speaking-engagements-for-hire.jpg");
}
.cid-tIGmbOTPPR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIGmbOTPPR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIGmbOTPPR hr {
  margin: 1rem 0;
  color: #ffffff;
  opacity: .80;
  width: 80%;
}
.cid-tIGmbOTPPR h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 2px #000000;
}
.cid-tIGmbOTPPR h2 {
  font-size: 2rem;
  text-shadow: 2px 2px 2px #000000;
  font-weight: normal;
}
.cid-tIGmbOTPPR P {
  font-size: 1.3rem;
  text-shadow: 2px 2px 2px #000000;
}
@media (max-width: 520px) {
  .cid-tIGmbOTPPR h1 {
    font-size: 40px !important;
    line-height: 3rem;
  }
  .cid-tIGmbOTPPR h2 {
    font-size: 25px !important;
    line-height: 1.5rem;
  }
  .cid-tIGmbOTPPR p {
    font-size: 15px !important;
  }
}
.cid-tIGmbPfRKI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIGmbPfRKI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIGmbPfRKI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIGmbPfRKI .mbr-section-title {
  text-align: left;
}
.cid-tIGmbPfRKI .mbr-section-subtitle {
  text-align: left;
}
.cid-tIGmbPfRKI hr {
  margin: 1rem 0;
  color: #e11516;
  opacity: .80;
}
.cid-tIGmbPfRKI b,
.cid-tIGmbPfRKI strong {
  font-size: 2.2rem;
}
.cid-tIGmbPfRKI h4 {
  font-size: 1.3rem;
}
.cid-tIGmbPfRKI span {
  font-weight: 800;
  font-style: italic;
}
.cid-tIGoP9xuio {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #00846d;
}
.cid-tIGoP9xuio .mbr-text,
.cid-tIGoP9xuio blockquote {
  color: #767676;
}
.cid-tIGoP9xuio .mbr-text {
  text-align: center;
  color: #2e2e2e;
}
.cid-tIGoP9xuio .mbr-text B {
  color: #efefef;
}
.cid-tIGoP9xuio .custom-shape-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-tIGoP9xuio .custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 40px;
}
.cid-tIGoP9xuio .custom-shape-divider .shape-fill {
  fill: #ffffff;
}
.cid-tIGnFE1W1g {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #00846d;
}
.cid-tIGnFE1W1g .showAlerts {
  display: block !important;
}
.cid-tIGnFE1W1g .rowflexrev {
  display: -webkit-flex;
}
.cid-tIGnFE1W1g .ws-form-alerts {
  margin-top: 1rem;
}
.cid-tIGnFE1W1g .title {
  margin-bottom: 2rem;
}
.cid-tIGnFE1W1g .mbr-section-subtitle {
  color: #000000;
}
.cid-tIGnFE1W1g textarea.form-control {
  min-height: 188px;
}
.cid-tIGnFE1W1g LABEL {
  color: #232323;
  display: initial;
}
.cid-tIGnFE1W1g .mbr-section-terms {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-tIGnFE1W1g .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tIGnFE1W1g .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tIGnFE1W1g .mbr-section-gdpr {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-tIGnFE1W1g .alert {
  margin-bottom: 0;
}
.cid-tIGnFE1W1g .alert-success {
  background-color: #70c770;
}
.cid-tIGnFE1W1g .alert-danger {
  background-color: #ff4a52;
}
.cid-tIGnFE1W1g .btn {
  display: inline-flex;
}
.cid-tIGnFE1W1g .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tIGnFE1W1g .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-tIGnFE1W1g .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-tIGnFE1W1g input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tIGnFE1W1g input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tIGnFE1W1g input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tIGnFE1W1g h2 {
  font-size: 3rem;
  text-shadow: 2px 2px 2px #000000;
  color: #ffffff;
}
@media (max-width: 520px) {
  .cid-tIGnFE1W1g h2 {
    line-height: 3rem;
  }
}
.cid-tIGmbQHXVa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tIGmbQHXVa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIGmbQHXVa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIGmbQHXVa .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tIGmbQHXVa .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tIGmbQHXVa .container {
    padding: 0 26px;
  }
}
.cid-tIGmbQHXVa .row {
  padding: 60px;
  margin: 0;
  border: 1px solid #ffffff;
  padding: 120px 60px 60px 30px;
}
@media (max-width: 992px) {
  .cid-tIGmbQHXVa .row {
    padding: 120px 30px;
  }
}
@media (max-width: 992px) {
  .cid-tIGmbQHXVa .row {
    padding: 26px;
  }
}
.cid-tIGmbQHXVa .title-wrapper {
  margin-bottom: 50px;
}
.cid-tIGmbQHXVa .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tIGmbQHXVa .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-tIGmbQHXVa .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIGmbQHXVa .title-wrapper .title-wrap .logo-wrap {
  margin: 0 16px;
}
.cid-tIGmbQHXVa .title-wrapper .title-wrap .logo-wrap img {
  width: 110px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .cid-tIGmbQHXVa .title-wrapper .title-wrap .logo-wrap img {
    margin: 0 auto;
  }
}
.cid-tIGmbQHXVa .nav-wrapper {
  margin-bottom: 50px;
}
.cid-tIGmbQHXVa .nav-wrapper .list {
  display: inline-flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tIGmbQHXVa .nav-wrapper .list {
    display: block;
  }
}
.cid-tIGmbQHXVa .nav-wrapper .list .item-wrap {
  margin-right: 56px;
  margin-bottom: 0;
  padding-bottom: 2px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIGmbQHXVa .nav-wrapper .list .item-wrap {
    margin: 0;
  }
}
.cid-tIGmbQHXVa .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-tIGmbQHXVa .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e11516;
  transition: all 0.3s ease-in-out;
}
.cid-tIGmbQHXVa .nav-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-tIGmbQHXVa .soc-wrapper {
  margin-bottom: 50px;
}
.cid-tIGmbQHXVa .soc-wrapper .social-row {
  display: inline-flex;
}
.cid-tIGmbQHXVa .soc-wrapper .social-row .soc-item {
  margin-left: 24px;
}
.cid-tIGmbQHXVa .soc-wrapper .social-row .soc-item:first-child {
  margin-left: 0;
}
.cid-tIGmbQHXVa .soc-wrapper .social-row .soc-item a:hover .mbr-iconfont {
  display: inline-flex;
  transform: translateY(-5px);
}
.cid-tIGmbQHXVa .soc-wrapper .social-row .soc-item a .mbr-iconfont {
  font-size: 22px;
  transition: all 0.3s ease-in-out;
  color: #00846d;
}
.cid-tIGmbQHXVa .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-tIGmbQHXVa .mbr-section-title,
.cid-tIGmbQHXVa .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tIGmbQHXVa .list {
  color: #ffffff;
}
.cid-tIGmbQHXVa .copyright {
  color: #cacaca;
  text-align: center;
}
.cid-tIGmbQHXVa .list,
.cid-tIGmbQHXVa .nav-wrapper,
.cid-tIGmbQHXVa .soc-wrapper {
  text-align: center;
}
.cid-tIGmbR81mE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e11516;
}
.cid-tIGmbR81mE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIGmbR81mE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIGmbR81mE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tIXs1iR2rx {
  z-index: 1000;
  width: 100%;
}
.cid-tIXs1iR2rx nav.navbar {
  position: fixed;
}
.cid-tIXs1iR2rx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIXs1iR2rx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIXs1iR2rx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIXs1iR2rx .dropdown-item:hover,
.cid-tIXs1iR2rx .dropdown-item:focus {
  background: #e11516 !important;
  color: white !important;
}
.cid-tIXs1iR2rx .dropdown-item:hover span {
  color: white;
}
.cid-tIXs1iR2rx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIXs1iR2rx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIXs1iR2rx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIXs1iR2rx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIXs1iR2rx .nav-link {
  position: relative;
}
.cid-tIXs1iR2rx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIXs1iR2rx .container {
    flex-wrap: nowrap;
  }
}
.cid-tIXs1iR2rx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIXs1iR2rx .dropdown-menu,
.cid-tIXs1iR2rx .navbar.opened {
  background: #000000 !important;
}
.cid-tIXs1iR2rx .nav-item:focus,
.cid-tIXs1iR2rx .nav-link:focus {
  outline: none;
}
.cid-tIXs1iR2rx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIXs1iR2rx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIXs1iR2rx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIXs1iR2rx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIXs1iR2rx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIXs1iR2rx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIXs1iR2rx .navbar {
  min-height: 120px;
  -webkit-box-shadow: 0px 0px 25px 10px #000000;
  -moz-box-shadow: 0px 0px 25px 10px #000000;
  box-shadow: 0px 0px 25px 10px #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tIXs1iR2rx .navbar.opened {
  transition: all 0.3s;
}
.cid-tIXs1iR2rx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIXs1iR2rx .navbar .navbar-logo img {
  width: auto;
}
.cid-tIXs1iR2rx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIXs1iR2rx .navbar.collapsed {
  justify-content: center;
}
.cid-tIXs1iR2rx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIXs1iR2rx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIXs1iR2rx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIXs1iR2rx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIXs1iR2rx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIXs1iR2rx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIXs1iR2rx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIXs1iR2rx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIXs1iR2rx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIXs1iR2rx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIXs1iR2rx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIXs1iR2rx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIXs1iR2rx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIXs1iR2rx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIXs1iR2rx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIXs1iR2rx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIXs1iR2rx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIXs1iR2rx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIXs1iR2rx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIXs1iR2rx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIXs1iR2rx .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIXs1iR2rx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIXs1iR2rx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIXs1iR2rx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIXs1iR2rx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIXs1iR2rx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIXs1iR2rx .dropdown-item.active,
.cid-tIXs1iR2rx .dropdown-item:active {
  background-color: transparent;
}
.cid-tIXs1iR2rx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIXs1iR2rx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIXs1iR2rx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIXs1iR2rx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tIXs1iR2rx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIXs1iR2rx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIXs1iR2rx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIXs1iR2rx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIXs1iR2rx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIXs1iR2rx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f91919;
}
.cid-tIXs1iR2rx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIXs1iR2rx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIXs1iR2rx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIXs1iR2rx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIXs1iR2rx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIXs1iR2rx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIXs1iR2rx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIXs1iR2rx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIXs1iR2rx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIXs1iR2rx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIXs1iR2rx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIXs1iR2rx .navbar {
    height: 70px;
  }
  .cid-tIXs1iR2rx .navbar.opened {
    height: auto;
  }
  .cid-tIXs1iR2rx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIXs1jeeKO {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/david-garofalo-contact-the-author-david-garofalo-1.jpg");
}
.cid-tIXs1jeeKO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXs1jeeKO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXs1jeeKO hr {
  margin: 1rem 0;
  color: #ffffff;
  opacity: .80;
  width: 85%;
}
.cid-tIXs1jeeKO h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 2px #000000;
}
.cid-tIXs1jeeKO h2 {
  font-size: 2rem;
  text-shadow: 2px 2px 2px #000000;
  font-weight: normal;
}
.cid-tIXs1jeeKO P {
  font-size: 1.3rem;
  text-shadow: 2px 2px 2px #000000;
}
@media (max-width: 520px) {
  .cid-tIXs1jeeKO h1 {
    font-size: 40px !important;
    line-height: 3rem;
  }
  .cid-tIXs1jeeKO h2 {
    font-size: 25px !important;
    line-height: 1.5rem;
  }
  .cid-tIXs1jeeKO p {
    font-size: 15px !important;
  }
}
.cid-tIXs1jyTKg {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIXs1jyTKg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXs1jyTKg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXs1jyTKg .mbr-section-title {
  text-align: left;
}
.cid-tIXs1jyTKg .mbr-section-subtitle {
  text-align: left;
}
.cid-tIXs1jyTKg hr {
  margin: 1rem 0;
  color: #e11516;
  opacity: .80;
}
.cid-tIXs1jyTKg b,
.cid-tIXs1jyTKg strong {
  font-size: 2.5rem;
}
.cid-tIXs1jyTKg h4 {
  font-size: 1.3rem;
}
.cid-tIXs1jyTKg span {
  font-weight: 800;
  font-style: italic;
}
.cid-tIXs1jOtU9 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #00846d;
}
.cid-tIXs1jOtU9 .mbr-text,
.cid-tIXs1jOtU9 blockquote {
  color: #767676;
}
.cid-tIXs1jOtU9 .mbr-text {
  text-align: center;
  color: #2e2e2e;
}
.cid-tIXs1jOtU9 .mbr-text B {
  color: #efefef;
}
.cid-tIXs1jOtU9 .custom-shape-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-tIXs1jOtU9 .custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 40px;
}
.cid-tIXs1jOtU9 .custom-shape-divider .shape-fill {
  fill: #ffffff;
}
.cid-tIXs1k03iw {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #00846d;
}
.cid-tIXs1k03iw .showAlerts {
  display: block !important;
}
.cid-tIXs1k03iw .rowflexrev {
  display: -webkit-flex;
}
.cid-tIXs1k03iw .ws-form-alerts {
  margin-top: 1rem;
}
.cid-tIXs1k03iw .title {
  margin-bottom: 2rem;
}
.cid-tIXs1k03iw .mbr-section-subtitle {
  color: #000000;
}
.cid-tIXs1k03iw textarea.form-control {
  min-height: 188px;
}
.cid-tIXs1k03iw LABEL {
  color: #232323;
  display: initial;
}
.cid-tIXs1k03iw .mbr-section-terms {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-tIXs1k03iw .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tIXs1k03iw .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tIXs1k03iw .mbr-section-gdpr {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-tIXs1k03iw .alert {
  margin-bottom: 0;
}
.cid-tIXs1k03iw .alert-success {
  background-color: #70c770;
}
.cid-tIXs1k03iw .alert-danger {
  background-color: #ff4a52;
}
.cid-tIXs1k03iw .btn {
  display: inline-flex;
}
.cid-tIXs1k03iw .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tIXs1k03iw .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-tIXs1k03iw .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-tIXs1k03iw input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tIXs1k03iw input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tIXs1k03iw input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tIXs1k03iw h2 {
  font-size: 3rem;
  text-shadow: 2px 2px 2px #000000;
}
.cid-tIXs1k03iw H2 {
  color: #ffffff;
}
.cid-tIXs1kolBY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tIXs1kolBY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXs1kolBY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXs1kolBY .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tIXs1kolBY .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tIXs1kolBY .container {
    padding: 0 26px;
  }
}
.cid-tIXs1kolBY .row {
  padding: 60px;
  margin: 0;
  border: 1px solid #ffffff;
  padding: 120px 60px 60px 30px;
}
@media (max-width: 992px) {
  .cid-tIXs1kolBY .row {
    padding: 120px 30px;
  }
}
@media (max-width: 992px) {
  .cid-tIXs1kolBY .row {
    padding: 26px;
  }
}
.cid-tIXs1kolBY .title-wrapper {
  margin-bottom: 50px;
}
.cid-tIXs1kolBY .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tIXs1kolBY .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-tIXs1kolBY .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIXs1kolBY .title-wrapper .title-wrap .logo-wrap {
  margin: 0 16px;
}
.cid-tIXs1kolBY .title-wrapper .title-wrap .logo-wrap img {
  width: 110px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .cid-tIXs1kolBY .title-wrapper .title-wrap .logo-wrap img {
    margin: 0 auto;
  }
}
.cid-tIXs1kolBY .nav-wrapper {
  margin-bottom: 50px;
}
.cid-tIXs1kolBY .nav-wrapper .list {
  display: inline-flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tIXs1kolBY .nav-wrapper .list {
    display: block;
  }
}
.cid-tIXs1kolBY .nav-wrapper .list .item-wrap {
  margin-right: 56px;
  margin-bottom: 0;
  padding-bottom: 2px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIXs1kolBY .nav-wrapper .list .item-wrap {
    margin: 0;
  }
}
.cid-tIXs1kolBY .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-tIXs1kolBY .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e11516;
  transition: all 0.3s ease-in-out;
}
.cid-tIXs1kolBY .nav-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-tIXs1kolBY .soc-wrapper {
  margin-bottom: 50px;
}
.cid-tIXs1kolBY .soc-wrapper .social-row {
  display: inline-flex;
}
.cid-tIXs1kolBY .soc-wrapper .social-row .soc-item {
  margin-left: 24px;
}
.cid-tIXs1kolBY .soc-wrapper .social-row .soc-item:first-child {
  margin-left: 0;
}
.cid-tIXs1kolBY .soc-wrapper .social-row .soc-item a:hover .mbr-iconfont {
  display: inline-flex;
  transform: translateY(-5px);
}
.cid-tIXs1kolBY .soc-wrapper .social-row .soc-item a .mbr-iconfont {
  font-size: 22px;
  transition: all 0.3s ease-in-out;
  color: #00846d;
}
.cid-tIXs1kolBY .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-tIXs1kolBY .mbr-section-title,
.cid-tIXs1kolBY .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tIXs1kolBY .list {
  color: #ffffff;
}
.cid-tIXs1kolBY .copyright {
  color: #cacaca;
  text-align: center;
}
.cid-tIXs1kolBY .list,
.cid-tIXs1kolBY .nav-wrapper,
.cid-tIXs1kolBY .soc-wrapper {
  text-align: center;
}
.cid-tIXs1kKuqF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e11516;
}
.cid-tIXs1kKuqF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXs1kKuqF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXs1kKuqF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tIXLmWVTRi {
  z-index: 1000;
  width: 100%;
}
.cid-tIXLmWVTRi nav.navbar {
  position: fixed;
}
.cid-tIXLmWVTRi .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIXLmWVTRi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIXLmWVTRi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIXLmWVTRi .dropdown-item:hover,
.cid-tIXLmWVTRi .dropdown-item:focus {
  background: #e11516 !important;
  color: white !important;
}
.cid-tIXLmWVTRi .dropdown-item:hover span {
  color: white;
}
.cid-tIXLmWVTRi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIXLmWVTRi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIXLmWVTRi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIXLmWVTRi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIXLmWVTRi .nav-link {
  position: relative;
}
.cid-tIXLmWVTRi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIXLmWVTRi .container {
    flex-wrap: nowrap;
  }
}
.cid-tIXLmWVTRi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIXLmWVTRi .dropdown-menu,
.cid-tIXLmWVTRi .navbar.opened {
  background: #000000 !important;
}
.cid-tIXLmWVTRi .nav-item:focus,
.cid-tIXLmWVTRi .nav-link:focus {
  outline: none;
}
.cid-tIXLmWVTRi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIXLmWVTRi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIXLmWVTRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIXLmWVTRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIXLmWVTRi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIXLmWVTRi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIXLmWVTRi .navbar {
  min-height: 120px;
  -webkit-box-shadow: 0px 0px 25px 10px #000000;
  -moz-box-shadow: 0px 0px 25px 10px #000000;
  box-shadow: 0px 0px 25px 10px #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tIXLmWVTRi .navbar.opened {
  transition: all 0.3s;
}
.cid-tIXLmWVTRi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIXLmWVTRi .navbar .navbar-logo img {
  width: auto;
}
.cid-tIXLmWVTRi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIXLmWVTRi .navbar.collapsed {
  justify-content: center;
}
.cid-tIXLmWVTRi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIXLmWVTRi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIXLmWVTRi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIXLmWVTRi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIXLmWVTRi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIXLmWVTRi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIXLmWVTRi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIXLmWVTRi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIXLmWVTRi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIXLmWVTRi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIXLmWVTRi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIXLmWVTRi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIXLmWVTRi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIXLmWVTRi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIXLmWVTRi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIXLmWVTRi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIXLmWVTRi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIXLmWVTRi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIXLmWVTRi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIXLmWVTRi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIXLmWVTRi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIXLmWVTRi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIXLmWVTRi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIXLmWVTRi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIXLmWVTRi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIXLmWVTRi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIXLmWVTRi .dropdown-item.active,
.cid-tIXLmWVTRi .dropdown-item:active {
  background-color: transparent;
}
.cid-tIXLmWVTRi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIXLmWVTRi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIXLmWVTRi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIXLmWVTRi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tIXLmWVTRi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIXLmWVTRi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIXLmWVTRi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIXLmWVTRi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIXLmWVTRi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIXLmWVTRi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f91919;
}
.cid-tIXLmWVTRi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIXLmWVTRi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIXLmWVTRi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIXLmWVTRi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIXLmWVTRi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIXLmWVTRi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIXLmWVTRi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIXLmWVTRi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIXLmWVTRi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIXLmWVTRi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIXLmWVTRi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIXLmWVTRi .navbar {
    height: 70px;
  }
  .cid-tIXLmWVTRi .navbar.opened {
    height: auto;
  }
  .cid-tIXLmWVTRi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIXLmXmWAb {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/david-garofalo-contact-the-author-david-vs-goliath-.jpg");
}
.cid-tIXLmXmWAb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXLmXmWAb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXLmXmWAb hr {
  margin: 1rem 0;
  color: #ffffff;
  opacity: .80;
  width: 85%;
}
.cid-tIXLmXmWAb h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 2px #000000;
}
.cid-tIXLmXmWAb h2 {
  font-size: 2rem;
  text-shadow: 2px 2px 2px #000000;
  font-weight: normal;
}
.cid-tIXLmXmWAb P {
  font-size: 1.3rem;
  text-shadow: 2px 2px 2px #000000;
}
@media (max-width: 520px) {
  .cid-tIXLmXmWAb h1 {
    font-size: 40px !important;
    line-height: 3rem;
  }
  .cid-tIXLmXmWAb h2 {
    font-size: 25px !important;
    line-height: 1.5rem;
  }
  .cid-tIXLmXmWAb p {
    font-size: 15px !important;
  }
}
.cid-tIXLmXIlFB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIXLmXIlFB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXLmXIlFB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXLmXIlFB .mbr-section-title {
  text-align: left;
}
.cid-tIXLmXIlFB .mbr-section-subtitle {
  text-align: left;
}
.cid-tIXLmXIlFB hr {
  margin: 1rem 0;
  color: #e11516;
  opacity: .80;
}
.cid-tIXLmXIlFB b,
.cid-tIXLmXIlFB strong {
  font-size: 2.5rem;
}
.cid-tIXLmXIlFB h4 {
  font-size: 1.3rem;
}
.cid-tIXLmXIlFB span {
  font-weight: 800;
  font-style: italic;
}
.cid-tIXLmYzecb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tIXLmYzecb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXLmYzecb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXLmYzecb .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tIXLmYzecb .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tIXLmYzecb .container {
    padding: 0 26px;
  }
}
.cid-tIXLmYzecb .row {
  padding: 60px;
  margin: 0;
  border: 1px solid #ffffff;
  padding: 120px 60px 60px 30px;
}
@media (max-width: 992px) {
  .cid-tIXLmYzecb .row {
    padding: 120px 30px;
  }
}
@media (max-width: 992px) {
  .cid-tIXLmYzecb .row {
    padding: 26px;
  }
}
.cid-tIXLmYzecb .title-wrapper {
  margin-bottom: 50px;
}
.cid-tIXLmYzecb .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tIXLmYzecb .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-tIXLmYzecb .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIXLmYzecb .title-wrapper .title-wrap .logo-wrap {
  margin: 0 16px;
}
.cid-tIXLmYzecb .title-wrapper .title-wrap .logo-wrap img {
  width: 110px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .cid-tIXLmYzecb .title-wrapper .title-wrap .logo-wrap img {
    margin: 0 auto;
  }
}
.cid-tIXLmYzecb .nav-wrapper {
  margin-bottom: 50px;
}
.cid-tIXLmYzecb .nav-wrapper .list {
  display: inline-flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tIXLmYzecb .nav-wrapper .list {
    display: block;
  }
}
.cid-tIXLmYzecb .nav-wrapper .list .item-wrap {
  margin-right: 56px;
  margin-bottom: 0;
  padding-bottom: 2px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIXLmYzecb .nav-wrapper .list .item-wrap {
    margin: 0;
  }
}
.cid-tIXLmYzecb .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-tIXLmYzecb .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e11516;
  transition: all 0.3s ease-in-out;
}
.cid-tIXLmYzecb .nav-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-tIXLmYzecb .soc-wrapper {
  margin-bottom: 50px;
}
.cid-tIXLmYzecb .soc-wrapper .social-row {
  display: inline-flex;
}
.cid-tIXLmYzecb .soc-wrapper .social-row .soc-item {
  margin-left: 24px;
}
.cid-tIXLmYzecb .soc-wrapper .social-row .soc-item:first-child {
  margin-left: 0;
}
.cid-tIXLmYzecb .soc-wrapper .social-row .soc-item a:hover .mbr-iconfont {
  display: inline-flex;
  transform: translateY(-5px);
}
.cid-tIXLmYzecb .soc-wrapper .social-row .soc-item a .mbr-iconfont {
  font-size: 22px;
  transition: all 0.3s ease-in-out;
  color: #00846d;
}
.cid-tIXLmYzecb .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-tIXLmYzecb .mbr-section-title,
.cid-tIXLmYzecb .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tIXLmYzecb .list {
  color: #ffffff;
}
.cid-tIXLmYzecb .copyright {
  color: #cacaca;
  text-align: center;
}
.cid-tIXLmYzecb .list,
.cid-tIXLmYzecb .nav-wrapper,
.cid-tIXLmYzecb .soc-wrapper {
  text-align: center;
}
.cid-tIXLmYXxuw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e11516;
}
.cid-tIXLmYXxuw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXLmYXxuw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXLmYXxuw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tIXOKZoAOX {
  z-index: 1000;
  width: 100%;
}
.cid-tIXOKZoAOX nav.navbar {
  position: fixed;
}
.cid-tIXOKZoAOX .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIXOKZoAOX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIXOKZoAOX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIXOKZoAOX .dropdown-item:hover,
.cid-tIXOKZoAOX .dropdown-item:focus {
  background: #e11516 !important;
  color: white !important;
}
.cid-tIXOKZoAOX .dropdown-item:hover span {
  color: white;
}
.cid-tIXOKZoAOX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIXOKZoAOX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIXOKZoAOX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIXOKZoAOX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIXOKZoAOX .nav-link {
  position: relative;
}
.cid-tIXOKZoAOX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIXOKZoAOX .container {
    flex-wrap: nowrap;
  }
}
.cid-tIXOKZoAOX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIXOKZoAOX .dropdown-menu,
.cid-tIXOKZoAOX .navbar.opened {
  background: #000000 !important;
}
.cid-tIXOKZoAOX .nav-item:focus,
.cid-tIXOKZoAOX .nav-link:focus {
  outline: none;
}
.cid-tIXOKZoAOX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIXOKZoAOX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIXOKZoAOX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIXOKZoAOX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIXOKZoAOX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIXOKZoAOX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIXOKZoAOX .navbar {
  min-height: 120px;
  -webkit-box-shadow: 0px 0px 25px 10px #000000;
  -moz-box-shadow: 0px 0px 25px 10px #000000;
  box-shadow: 0px 0px 25px 10px #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tIXOKZoAOX .navbar.opened {
  transition: all 0.3s;
}
.cid-tIXOKZoAOX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIXOKZoAOX .navbar .navbar-logo img {
  width: auto;
}
.cid-tIXOKZoAOX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIXOKZoAOX .navbar.collapsed {
  justify-content: center;
}
.cid-tIXOKZoAOX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIXOKZoAOX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIXOKZoAOX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIXOKZoAOX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIXOKZoAOX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIXOKZoAOX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIXOKZoAOX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIXOKZoAOX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIXOKZoAOX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIXOKZoAOX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIXOKZoAOX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIXOKZoAOX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIXOKZoAOX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIXOKZoAOX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIXOKZoAOX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIXOKZoAOX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIXOKZoAOX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIXOKZoAOX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIXOKZoAOX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIXOKZoAOX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIXOKZoAOX .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIXOKZoAOX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIXOKZoAOX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIXOKZoAOX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIXOKZoAOX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIXOKZoAOX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIXOKZoAOX .dropdown-item.active,
.cid-tIXOKZoAOX .dropdown-item:active {
  background-color: transparent;
}
.cid-tIXOKZoAOX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIXOKZoAOX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIXOKZoAOX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIXOKZoAOX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tIXOKZoAOX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIXOKZoAOX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIXOKZoAOX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIXOKZoAOX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIXOKZoAOX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIXOKZoAOX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f91919;
}
.cid-tIXOKZoAOX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIXOKZoAOX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIXOKZoAOX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIXOKZoAOX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIXOKZoAOX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIXOKZoAOX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIXOKZoAOX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIXOKZoAOX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIXOKZoAOX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIXOKZoAOX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIXOKZoAOX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIXOKZoAOX .navbar {
    height: 70px;
  }
  .cid-tIXOKZoAOX .navbar.opened {
    height: auto;
  }
  .cid-tIXOKZoAOX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIXOKZK5Tf {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/david-garofalo-successful-email-1.jpg");
}
.cid-tIXOKZK5Tf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXOKZK5Tf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXOKZK5Tf hr {
  margin: 1rem 0;
  color: #ffffff;
  opacity: .80;
  width: 85%;
}
.cid-tIXOKZK5Tf h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 2px #000000;
}
.cid-tIXOKZK5Tf h2 {
  font-size: 2rem;
  text-shadow: 2px 2px 2px #000000;
  font-weight: normal;
}
.cid-tIXOKZK5Tf P {
  font-size: 1.3rem;
  text-shadow: 2px 2px 2px #000000;
}
@media (max-width: 520px) {
  .cid-tIXOKZK5Tf h1 {
    font-size: 40px !important;
    line-height: 3rem;
  }
  .cid-tIXOKZK5Tf h2 {
    font-size: 25px !important;
    line-height: 1.5rem;
  }
  .cid-tIXOKZK5Tf p {
    font-size: 15px !important;
  }
}
.cid-tIXOKZZYcX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIXOKZZYcX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXOKZZYcX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXOKZZYcX .mbr-section-title {
  text-align: left;
}
.cid-tIXOKZZYcX .mbr-section-subtitle {
  text-align: left;
}
.cid-tIXOKZZYcX hr {
  margin: 1rem 0;
  color: #e11516;
  opacity: .80;
}
.cid-tIXOKZZYcX b,
.cid-tIXOKZZYcX strong {
  font-size: 2.5rem;
}
.cid-tIXOKZZYcX h4 {
  font-size: 1.3rem;
}
.cid-tIXOKZZYcX span {
  font-weight: 800;
  font-style: italic;
}
.cid-tIXOL0f41s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tIXOL0f41s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXOL0f41s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXOL0f41s .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tIXOL0f41s .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tIXOL0f41s .container {
    padding: 0 26px;
  }
}
.cid-tIXOL0f41s .row {
  padding: 60px;
  margin: 0;
  border: 1px solid #ffffff;
  padding: 120px 60px 60px 30px;
}
@media (max-width: 992px) {
  .cid-tIXOL0f41s .row {
    padding: 120px 30px;
  }
}
@media (max-width: 992px) {
  .cid-tIXOL0f41s .row {
    padding: 26px;
  }
}
.cid-tIXOL0f41s .title-wrapper {
  margin-bottom: 50px;
}
.cid-tIXOL0f41s .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tIXOL0f41s .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-tIXOL0f41s .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIXOL0f41s .title-wrapper .title-wrap .logo-wrap {
  margin: 0 16px;
}
.cid-tIXOL0f41s .title-wrapper .title-wrap .logo-wrap img {
  width: 110px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .cid-tIXOL0f41s .title-wrapper .title-wrap .logo-wrap img {
    margin: 0 auto;
  }
}
.cid-tIXOL0f41s .nav-wrapper {
  margin-bottom: 50px;
}
.cid-tIXOL0f41s .nav-wrapper .list {
  display: inline-flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tIXOL0f41s .nav-wrapper .list {
    display: block;
  }
}
.cid-tIXOL0f41s .nav-wrapper .list .item-wrap {
  margin-right: 56px;
  margin-bottom: 0;
  padding-bottom: 2px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIXOL0f41s .nav-wrapper .list .item-wrap {
    margin: 0;
  }
}
.cid-tIXOL0f41s .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-tIXOL0f41s .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e11516;
  transition: all 0.3s ease-in-out;
}
.cid-tIXOL0f41s .nav-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-tIXOL0f41s .soc-wrapper {
  margin-bottom: 50px;
}
.cid-tIXOL0f41s .soc-wrapper .social-row {
  display: inline-flex;
}
.cid-tIXOL0f41s .soc-wrapper .social-row .soc-item {
  margin-left: 24px;
}
.cid-tIXOL0f41s .soc-wrapper .social-row .soc-item:first-child {
  margin-left: 0;
}
.cid-tIXOL0f41s .soc-wrapper .social-row .soc-item a:hover .mbr-iconfont {
  display: inline-flex;
  transform: translateY(-5px);
}
.cid-tIXOL0f41s .soc-wrapper .social-row .soc-item a .mbr-iconfont {
  font-size: 22px;
  transition: all 0.3s ease-in-out;
  color: #00846d;
}
.cid-tIXOL0f41s .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-tIXOL0f41s .mbr-section-title,
.cid-tIXOL0f41s .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tIXOL0f41s .list {
  color: #ffffff;
}
.cid-tIXOL0f41s .copyright {
  color: #cacaca;
  text-align: center;
}
.cid-tIXOL0f41s .list,
.cid-tIXOL0f41s .nav-wrapper,
.cid-tIXOL0f41s .soc-wrapper {
  text-align: center;
}
.cid-tIXOL0z4a5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e11516;
}
.cid-tIXOL0z4a5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIXOL0z4a5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIXOL0z4a5 .mbr-section-subtitle {
  color: #ffffff;
}
