body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((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: #d21a1a !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #d21a1a !important;
  border-color: #d21a1a !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: #851010 !important;
  border-color: #851010 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #851010 !important;
  border-color: #851010 !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: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #d21a1a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #851010 !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: #d21a1a !important;
  border-color: #d21a1a !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: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !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: #ff9966 !important;
  border-color: #ff9966 !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: #d21a1a !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #770f0f !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: #ff5500 !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: #d21a1a;
}
.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: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #d21a1a;
  border-color: #d21a1a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #d21a1a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f7c1c1;
}
.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: #ffffff;
}
/* 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: #d21a1a !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: #d21a1a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d21a1a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #d21a1a;
}
.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: #d21a1a;
  border-bottom-color: #d21a1a;
}
.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: #d21a1a !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='%23d21a1a' %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;
}
.cid-tPhzSFtQDU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tPhzSFtQDU nav.navbar {
  position: fixed;
}
.cid-tPhzSFtQDU .nav-link:hover,
.cid-tPhzSFtQDU .dropdown-item:hover {
  color: #fff !important;
}
.cid-tPhzSFtQDU .nav-item:hover {
  transition: background-color 1.5s ease;
  background-color: #3e69ec;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPhzSFtQDU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPhzSFtQDU .dropdown-item:hover,
.cid-tPhzSFtQDU .dropdown-item:focus {
  background: #d21a1a !important;
  color: white !important;
}
.cid-tPhzSFtQDU .dropdown-item:hover span {
  color: white;
}
.cid-tPhzSFtQDU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPhzSFtQDU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPhzSFtQDU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPhzSFtQDU .nav-link {
  position: relative;
}
.cid-tPhzSFtQDU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown-menu,
.cid-tPhzSFtQDU .navbar.opened {
  background: #ffffff !important;
}
.cid-tPhzSFtQDU .nav-item:focus,
.cid-tPhzSFtQDU .nav-link:focus {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPhzSFtQDU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPhzSFtQDU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.opened {
  transition: all 0.3s;
}
.cid-tPhzSFtQDU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPhzSFtQDU .navbar .navbar-logo img {
  width: auto;
}
.cid-tPhzSFtQDU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPhzSFtQDU .navbar.collapsed {
  justify-content: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPhzSFtQDU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPhzSFtQDU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPhzSFtQDU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPhzSFtQDU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPhzSFtQDU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPhzSFtQDU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPhzSFtQDU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPhzSFtQDU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown-item.active,
.cid-tPhzSFtQDU .dropdown-item:active {
  background-color: transparent;
}
.cid-tPhzSFtQDU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPhzSFtQDU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPhzSFtQDU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPhzSFtQDU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPhzSFtQDU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tPhzSFtQDU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar {
    height: 70px;
  }
  .cid-tPhzSFtQDU .navbar.opened {
    height: auto;
  }
  .cid-tPhzSFtQDU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPhB1caLzL {
  background-image: url("../../../assets/images/track-coach-with-stopwatch.jpg");
}
.cid-tPhB1caLzL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPhB1caLzL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPhB1caLzL .mbr-section-title {
  color: #000000;
}
.cid-tPiGx82UeE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tPiGx82UeE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPiGx82UeE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPiGx82UeE .mbr-section-subtitle {
  color: #d21a1a;
}
.cid-tPlyMyZIvx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tPlyMyZIvx img,
.cid-tPlyMyZIvx .item-img {
  width: 100%;
}
.cid-tPlyMyZIvx .item:focus,
.cid-tPlyMyZIvx span:focus {
  outline: none;
}
.cid-tPlyMyZIvx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tPlyMyZIvx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tPlyMyZIvx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tPlyMyZIvx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tPlyMyZIvx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tPlyMyZIvx .mbr-section-title {
  color: #232323;
}
.cid-tPlyMyZIvx .mbr-text,
.cid-tPlyMyZIvx .mbr-section-btn {
  text-align: left;
}
.cid-tPlyMyZIvx .item-title {
  text-align: left;
}
.cid-tPlyMyZIvx .item-subtitle {
  text-align: center;
}
.cid-tPlDRQNy0Y {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background: #fafafa;
}
.cid-tPlDRQNy0Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPlDRQNy0Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPlDRQNy0Y .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tPlDRQNy0Y .team-card:hover {
  transform: translateY(-10px);
}
.cid-tPlDRQNy0Y .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tPlDRQNy0Y .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tPlDRQNy0Y .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tPlDRQNy0Y .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tPlDRQNy0Y .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tPlDRQNy0Y .social-row {
  text-align: center;
}
.cid-tPlDRQNy0Y .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tPlDRQNy0Y .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tPlDRQNy0Y .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tPlDRQNy0Y .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tPlDRQNy0Y img.round {
  border-radius: 250px;
  height: 345px;
}
.cid-tPiMrfdFKH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPiMrfdFKH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPiMrfdFKH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPiMrfdFKH .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tPiMrfdFKH .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tPiMrfdFKH .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tPiMrfdFKH .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tPiMrfdFKH .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tPiMrfdFKH .bg-instagram:hover {
  background: #bd005c;
}
.cid-tPiMrfdFKH .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-tPiMrfdFKH .bg-linkedin:hover {
  background: #005582;
}
.cid-tPiMrfdFKH .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-tPiMrfdFKH .bg-tiktok:hover {
  background: #000000;
}
.cid-tPiMrfdFKH .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tPiMrfdFKH [class^="socicon-"]:before,
.cid-tPiMrfdFKH [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tPiOtaH0HI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tPiOtaH0HI .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-tPhzSFtQDU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tPhzSFtQDU nav.navbar {
  position: fixed;
}
.cid-tPhzSFtQDU .nav-link:hover,
.cid-tPhzSFtQDU .dropdown-item:hover {
  color: #fff !important;
}
.cid-tPhzSFtQDU .nav-item:hover {
  transition: background-color 1.5s ease;
  background-color: #3e69ec;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPhzSFtQDU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPhzSFtQDU .dropdown-item:hover,
.cid-tPhzSFtQDU .dropdown-item:focus {
  background: #d21a1a !important;
  color: white !important;
}
.cid-tPhzSFtQDU .dropdown-item:hover span {
  color: white;
}
.cid-tPhzSFtQDU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPhzSFtQDU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPhzSFtQDU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPhzSFtQDU .nav-link {
  position: relative;
}
.cid-tPhzSFtQDU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown-menu,
.cid-tPhzSFtQDU .navbar.opened {
  background: #ffffff !important;
}
.cid-tPhzSFtQDU .nav-item:focus,
.cid-tPhzSFtQDU .nav-link:focus {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPhzSFtQDU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPhzSFtQDU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.opened {
  transition: all 0.3s;
}
.cid-tPhzSFtQDU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPhzSFtQDU .navbar .navbar-logo img {
  width: auto;
}
.cid-tPhzSFtQDU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPhzSFtQDU .navbar.collapsed {
  justify-content: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPhzSFtQDU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPhzSFtQDU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPhzSFtQDU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPhzSFtQDU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPhzSFtQDU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPhzSFtQDU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPhzSFtQDU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPhzSFtQDU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown-item.active,
.cid-tPhzSFtQDU .dropdown-item:active {
  background-color: transparent;
}
.cid-tPhzSFtQDU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPhzSFtQDU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPhzSFtQDU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPhzSFtQDU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPhzSFtQDU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tPhzSFtQDU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar {
    height: 70px;
  }
  .cid-tPhzSFtQDU .navbar.opened {
    height: auto;
  }
  .cid-tPhzSFtQDU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPhPS0YHEv {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tPhPS0YHEv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPhPS0YHEv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPhPJWsExN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tPhPJWsExN .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-tPhPJWsExN body {
  background: #eee;
  margin-top: 20px;
}
.cid-tPhPJWsExN .price-tabs {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px 0 rgba(39, 39, 39, 0.1);
  box-shadow: 0 5px 20px 0 rgba(39, 39, 39, 0.1);
  display: inline-block;
  padding: 7px;
  border-radius: 40px;
  border: 1px solid #d21a1a;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .cid-tPhPJWsExN .price-tabs {
    margin-bottom: 60px;
  }
  .cid-tPhPJWsExN .price-tabs .nav-link {
    padding: 12px 40px;
  }
  .cid-tPhPJWsExN .price-item {
    margin: 0 20px;
    padding-top: 20px;
  }
  .cid-tPhPJWsExN .price-item .price-top {
    margin: 0 -20px;
    border-radius: 20px;
  }
  .cid-tPhPJWsExN .price-item .price-top:after {
    border-radius: 0 0 20px 20px;
  }
}
.cid-tPhPJWsExN .price-tabs .nav-link {
  color: #d21a1a;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  padding: 12px 35px;
  display: inline-block;
  text-transform: capitalize;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cid-tPhPJWsExN .price-tabs .nav-link.active {
  background-color: #d21a1a;
  color: #fff;
}
.cid-tPhPJWsExN .price-item {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
  box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
  border-radius: 10px;
}
.cid-tPhPJWsExN .price-item .price-top {
  -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
  box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
  padding: 50px 0 25px;
  background-color: #d21a1a;
  border-radius: 10px;
  position: relative;
  z-index: 0;
  margin-bottom: 33px;
}
.cid-tPhPJWsExN .price-item .price-top:after {
  height: 50px;
  width: 100%;
  border-radius: 0 0 10px 10px;
  background-color: #d21a1a;
  position: absolute;
  content: '';
  left: 0;
  bottom: -17px;
  z-index: -1;
  -webkit-transform: skewY(5deg);
  transform: skewY(5deg);
  -webkit-box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);
  box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);
}
.cid-tPhPJWsExN .price-item .price-top * {
  color: #fff;
}
.cid-tPhPJWsExN .price-item .price-top h2 {
  font-weight: 700;
}
.cid-tPhPJWsExN .price-item .price-top h2 sup {
  top: 13px;
  left: -5px;
  font-size: 0.35em;
  font-weight: 500;
  vertical-align: top;
}
.cid-tPhPJWsExN .price-item .price-content {
  padding: 30px;
  padding-bottom: 40px;
}
.cid-tPhPJWsExN .price-item .price-content li {
  position: relative;
  margin-bottom: 15px;
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tPhPJWsExN .price-item .price-content li {
    padding-left: 28px;
    text-align: left;
  }
  .cid-tPhPJWsExN .price-item .price-content li i {
    position: absolute;
    left: 0;
    top: 3px;
  }
}
.cid-tPhPJWsExN .price-item .price-content .zmdi-check {
  color: #28a745;
}
.cid-tPhPJWsExN .price-item .price-content .zmdi-close {
  color: #f00;
}
.cid-tPhPJWsExN .popular {
  background-color: #d21a1a;
}
.cid-tPhPJWsExN .popular .price-top {
  background-color: #fff;
}
.cid-tPhPJWsExN .popular .price-top:after {
  background-color: #fff;
}
.cid-tPhPJWsExN .popular .price-top h4 {
  color: #101f41;
}
.cid-tPhPJWsExN .popular .price-top h2,
.cid-tPhPJWsExN .popular .price-top span,
.cid-tPhPJWsExN .popular .price-top sup {
  color: #d21a1a;
}
.cid-tPhPJWsExN .popular .price-content ul *,
.cid-tPhPJWsExN .popular .price-content ul .zmdi-close,
.cid-tPhPJWsExN .popular .price-content ul .zmdi-check {
  color: #fff !important;
}
.cid-tPhPJWsExN H2 {
  text-align: center;
}
.cid-tPhPJWsExN P {
  color: #000000;
}
.cid-tPhVDqO4Mh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tPhVDqO4Mh .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-tPhVDqO4Mh body {
  background: #eee;
  margin-top: 20px;
}
.cid-tPhVDqO4Mh .price-tabs {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px 0 rgba(39, 39, 39, 0.1);
  box-shadow: 0 5px 20px 0 rgba(39, 39, 39, 0.1);
  display: inline-block;
  padding: 7px;
  border-radius: 40px;
  border: 1px solid #d21a1a;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .cid-tPhVDqO4Mh .price-tabs {
    margin-bottom: 60px;
  }
  .cid-tPhVDqO4Mh .price-tabs .nav-link {
    padding: 12px 40px;
  }
  .cid-tPhVDqO4Mh .price-item {
    margin: 0 20px;
    padding-top: 20px;
  }
  .cid-tPhVDqO4Mh .price-item .price-top {
    margin: 0 -20px;
    border-radius: 20px;
  }
  .cid-tPhVDqO4Mh .price-item .price-top:after {
    border-radius: 0 0 20px 20px;
  }
}
.cid-tPhVDqO4Mh .price-tabs .nav-link {
  color: #d21a1a;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  padding: 12px 35px;
  display: inline-block;
  text-transform: capitalize;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cid-tPhVDqO4Mh .price-tabs .nav-link.active {
  background-color: #d21a1a;
  color: #fff;
}
.cid-tPhVDqO4Mh .price-item {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
  box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
  border-radius: 10px;
}
.cid-tPhVDqO4Mh .price-item .price-top {
  -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
  box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
  padding: 50px 0 25px;
  background-color: #d21a1a;
  border-radius: 10px;
  position: relative;
  z-index: 0;
  margin-bottom: 33px;
}
.cid-tPhVDqO4Mh .price-item .price-top:after {
  height: 50px;
  width: 100%;
  border-radius: 0 0 10px 10px;
  background-color: #d21a1a;
  position: absolute;
  content: '';
  left: 0;
  bottom: -17px;
  z-index: -1;
  -webkit-transform: skewY(5deg);
  transform: skewY(5deg);
  -webkit-box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);
  box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);
}
.cid-tPhVDqO4Mh .price-item .price-top * {
  color: #fff;
}
.cid-tPhVDqO4Mh .price-item .price-top h2 {
  font-weight: 700;
}
.cid-tPhVDqO4Mh .price-item .price-top h2 sup {
  top: 13px;
  left: -5px;
  font-size: 0.35em;
  font-weight: 500;
  vertical-align: top;
}
.cid-tPhVDqO4Mh .price-item .price-content {
  padding: 30px;
  padding-bottom: 40px;
}
.cid-tPhVDqO4Mh .price-item .price-content li {
  position: relative;
  margin-bottom: 15px;
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tPhVDqO4Mh .price-item .price-content li {
    padding-left: 28px;
    text-align: left;
  }
  .cid-tPhVDqO4Mh .price-item .price-content li i {
    position: absolute;
    left: 0;
    top: 3px;
  }
}
.cid-tPhVDqO4Mh .price-item .price-content .zmdi-check {
  color: #28a745;
}
.cid-tPhVDqO4Mh .price-item .price-content .zmdi-close {
  color: #f00;
}
.cid-tPhVDqO4Mh .popular {
  background-color: #d21a1a;
}
.cid-tPhVDqO4Mh .popular .price-top {
  background-color: #fff;
}
.cid-tPhVDqO4Mh .popular .price-top:after {
  background-color: #fff;
}
.cid-tPhVDqO4Mh .popular .price-top h4 {
  color: #101f41;
}
.cid-tPhVDqO4Mh .popular .price-top h2,
.cid-tPhVDqO4Mh .popular .price-top span,
.cid-tPhVDqO4Mh .popular .price-top sup {
  color: #d21a1a;
}
.cid-tPhVDqO4Mh .popular .price-content ul *,
.cid-tPhVDqO4Mh .popular .price-content ul .zmdi-close,
.cid-tPhVDqO4Mh .popular .price-content ul .zmdi-check {
  color: #fff !important;
}
.cid-tPhVDqO4Mh H2 {
  text-align: center;
}
.cid-tPhVDqO4Mh H4 {
  text-align: center;
}
.cid-tPiOtaH0HI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tPiOtaH0HI .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-tPhzSFtQDU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tPhzSFtQDU nav.navbar {
  position: fixed;
}
.cid-tPhzSFtQDU .nav-link:hover,
.cid-tPhzSFtQDU .dropdown-item:hover {
  color: #fff !important;
}
.cid-tPhzSFtQDU .nav-item:hover {
  transition: background-color 1.5s ease;
  background-color: #3e69ec;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPhzSFtQDU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPhzSFtQDU .dropdown-item:hover,
.cid-tPhzSFtQDU .dropdown-item:focus {
  background: #d21a1a !important;
  color: white !important;
}
.cid-tPhzSFtQDU .dropdown-item:hover span {
  color: white;
}
.cid-tPhzSFtQDU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPhzSFtQDU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPhzSFtQDU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPhzSFtQDU .nav-link {
  position: relative;
}
.cid-tPhzSFtQDU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown-menu,
.cid-tPhzSFtQDU .navbar.opened {
  background: #ffffff !important;
}
.cid-tPhzSFtQDU .nav-item:focus,
.cid-tPhzSFtQDU .nav-link:focus {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPhzSFtQDU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPhzSFtQDU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.opened {
  transition: all 0.3s;
}
.cid-tPhzSFtQDU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPhzSFtQDU .navbar .navbar-logo img {
  width: auto;
}
.cid-tPhzSFtQDU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPhzSFtQDU .navbar.collapsed {
  justify-content: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPhzSFtQDU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPhzSFtQDU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPhzSFtQDU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPhzSFtQDU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPhzSFtQDU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPhzSFtQDU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPhzSFtQDU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPhzSFtQDU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown-item.active,
.cid-tPhzSFtQDU .dropdown-item:active {
  background-color: transparent;
}
.cid-tPhzSFtQDU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPhzSFtQDU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPhzSFtQDU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPhzSFtQDU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPhzSFtQDU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tPhzSFtQDU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar {
    height: 70px;
  }
  .cid-tPhzSFtQDU .navbar.opened {
    height: auto;
  }
  .cid-tPhzSFtQDU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPlpXjEsCW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPiOtaH0HI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tPiOtaH0HI .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-tPhzSFtQDU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tPhzSFtQDU nav.navbar {
  position: fixed;
}
.cid-tPhzSFtQDU .nav-link:hover,
.cid-tPhzSFtQDU .dropdown-item:hover {
  color: #fff !important;
}
.cid-tPhzSFtQDU .nav-item:hover {
  transition: background-color 1.5s ease;
  background-color: #3e69ec;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPhzSFtQDU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPhzSFtQDU .dropdown-item:hover,
.cid-tPhzSFtQDU .dropdown-item:focus {
  background: #d21a1a !important;
  color: white !important;
}
.cid-tPhzSFtQDU .dropdown-item:hover span {
  color: white;
}
.cid-tPhzSFtQDU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPhzSFtQDU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPhzSFtQDU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPhzSFtQDU .nav-link {
  position: relative;
}
.cid-tPhzSFtQDU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown-menu,
.cid-tPhzSFtQDU .navbar.opened {
  background: #ffffff !important;
}
.cid-tPhzSFtQDU .nav-item:focus,
.cid-tPhzSFtQDU .nav-link:focus {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPhzSFtQDU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPhzSFtQDU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.opened {
  transition: all 0.3s;
}
.cid-tPhzSFtQDU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPhzSFtQDU .navbar .navbar-logo img {
  width: auto;
}
.cid-tPhzSFtQDU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPhzSFtQDU .navbar.collapsed {
  justify-content: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPhzSFtQDU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPhzSFtQDU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPhzSFtQDU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPhzSFtQDU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPhzSFtQDU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPhzSFtQDU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPhzSFtQDU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPhzSFtQDU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown-item.active,
.cid-tPhzSFtQDU .dropdown-item:active {
  background-color: transparent;
}
.cid-tPhzSFtQDU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPhzSFtQDU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPhzSFtQDU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPhzSFtQDU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPhzSFtQDU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tPhzSFtQDU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar {
    height: 70px;
  }
  .cid-tPhzSFtQDU .navbar.opened {
    height: auto;
  }
  .cid-tPhzSFtQDU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPlUcAB5c6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPiOtaH0HI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tPiOtaH0HI .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-tPhzSFtQDU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tPhzSFtQDU nav.navbar {
  position: fixed;
}
.cid-tPhzSFtQDU .nav-link:hover,
.cid-tPhzSFtQDU .dropdown-item:hover {
  color: #fff !important;
}
.cid-tPhzSFtQDU .nav-item:hover {
  transition: background-color 1.5s ease;
  background-color: #3e69ec;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPhzSFtQDU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPhzSFtQDU .dropdown-item:hover,
.cid-tPhzSFtQDU .dropdown-item:focus {
  background: #d21a1a !important;
  color: white !important;
}
.cid-tPhzSFtQDU .dropdown-item:hover span {
  color: white;
}
.cid-tPhzSFtQDU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPhzSFtQDU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPhzSFtQDU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPhzSFtQDU .nav-link {
  position: relative;
}
.cid-tPhzSFtQDU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown-menu,
.cid-tPhzSFtQDU .navbar.opened {
  background: #ffffff !important;
}
.cid-tPhzSFtQDU .nav-item:focus,
.cid-tPhzSFtQDU .nav-link:focus {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPhzSFtQDU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPhzSFtQDU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.opened {
  transition: all 0.3s;
}
.cid-tPhzSFtQDU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPhzSFtQDU .navbar .navbar-logo img {
  width: auto;
}
.cid-tPhzSFtQDU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPhzSFtQDU .navbar.collapsed {
  justify-content: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPhzSFtQDU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPhzSFtQDU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPhzSFtQDU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPhzSFtQDU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPhzSFtQDU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPhzSFtQDU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPhzSFtQDU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPhzSFtQDU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown-item.active,
.cid-tPhzSFtQDU .dropdown-item:active {
  background-color: transparent;
}
.cid-tPhzSFtQDU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPhzSFtQDU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPhzSFtQDU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPhzSFtQDU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPhzSFtQDU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tPhzSFtQDU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar {
    height: 70px;
  }
  .cid-tPhzSFtQDU .navbar.opened {
    height: auto;
  }
  .cid-tPhzSFtQDU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPkEf1p4wn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tPkEf1p4wn .showAlerts {
  display: block !important;
}
.cid-tPkEf1p4wn .rowflexrev {
  display: -webkit-flex;
}
.cid-tPkEf1p4wn .ws-form-alerts {
  margin-top: 1rem;
}
.cid-tPkEf1p4wn .title {
  margin-bottom: 2rem;
}
.cid-tPkEf1p4wn .mbr-section-subtitle {
  color: #000000;
}
.cid-tPkEf1p4wn textarea.form-control {
  min-height: 188px;
}
.cid-tPkEf1p4wn LABEL {
  color: #232323;
  display: initial;
}
.cid-tPkEf1p4wn .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tPkEf1p4wn .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tPkEf1p4wn .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tPkEf1p4wn .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tPkEf1p4wn .alert {
  margin-bottom: 0;
}
.cid-tPkEf1p4wn .alert-success {
  background-color: #70c770;
}
.cid-tPkEf1p4wn .alert-danger {
  background-color: #e43f3f;
}
.cid-tPkEf1p4wn .btn {
  display: inline-flex;
}
.cid-tPkEf1p4wn .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tPkEf1p4wn .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-tPkEf1p4wn .media-container-column {
  background: #f9f9f9;
  padding: 10px;
}
.cid-tPkEf1p4wn .row > [class*="col"] {
  padding-left: 28px;
  padding-right: 28px;
}
.cid-tPiOtaH0HI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tPiOtaH0HI .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-bR30MsVBSY .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 53px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-bR30MsVBSY .my-float {
  margin-top: 16px;
}
.cid-bR30MsVBSY P {
  color: #232323;
}
.cid-bR30MsVBSY DIV {
  color: #ffffff;
}
.cid-bR30MsVBSY H10 {
  color: #767676;
}
.cid-bR30MsVBSY .hidden {
  display: none;
}
.cid-tPhzSFtQDU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tPhzSFtQDU nav.navbar {
  position: fixed;
}
.cid-tPhzSFtQDU .nav-link:hover,
.cid-tPhzSFtQDU .dropdown-item:hover {
  color: #fff !important;
}
.cid-tPhzSFtQDU .nav-item:hover {
  transition: background-color 1.5s ease;
  background-color: #3e69ec;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPhzSFtQDU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPhzSFtQDU .dropdown-item:hover,
.cid-tPhzSFtQDU .dropdown-item:focus {
  background: #d21a1a !important;
  color: white !important;
}
.cid-tPhzSFtQDU .dropdown-item:hover span {
  color: white;
}
.cid-tPhzSFtQDU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPhzSFtQDU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPhzSFtQDU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPhzSFtQDU .nav-link {
  position: relative;
}
.cid-tPhzSFtQDU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPhzSFtQDU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown-menu,
.cid-tPhzSFtQDU .navbar.opened {
  background: #ffffff !important;
}
.cid-tPhzSFtQDU .nav-item:focus,
.cid-tPhzSFtQDU .nav-link:focus {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPhzSFtQDU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPhzSFtQDU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPhzSFtQDU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPhzSFtQDU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.opened {
  transition: all 0.3s;
}
.cid-tPhzSFtQDU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPhzSFtQDU .navbar .navbar-logo img {
  width: auto;
}
.cid-tPhzSFtQDU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPhzSFtQDU .navbar.collapsed {
  justify-content: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPhzSFtQDU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPhzSFtQDU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPhzSFtQDU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPhzSFtQDU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPhzSFtQDU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPhzSFtQDU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPhzSFtQDU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPhzSFtQDU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPhzSFtQDU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPhzSFtQDU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPhzSFtQDU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPhzSFtQDU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPhzSFtQDU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPhzSFtQDU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPhzSFtQDU .dropdown-item.active,
.cid-tPhzSFtQDU .dropdown-item:active {
  background-color: transparent;
}
.cid-tPhzSFtQDU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPhzSFtQDU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tPhzSFtQDU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPhzSFtQDU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPhzSFtQDU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPhzSFtQDU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPhzSFtQDU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPhzSFtQDU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPhzSFtQDU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPhzSFtQDU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tPhzSFtQDU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPhzSFtQDU .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-tPhzSFtQDU .navbar {
    height: 70px;
  }
  .cid-tPhzSFtQDU .navbar.opened {
    height: auto;
  }
  .cid-tPhzSFtQDU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPqK1bM3y3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tPqK1bM3y3 .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-tPqK1bM3y3 body {
  margin-top: 20px;
}
.cid-tPqK1bM3y3 .blog-listing {
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-tPqK1bM3y3 .gray-bg {
  background-color: #efefef;
}
.cid-tPqK1bM3y3 .blog-grid {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tPqK1bM3y3 .blog-grid .blog-img {
  position: relative;
}
.cid-tPqK1bM3y3 .blog-grid .blog-img .date {
  position: absolute;
  background: #3e69ec;
  color: #ffffff;
  padding: 8px 15px;
  left: 10px;
  top: 10px;
  border-radius: 4px;
}
.cid-tPqK1bM3y3 .pagination .active {
  background: #fc5356;
  color: #ffffff;
}
.cid-tPqK1bM3y3 .btn-theme {
  background: #379923;
  color: #ffffff;
  padding: 6px;
}
.cid-tPqK1bM3y3 .blog-grid .blog-img .date span {
  font-size: 22px;
  display: block;
  line-height: 22px;
  font-weight: 700;
}
.cid-tPqK1bM3y3 .blog-grid .blog-img .date label {
  font-size: 14px;
  margin: 0;
}
.cid-tPqK1bM3y3 .blog-grid .blog-info {
  padding: 20px;
}
.cid-tPqK1bM3y3 .blog-grid .blog-info h5 {
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0px 10px;
}
.cid-tPqK1bM3y3 .blog-grid .blog-info1 h5 {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 76px 10px;
}
.cid-tPqK1bM3y3 .blog-grid .blog-info h5 a {
  color: #073b4c;
}
.cid-tPqK1bM3y3 .blog-grid .blog-info p {
  margin: 0;
}
.cid-tPqK1bM3y3 .blog-grid .blog-info .btn-bar {
  margin-top: 20px;
}
.cid-tPqK1bM3y3 .blog-aside .widget {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  /*margin-top: 15px;
  margin-bottom: 15px;*/
  width: 342px;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  top:15px;
  right:24px;
  z-index:1;
}
@media only screen and (max-width: 420px) {

.cid-tPqK1bM3y3 .blog-aside .widget {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  position:relative;
  bottom:10px;
  left:0px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
}

.cid-tPqK1bM3y3 .blog-aside .widget-body {
  padding: 15px;
}
.cid-tPqK1bM3y3 .blog-aside .widget-title {
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.cid-tPqK1bM3y3 .blog-aside .widget-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: #073b4c;
  margin: 0;
}
.cid-tPqK1bM3y3 .blog-aside .widget-author .media {
  margin-bottom: 15px;
}
.cid-tPqK1bM3y3 .blog-aside .widget-author p {
  font-size: 16px;
  margin: 0;
}
.cid-tPqK1bM3y3 .blog-aside .widget-author .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.cid-tPqK1bM3y3 .blog-aside .widget-author h6 {
  font-weight: 600;
  color: #073b4c;
  font-size: 22px;
  margin: 0;
  padding-left: 20px;
}
.cid-tPqK1bM3y3 .blog-aside .post-aside {
  margin-bottom: 15px;
}
.cid-tPqK1bM3y3 .blog-aside .post-aside .post-aside-title h5 {
  margin: 0;
}
.cid-tPqK1bM3y3 .blog-aside .post-aside .post-aside-title a {
  font-size: 18px;
  color: #20247b;
  font-weight: 600;
}
.cid-tPqK1bM3y3 .blog-aside .post-aside .post-aside-meta {
  padding-bottom: 10px;
}
.cid-tPqK1bM3y3 .blog-aside .post-aside .post-aside-meta a {
  color: #6F8BA4;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}
.cid-tPqK1bM3y3 .blog-aside .latest-post-aside + .latest-post-aside {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}
.cid-tPqK1bM3y3 .blog-aside .latest-post-aside .lpa-right {
  width: 90px;
  margin-left: 207px;
  margin-top: -36px;
}
.cid-tPqK1bM3y3 .blog-aside .latest-post-aside .lpa-right img {
  border-radius: 3px;
}
.cid-tPqK1bM3y3 .blog-aside .latest-post-aside .lpa-left {
  padding-right: 15px;
}
.cid-tPqK1bM3y3 .blog-aside .latest-post-aside .lpa-title h5 {
  margin: 0;
  font-size: 15px;
}
.cid-tPqK1bM3y3 .blog-aside .latest-post-aside .lpa-title a {
  color: #073b4c;
  font-weight: 600;
}
.cid-tPqK1bM3y3 .blog-aside .latest-post-aside .lpa-meta i {
  color: #6F8BA4;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}
.cid-tPqK1bM3y3 .tag-cloud a {
  padding: 4px 15px;
  font-size: 13px;
  color: #ffffff;
  background: #fc5356;
  border-radius: 3px;
  margin-right: 4px;
  margin-bottom: 4px;
}
.cid-tPqK1bM3y3 .tag-cloud a:hover {
  background: #fc5356;
}
.cid-tPqK1bM3y3 .blog-single {
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-tPqK1bM3y3 .article {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  padding: 15px;
  margin: 15px 0 30px;
}
.cid-tPqK1bM3y3 .article .article-title {
  padding: 15px 0 20px;
}
.cid-tPqK1bM3y3 .article .article-title h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cid-tPqK1bM3y3 .article .article-title h6 a {
  text-transform: uppercase;
  color: #fc5356;
  border-bottom: 1px solid #fc5356;
}
.cid-tPqK1bM3y3 .article .article-title h2 {
  color: #20247b;
  font-weight: 600;
}
.cid-tPqK1bM3y3 .article .article-title .media {
  padding-top: 15px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 20px;
}
.cid-tPqK1bM3y3 .article .article-title .media .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.cid-tPqK1bM3y3 .article .article-title .media .media-body {
  padding-left: 8px;
}
.cid-tPqK1bM3y3 .article .article-title .media .media-body label {
  font-weight: 600;
  color: #fc5356;
  margin: 0;
}
.cid-tPqK1bM3y3 .article .article-title .media .media-body span {
  display: block;
  font-size: 12px;
}
.cid-tPqK1bM3y3 .article .article-content h1,
.cid-tPqK1bM3y3 .article .article-content h2,
.cid-tPqK1bM3y3 .article .article-content h3,
.cid-tPqK1bM3y3 .article .article-content h4,
.cid-tPqK1bM3y3 .article .article-content h5,
.cid-tPqK1bM3y3 .article .article-content h6 {
  color: #20247b;
  font-weight: 600;
  margin-bottom: 15px;
}
.cid-tPqK1bM3y3 .article .article-content blockquote {
  max-width: 600px;
  padding: 15px 0 30px 0;
  margin: 0;
}
.cid-tPqK1bM3y3 .article .article-content blockquote p {
  font-size: 20px;
  font-weight: 500;
  color: #fc5356;
  margin: 0;
}
.cid-tPqK1bM3y3 .article .article-content blockquote .blockquote-footer {
  color: #20247b;
  font-size: 16px;
}
.cid-tPqK1bM3y3 .article .article-content blockquote .blockquote-footer cite {
  font-weight: 600;
}
.cid-tPqK1bM3y3 .article .tag-cloud {
  padding-top: 10px;
}
.cid-tPqK1bM3y3 .article-comment {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  padding: 20px;
}
.cid-tPqK1bM3y3 .article-comment h4 {
  color: #20247b;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 22px;
}
.cid-tPqK1bM3y3 img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}
.cid-tPqK1bM3y3 span.read {
  color: #fff;
}
.cid-tPqK1bM3y3 .lpa-meta {
  width: 210px;
}
.cid-tPqK1bM3y3 P {
  text-align: left;
}
.cid-tPqK1bM3y3 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-repeat: repeat;
}
@media screen and (max-width: 420px) {
  .cid-tPqK1bM3y3 .blog-grid .blog-info h5 {
    margin: -12px 0px 10px !important;
  }
}
.cid-tPiOtaH0HI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tPiOtaH0HI .media-container-row .mbr-text {
  color: #e43f3f;
}

/*custom*/

/*& when (@reverseContent) {

  .row {
    flex-direction: row-reverse;
  }
}*/

.video-wrapper iframe {
  width: 100%;
  height: 520px !important;
}

.tab-content {
  background: @bgvideo;
  border-radius: 5px;
  padding: 10px;
  height: (@navheight * 1px);
}

.daho-tab {
  border-bottom: 0 !important;
  background: @bgvideo;
  border-radius: 5px;
  height: (@navheight * 1px);
  overflow-y: scroll;
  display: block;
}

.tabs-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 45px;
}

.tabs-list li {
  margin: auto !important;
}

.tabs-list li p {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  -webkit-transition: .5s;
  transition: 0.5s;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 400;
}

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

.section-title span {
}

.section-title h2 {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 14px;
}

.section-title p {
  max-width: 600px;
  margin: auto;
}

.daho-tab .nav-item.open .nav-link:focus, .daho-tab .nav-link.active:focus {
  outline: none;
}

.nav-item {

  @media (max-width: 767px) {
    width: 100%;
    margin: 0;
  }
}

img.thumb {
  width: (@thumbsize * 1px);
  border-radius: 5px !important;
  margin-right: 5px;
}

.daho-tab .nav-link {
  transition: all .5s;
  border-bottom: 3px solid transparent;
  background: @bgnav;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 5px;
  margin: 10px;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;

  &:not(.active) {
    color: @tabsColor;
  }
}

.daho-tab .nav-item {
  margin-right: 1.5rem;
}

.nav-link, .nav-link.active {
  padding: 1rem 0;
}

.daho-tab .nav-link.active {
  color: @activeColor;
  border-bottom: 3px solid @activeColor;
  background-color: @bgactive;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 5px;
  margin: 10px;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

H4 {
  text-align: center;
}

H3 {
  text-align: left;
  color: #232323;
}

.mbr-section-title {
  text-align: center;
}

.mbr-section-span {
  color: #e43f3f;
  text-align: center;
}

.mbr-section-p {
  text-align: center;
}

UL {
  color: #e43f3f;
}

.mbr-text {
  color: #232323;
}

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

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

.noi when not (@ShowImage) {
  display: none;
}

/*Video Custom*/
.cid-RpEfvgZkSB .row {
  flex-direction: row-reverse;
}
.cid-RpEfvgZkSB img.thumb {
  width: 77px;
  border-radius: 5px !important;
  margin-right: 5px;
  }

  .cid-RpEfvgZkSB .daho-tab {
  border-bottom: 0 !important;
  background: #000000;
  border-radius: 5px;
  height: 610px;
  overflow-y: scroll;
  display: block;
}
.cid-RpEfvgZkSB .tab-content {
  background: #000000;
  border-radius: 5px;
  padding: 10px;
  height: 610px;
}


.cid-RpEfvgZkSB .daho-tab .nav-link:not(.active) {
  color: #000000;
}

.cid-RpEfvgZkSB .daho-tab .nav-link {
  transition: all .5s;
  border-bottom: 3px solid transparent;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 5px;
  margin: 10px;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.cid-RpEfvgZkSB .daho-tab .nav-link.active {
  color: #ffffff;
  border-bottom: 3px solid #ffffff;
  background-color: #4479d9;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 5px;
  margin: 10px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/*custom tools*/
.cid-fFYVwqWGhb .custom-block .custom-btn {
  border-radius: 0 0 20px 20px !important;
  display: block;
}
.cid-fFYVwqWGhb .custom-btn {
  background: #3face4;
  border: 2px solid transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  padding: 12px 25px;
  margin-top: 8px;
}

.cid-fFYVwqWGhb .custom-block-body {
  padding: 30px;
}

/*custom board members*/
.cid-tSLlVEgBvX .image-wrapper img{
  width: 100%;
  object-fit: cover;
  border-radius: 180px;
  padding: 20px;
}

.cid-tSLlVEgBvX {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}

/*vision icons*/
.cid-1SaFdtUlnz .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-1SaFdtUlnz .card .card-header a.panel-title h4 {
  padding: 0rem 2rem;
  border: 0px solid #232323;
  margin-bottom: 0px;
  border-radius: 0px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.display-5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  }
  .cid-1SaFdtUlnz .card .card-header a.panel-title h4 {
  padding: 0rem 2rem;
  border: 0px solid #232323;
  margin-bottom: 0px;
  border-radius: 0px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-1SaFdtUlnz {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background: linear-gradient(0deg, #8caff0, #ffffff);
}
}