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: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.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: 'Jost', 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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((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: #6592e6 !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: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !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: #6592e6 !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: #205ac5 !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: #6592e6;
}
.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: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #6592e6 !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: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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='%236592e6' %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-tNdfTkcrS4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNdfTkcrS4 nav.navbar {
  position: fixed;
}
.cid-tNdfTkcrS4 .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-tNdfTkcrS4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNdfTkcrS4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNdfTkcrS4 .dropdown-item:hover,
.cid-tNdfTkcrS4 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tNdfTkcrS4 .dropdown-item:hover span {
  color: white;
}
.cid-tNdfTkcrS4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNdfTkcrS4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNdfTkcrS4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNdfTkcrS4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNdfTkcrS4 .nav-link {
  position: relative;
}
.cid-tNdfTkcrS4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tNdfTkcrS4 .container {
    flex-wrap: nowrap;
  }
}
.cid-tNdfTkcrS4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNdfTkcrS4 .dropdown-menu,
.cid-tNdfTkcrS4 .navbar.opened {
  background: #ffffff !important;
}
.cid-tNdfTkcrS4 .nav-item:focus,
.cid-tNdfTkcrS4 .nav-link:focus {
  outline: none;
}
.cid-tNdfTkcrS4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNdfTkcrS4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNdfTkcrS4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNdfTkcrS4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNdfTkcrS4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNdfTkcrS4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNdfTkcrS4 .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-tNdfTkcrS4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tNdfTkcrS4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNdfTkcrS4 .navbar .navbar-logo img {
  width: auto;
}
.cid-tNdfTkcrS4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNdfTkcrS4 .navbar.collapsed {
  justify-content: center;
}
.cid-tNdfTkcrS4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNdfTkcrS4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNdfTkcrS4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNdfTkcrS4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNdfTkcrS4 .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-tNdfTkcrS4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNdfTkcrS4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNdfTkcrS4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNdfTkcrS4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNdfTkcrS4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNdfTkcrS4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNdfTkcrS4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNdfTkcrS4 .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-tNdfTkcrS4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNdfTkcrS4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNdfTkcrS4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNdfTkcrS4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNdfTkcrS4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNdfTkcrS4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNdfTkcrS4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNdfTkcrS4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNdfTkcrS4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNdfTkcrS4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNdfTkcrS4 .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-tNdfTkcrS4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNdfTkcrS4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNdfTkcrS4 .dropdown-item.active,
.cid-tNdfTkcrS4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tNdfTkcrS4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNdfTkcrS4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNdfTkcrS4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNdfTkcrS4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNdfTkcrS4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNdfTkcrS4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNdfTkcrS4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNdfTkcrS4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNdfTkcrS4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNdfTkcrS4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tNdfTkcrS4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNdfTkcrS4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNdfTkcrS4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNdfTkcrS4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNdfTkcrS4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNdfTkcrS4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNdfTkcrS4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNdfTkcrS4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNdfTkcrS4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNdfTkcrS4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNdfTkcrS4 .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-tNdfTkcrS4 .navbar {
    height: 70px;
  }
  .cid-tNdfTkcrS4 .navbar.opened {
    height: auto;
  }
  .cid-tNdfTkcrS4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sdSRXi90Gv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sdSRXi90Gv .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sdSRXi90Gv .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sdSRXi90Gv .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sdYCM0ljcP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sdYCM0ljcP .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sdYCM0ljcP .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sdYCM0ljcP .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-sdYCM0ljcP .bg-youtube:hover {
  background: #cc0000;
}
.cid-sdYCM0ljcP .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-sdYCM0ljcP [class^="socicon-"]:before,
.cid-sdYCM0ljcP [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sdYB3JTO6v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tw9NQ00cLO {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tw9NQ00cLO img,
.cid-tw9NQ00cLO .item-img {
  width: 100%;
}
.cid-tw9NQ00cLO .item:focus,
.cid-tw9NQ00cLO span:focus {
  outline: none;
}
.cid-tw9NQ00cLO .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tw9NQ00cLO .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw9NQ00cLO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw9NQ00cLO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tw9NQ00cLO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tw9NQ00cLO .mbr-section-title {
  color: #ffffff;
}
.cid-tw9NQ00cLO .mbr-text,
.cid-tw9NQ00cLO .mbr-section-btn {
  text-align: center;
}
.cid-tw9NQ00cLO .item-title {
  text-align: center;
}
.cid-tw9NQ00cLO .item-subtitle {
  text-align: left;
}
.cid-twa0xIHrSH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-twa0xIHrSH img,
.cid-twa0xIHrSH .item-img {
  width: 100%;
}
.cid-twa0xIHrSH .item:focus,
.cid-twa0xIHrSH span:focus {
  outline: none;
}
.cid-twa0xIHrSH .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-twa0xIHrSH .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-twa0xIHrSH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-twa0xIHrSH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-twa0xIHrSH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-twa0xIHrSH .mbr-section-title {
  color: #ffffff;
}
.cid-twa0xIHrSH .mbr-text,
.cid-twa0xIHrSH .mbr-section-btn {
  text-align: center;
}
.cid-twa0xIHrSH .item-title {
  text-align: center;
}
.cid-twa0xIHrSH .item-subtitle {
  text-align: left;
}
.cid-twa0yTqacF {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-twa0yTqacF img,
.cid-twa0yTqacF .item-img {
  width: 100%;
}
.cid-twa0yTqacF .item:focus,
.cid-twa0yTqacF span:focus {
  outline: none;
}
.cid-twa0yTqacF .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-twa0yTqacF .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-twa0yTqacF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-twa0yTqacF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-twa0yTqacF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-twa0yTqacF .mbr-section-title {
  color: #ffffff;
}
.cid-twa0yTqacF .mbr-text,
.cid-twa0yTqacF .mbr-section-btn {
  text-align: center;
}
.cid-twa0yTqacF .item-title {
  text-align: center;
}
.cid-twa0yTqacF .item-subtitle {
  text-align: left;
}
.cid-twa11OpF2G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-twa11OpF2G img,
.cid-twa11OpF2G .item-img {
  width: 100%;
}
.cid-twa11OpF2G .item:focus,
.cid-twa11OpF2G span:focus {
  outline: none;
}
.cid-twa11OpF2G .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-twa11OpF2G .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-twa11OpF2G .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-twa11OpF2G .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-twa11OpF2G .mbr-section-btn {
  margin-top: auto !important;
}
.cid-twa11OpF2G .mbr-section-title {
  color: #ffffff;
}
.cid-twa11OpF2G .mbr-text,
.cid-twa11OpF2G .mbr-section-btn {
  text-align: center;
}
.cid-twa11OpF2G .item-title {
  text-align: center;
}
.cid-twa11OpF2G .item-subtitle {
  text-align: left;
}
.cid-tw9CWzhAc5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tw9CWzhAc5 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tw9CWzhAc5 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tw9CWzhAc5 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tw9CWzhAc5 .bg-youtube:hover {
  background: #cc0000;
}
.cid-tw9CWzhAc5 .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-tw9CWzhAc5 [class^="socicon-"]:before,
.cid-tw9CWzhAc5 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tw9CWzLO0U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tyjNrZ1SRz {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tyjNrZ1SRz img,
.cid-tyjNrZ1SRz .item-img {
  width: 100%;
}
.cid-tyjNrZ1SRz .item:focus,
.cid-tyjNrZ1SRz span:focus {
  outline: none;
}
.cid-tyjNrZ1SRz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tyjNrZ1SRz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tyjNrZ1SRz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tyjNrZ1SRz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tyjNrZ1SRz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tyjNrZ1SRz .mbr-section-title {
  color: #ffffff;
}
.cid-tyjNrZ1SRz .mbr-text,
.cid-tyjNrZ1SRz .mbr-section-btn {
  text-align: center;
}
.cid-tyjNrZ1SRz .item-title {
  text-align: center;
}
.cid-tyjNrZ1SRz .item-subtitle {
  text-align: left;
}
.cid-tyjNrZFj3O {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tyjNrZFj3O img,
.cid-tyjNrZFj3O .item-img {
  width: 100%;
}
.cid-tyjNrZFj3O .item:focus,
.cid-tyjNrZFj3O span:focus {
  outline: none;
}
.cid-tyjNrZFj3O .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tyjNrZFj3O .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tyjNrZFj3O .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tyjNrZFj3O .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tyjNrZFj3O .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tyjNrZFj3O .mbr-section-title {
  color: #ffffff;
}
.cid-tyjNrZFj3O .mbr-text,
.cid-tyjNrZFj3O .mbr-section-btn {
  text-align: center;
}
.cid-tyjNrZFj3O .item-title {
  text-align: center;
}
.cid-tyjNrZFj3O .item-subtitle {
  text-align: left;
}
.cid-tyjNs17OYZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tyjNs17OYZ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tyjNs17OYZ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tyjNs17OYZ .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tyjNs17OYZ .bg-youtube:hover {
  background: #cc0000;
}
.cid-tyjNs17OYZ .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-tyjNs17OYZ [class^="socicon-"]:before,
.cid-tyjNs17OYZ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tyjNs1xBYI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tExeeXlz8A {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tExeeXlz8A img,
.cid-tExeeXlz8A .item-img {
  width: 100%;
}
.cid-tExeeXlz8A .item:focus,
.cid-tExeeXlz8A span:focus {
  outline: none;
}
.cid-tExeeXlz8A .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tExeeXlz8A .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tExeeXlz8A .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tExeeXlz8A .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tExeeXlz8A .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tExeeXlz8A .mbr-section-title {
  color: #ffffff;
}
.cid-tExeeXlz8A .mbr-text,
.cid-tExeeXlz8A .mbr-section-btn {
  text-align: center;
}
.cid-tExeeXlz8A .item-title {
  text-align: center;
}
.cid-tExeeXlz8A .item-subtitle {
  text-align: left;
}
.cid-tExeeXS0aw {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tExeeXS0aw img,
.cid-tExeeXS0aw .item-img {
  width: 100%;
}
.cid-tExeeXS0aw .item:focus,
.cid-tExeeXS0aw span:focus {
  outline: none;
}
.cid-tExeeXS0aw .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tExeeXS0aw .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tExeeXS0aw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tExeeXS0aw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tExeeXS0aw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tExeeXS0aw .mbr-section-title {
  color: #ffffff;
}
.cid-tExeeXS0aw .mbr-text,
.cid-tExeeXS0aw .mbr-section-btn {
  text-align: center;
}
.cid-tExeeXS0aw .item-title {
  text-align: center;
}
.cid-tExeeXS0aw .item-subtitle {
  text-align: left;
}
.cid-tExeeYiYX3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tExeeYiYX3 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tExeeYiYX3 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tExeeYiYX3 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tExeeYiYX3 .bg-youtube:hover {
  background: #cc0000;
}
.cid-tExeeYiYX3 .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-tExeeYiYX3 [class^="socicon-"]:before,
.cid-tExeeYiYX3 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tExeeYIn6Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tExjPB0zue {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tExjPB0zue img,
.cid-tExjPB0zue .item-img {
  width: 100%;
}
.cid-tExjPB0zue .item:focus,
.cid-tExjPB0zue span:focus {
  outline: none;
}
.cid-tExjPB0zue .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tExjPB0zue .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tExjPB0zue .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tExjPB0zue .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tExjPB0zue .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tExjPB0zue .mbr-section-title {
  color: #ffffff;
}
.cid-tExjPB0zue .mbr-text,
.cid-tExjPB0zue .mbr-section-btn {
  text-align: center;
}
.cid-tExjPB0zue .item-title {
  text-align: center;
}
.cid-tExjPB0zue .item-subtitle {
  text-align: left;
}
.cid-tExjPBu314 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tExjPBu314 img,
.cid-tExjPBu314 .item-img {
  width: 100%;
}
.cid-tExjPBu314 .item:focus,
.cid-tExjPBu314 span:focus {
  outline: none;
}
.cid-tExjPBu314 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tExjPBu314 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tExjPBu314 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tExjPBu314 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tExjPBu314 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tExjPBu314 .mbr-section-title {
  color: #ffffff;
}
.cid-tExjPBu314 .mbr-text,
.cid-tExjPBu314 .mbr-section-btn {
  text-align: center;
}
.cid-tExjPBu314 .item-title {
  text-align: center;
}
.cid-tExjPBu314 .item-subtitle {
  text-align: left;
}
.cid-tExjPBWyfW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tExjPBWyfW .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tExjPBWyfW .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tExjPBWyfW .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tExjPBWyfW .bg-youtube:hover {
  background: #cc0000;
}
.cid-tExjPBWyfW .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-tExjPBWyfW [class^="socicon-"]:before,
.cid-tExjPBWyfW [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tExjPCl2p7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tHn7Cl8f5o {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHn7Cl8f5o img,
.cid-tHn7Cl8f5o .item-img {
  width: 100%;
}
.cid-tHn7Cl8f5o .item:focus,
.cid-tHn7Cl8f5o span:focus {
  outline: none;
}
.cid-tHn7Cl8f5o .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHn7Cl8f5o .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHn7Cl8f5o .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHn7Cl8f5o .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHn7Cl8f5o .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHn7Cl8f5o .mbr-section-title {
  color: #ffffff;
}
.cid-tHn7Cl8f5o .mbr-text,
.cid-tHn7Cl8f5o .mbr-section-btn {
  text-align: center;
}
.cid-tHn7Cl8f5o .item-title {
  text-align: center;
}
.cid-tHn7Cl8f5o .item-subtitle {
  text-align: left;
}
.cid-tHn7ClK1Hg {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHn7ClK1Hg img,
.cid-tHn7ClK1Hg .item-img {
  width: 100%;
}
.cid-tHn7ClK1Hg .item:focus,
.cid-tHn7ClK1Hg span:focus {
  outline: none;
}
.cid-tHn7ClK1Hg .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHn7ClK1Hg .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHn7ClK1Hg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHn7ClK1Hg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHn7ClK1Hg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHn7ClK1Hg .mbr-section-title {
  color: #ffffff;
}
.cid-tHn7ClK1Hg .mbr-text,
.cid-tHn7ClK1Hg .mbr-section-btn {
  text-align: center;
}
.cid-tHn7ClK1Hg .item-title {
  text-align: center;
}
.cid-tHn7ClK1Hg .item-subtitle {
  text-align: left;
}
.cid-tHn7Cma59J {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tHn7Cma59J .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tHn7Cma59J .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tHn7Cma59J .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tHn7Cma59J .bg-youtube:hover {
  background: #cc0000;
}
.cid-tHn7Cma59J .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-tHn7Cma59J [class^="socicon-"]:before,
.cid-tHn7Cma59J [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tHn7CmAha3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tHneyTsTJY {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHneyTsTJY img,
.cid-tHneyTsTJY .item-img {
  width: 100%;
}
.cid-tHneyTsTJY .item:focus,
.cid-tHneyTsTJY span:focus {
  outline: none;
}
.cid-tHneyTsTJY .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHneyTsTJY .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHneyTsTJY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHneyTsTJY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHneyTsTJY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHneyTsTJY .mbr-section-title {
  color: #ffffff;
}
.cid-tHneyTsTJY .mbr-text,
.cid-tHneyTsTJY .mbr-section-btn {
  text-align: center;
}
.cid-tHneyTsTJY .item-title {
  text-align: center;
}
.cid-tHneyTsTJY .item-subtitle {
  text-align: left;
}
.cid-tHneyU6Pyg {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHneyU6Pyg img,
.cid-tHneyU6Pyg .item-img {
  width: 100%;
}
.cid-tHneyU6Pyg .item:focus,
.cid-tHneyU6Pyg span:focus {
  outline: none;
}
.cid-tHneyU6Pyg .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHneyU6Pyg .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHneyU6Pyg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHneyU6Pyg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHneyU6Pyg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHneyU6Pyg .mbr-section-title {
  color: #ffffff;
}
.cid-tHneyU6Pyg .mbr-text,
.cid-tHneyU6Pyg .mbr-section-btn {
  text-align: center;
}
.cid-tHneyU6Pyg .item-title {
  text-align: center;
}
.cid-tHneyU6Pyg .item-subtitle {
  text-align: left;
}
.cid-tHneyUuEdZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tHneyUuEdZ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tHneyUuEdZ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tHneyUuEdZ .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tHneyUuEdZ .bg-youtube:hover {
  background: #cc0000;
}
.cid-tHneyUuEdZ .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-tHneyUuEdZ [class^="socicon-"]:before,
.cid-tHneyUuEdZ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tHneyUTocT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tHycLKh6QL {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHycLKh6QL img,
.cid-tHycLKh6QL .item-img {
  width: 100%;
}
.cid-tHycLKh6QL .item:focus,
.cid-tHycLKh6QL span:focus {
  outline: none;
}
.cid-tHycLKh6QL .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHycLKh6QL .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHycLKh6QL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHycLKh6QL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHycLKh6QL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHycLKh6QL .mbr-section-title {
  color: #ffffff;
}
.cid-tHycLKh6QL .mbr-text,
.cid-tHycLKh6QL .mbr-section-btn {
  text-align: center;
}
.cid-tHycLKh6QL .item-title {
  text-align: center;
}
.cid-tHycLKh6QL .item-subtitle {
  text-align: left;
}
.cid-tHycLKL4by {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHycLKL4by img,
.cid-tHycLKL4by .item-img {
  width: 100%;
}
.cid-tHycLKL4by .item:focus,
.cid-tHycLKL4by span:focus {
  outline: none;
}
.cid-tHycLKL4by .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHycLKL4by .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHycLKL4by .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHycLKL4by .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHycLKL4by .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHycLKL4by .mbr-section-title {
  color: #ffffff;
}
.cid-tHycLKL4by .mbr-text,
.cid-tHycLKL4by .mbr-section-btn {
  text-align: center;
}
.cid-tHycLKL4by .item-title {
  text-align: center;
}
.cid-tHycLKL4by .item-subtitle {
  text-align: left;
}
.cid-tHycLLg498 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tHycLLg498 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tHycLLg498 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tHycLLg498 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tHycLLg498 .bg-youtube:hover {
  background: #cc0000;
}
.cid-tHycLLg498 .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-tHycLLg498 [class^="socicon-"]:before,
.cid-tHycLLg498 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tHycLLG3Dl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tHyeZYAyrz {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHyeZYAyrz img,
.cid-tHyeZYAyrz .item-img {
  width: 100%;
}
.cid-tHyeZYAyrz .item:focus,
.cid-tHyeZYAyrz span:focus {
  outline: none;
}
.cid-tHyeZYAyrz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHyeZYAyrz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHyeZYAyrz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHyeZYAyrz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHyeZYAyrz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHyeZYAyrz .mbr-section-title {
  color: #ffffff;
}
.cid-tHyeZYAyrz .mbr-text,
.cid-tHyeZYAyrz .mbr-section-btn {
  text-align: center;
}
.cid-tHyeZYAyrz .item-title {
  text-align: center;
}
.cid-tHyeZYAyrz .item-subtitle {
  text-align: left;
}
.cid-tHyeZZfwIr {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHyeZZfwIr img,
.cid-tHyeZZfwIr .item-img {
  width: 100%;
}
.cid-tHyeZZfwIr .item:focus,
.cid-tHyeZZfwIr span:focus {
  outline: none;
}
.cid-tHyeZZfwIr .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHyeZZfwIr .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHyeZZfwIr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHyeZZfwIr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHyeZZfwIr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHyeZZfwIr .mbr-section-title {
  color: #ffffff;
}
.cid-tHyeZZfwIr .mbr-text,
.cid-tHyeZZfwIr .mbr-section-btn {
  text-align: center;
}
.cid-tHyeZZfwIr .item-title {
  text-align: center;
}
.cid-tHyeZZfwIr .item-subtitle {
  text-align: left;
}
.cid-tHyeZZQdZ2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tHyeZZQdZ2 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tHyeZZQdZ2 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tHyeZZQdZ2 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tHyeZZQdZ2 .bg-youtube:hover {
  background: #cc0000;
}
.cid-tHyeZZQdZ2 .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-tHyeZZQdZ2 [class^="socicon-"]:before,
.cid-tHyeZZQdZ2 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tHyf00iT3f {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tHyfOJlXiR {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHyfOJlXiR img,
.cid-tHyfOJlXiR .item-img {
  width: 100%;
}
.cid-tHyfOJlXiR .item:focus,
.cid-tHyfOJlXiR span:focus {
  outline: none;
}
.cid-tHyfOJlXiR .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHyfOJlXiR .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHyfOJlXiR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHyfOJlXiR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHyfOJlXiR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHyfOJlXiR .mbr-section-title {
  color: #ffffff;
}
.cid-tHyfOJlXiR .mbr-text,
.cid-tHyfOJlXiR .mbr-section-btn {
  text-align: center;
}
.cid-tHyfOJlXiR .item-title {
  text-align: center;
}
.cid-tHyfOJlXiR .item-subtitle {
  text-align: left;
}
.cid-tHyfOJZPm6 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHyfOJZPm6 img,
.cid-tHyfOJZPm6 .item-img {
  width: 100%;
}
.cid-tHyfOJZPm6 .item:focus,
.cid-tHyfOJZPm6 span:focus {
  outline: none;
}
.cid-tHyfOJZPm6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHyfOJZPm6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHyfOJZPm6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHyfOJZPm6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHyfOJZPm6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHyfOJZPm6 .mbr-section-title {
  color: #ffffff;
}
.cid-tHyfOJZPm6 .mbr-text,
.cid-tHyfOJZPm6 .mbr-section-btn {
  text-align: center;
}
.cid-tHyfOJZPm6 .item-title {
  text-align: center;
}
.cid-tHyfOJZPm6 .item-subtitle {
  text-align: left;
}
.cid-tHyfOKoMDI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tHyfOKoMDI .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tHyfOKoMDI .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tHyfOKoMDI .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tHyfOKoMDI .bg-youtube:hover {
  background: #cc0000;
}
.cid-tHyfOKoMDI .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-tHyfOKoMDI [class^="socicon-"]:before,
.cid-tHyfOKoMDI [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tHyfOKQtju {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tHyiLXHGj0 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHyiLXHGj0 img,
.cid-tHyiLXHGj0 .item-img {
  width: 100%;
}
.cid-tHyiLXHGj0 .item:focus,
.cid-tHyiLXHGj0 span:focus {
  outline: none;
}
.cid-tHyiLXHGj0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHyiLXHGj0 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHyiLXHGj0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHyiLXHGj0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHyiLXHGj0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHyiLXHGj0 .mbr-section-title {
  color: #ffffff;
}
.cid-tHyiLXHGj0 .mbr-text,
.cid-tHyiLXHGj0 .mbr-section-btn {
  text-align: center;
}
.cid-tHyiLXHGj0 .item-title {
  text-align: center;
}
.cid-tHyiLXHGj0 .item-subtitle {
  text-align: left;
}
.cid-tHyiLYpBw6 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHyiLYpBw6 img,
.cid-tHyiLYpBw6 .item-img {
  width: 100%;
}
.cid-tHyiLYpBw6 .item:focus,
.cid-tHyiLYpBw6 span:focus {
  outline: none;
}
.cid-tHyiLYpBw6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHyiLYpBw6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHyiLYpBw6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHyiLYpBw6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHyiLYpBw6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHyiLYpBw6 .mbr-section-title {
  color: #ffffff;
}
.cid-tHyiLYpBw6 .mbr-text,
.cid-tHyiLYpBw6 .mbr-section-btn {
  text-align: center;
}
.cid-tHyiLYpBw6 .item-title {
  text-align: center;
}
.cid-tHyiLYpBw6 .item-subtitle {
  text-align: left;
}
.cid-tHyiLZaAKt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tHyiLZaAKt .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tHyiLZaAKt .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tHyiLZaAKt .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tHyiLZaAKt .bg-youtube:hover {
  background: #cc0000;
}
.cid-tHyiLZaAKt .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-tHyiLZaAKt [class^="socicon-"]:before,
.cid-tHyiLZaAKt [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tHyiLZBLMu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tNcLqyw3VG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNcLqyw3VG nav.navbar {
  position: fixed;
}
.cid-tNcLqyw3VG .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-tNcLqyw3VG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNcLqyw3VG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNcLqyw3VG .dropdown-item:hover,
.cid-tNcLqyw3VG .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tNcLqyw3VG .dropdown-item:hover span {
  color: white;
}
.cid-tNcLqyw3VG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNcLqyw3VG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNcLqyw3VG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNcLqyw3VG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNcLqyw3VG .nav-link {
  position: relative;
}
.cid-tNcLqyw3VG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tNcLqyw3VG .container {
    flex-wrap: nowrap;
  }
}
.cid-tNcLqyw3VG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNcLqyw3VG .dropdown-menu,
.cid-tNcLqyw3VG .navbar.opened {
  background: #ffffff !important;
}
.cid-tNcLqyw3VG .nav-item:focus,
.cid-tNcLqyw3VG .nav-link:focus {
  outline: none;
}
.cid-tNcLqyw3VG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNcLqyw3VG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNcLqyw3VG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNcLqyw3VG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNcLqyw3VG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNcLqyw3VG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNcLqyw3VG .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-tNcLqyw3VG .navbar.opened {
  transition: all 0.3s;
}
.cid-tNcLqyw3VG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNcLqyw3VG .navbar .navbar-logo img {
  width: auto;
}
.cid-tNcLqyw3VG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNcLqyw3VG .navbar.collapsed {
  justify-content: center;
}
.cid-tNcLqyw3VG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNcLqyw3VG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNcLqyw3VG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNcLqyw3VG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNcLqyw3VG .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-tNcLqyw3VG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNcLqyw3VG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNcLqyw3VG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNcLqyw3VG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNcLqyw3VG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNcLqyw3VG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNcLqyw3VG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNcLqyw3VG .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-tNcLqyw3VG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNcLqyw3VG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNcLqyw3VG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNcLqyw3VG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNcLqyw3VG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNcLqyw3VG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNcLqyw3VG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNcLqyw3VG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNcLqyw3VG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNcLqyw3VG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNcLqyw3VG .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-tNcLqyw3VG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNcLqyw3VG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNcLqyw3VG .dropdown-item.active,
.cid-tNcLqyw3VG .dropdown-item:active {
  background-color: transparent;
}
.cid-tNcLqyw3VG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNcLqyw3VG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNcLqyw3VG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNcLqyw3VG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNcLqyw3VG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNcLqyw3VG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNcLqyw3VG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNcLqyw3VG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNcLqyw3VG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNcLqyw3VG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tNcLqyw3VG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNcLqyw3VG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNcLqyw3VG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNcLqyw3VG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNcLqyw3VG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNcLqyw3VG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNcLqyw3VG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNcLqyw3VG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNcLqyw3VG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNcLqyw3VG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNcLqyw3VG .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-tNcLqyw3VG .navbar {
    height: 70px;
  }
  .cid-tNcLqyw3VG .navbar.opened {
    height: auto;
  }
  .cid-tNcLqyw3VG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLoQwKF3K1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLoQwKF3K1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLoQwKF3K1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tLoQwKF3K1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tLoQwKF3K1 .row {
  flex-direction: row-reverse;
}
.cid-tLoQwKF3K1 img {
  width: 100%;
}
.cid-tLoQwKF3K1 .mbr-text {
  color: #232323;
}
.cid-tLoQwL9fis {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoQwL9fis .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoQwL9fis .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoQwL9fis .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoQwL9fis .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoQwL9fis .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-tLoQwL9fis [class^="socicon-"]:before,
.cid-tLoQwL9fis [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoQwLA14O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoRFlmrHW {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoRFlmrHW img,
.cid-tLoRFlmrHW .item-img {
  width: 100%;
}
.cid-tLoRFlmrHW .item:focus,
.cid-tLoRFlmrHW span:focus {
  outline: none;
}
.cid-tLoRFlmrHW .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoRFlmrHW .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoRFlmrHW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoRFlmrHW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoRFlmrHW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoRFlmrHW .mbr-section-title {
  color: #ffffff;
}
.cid-tLoRFlmrHW .mbr-text,
.cid-tLoRFlmrHW .mbr-section-btn {
  text-align: center;
}
.cid-tLoRFlmrHW .item-title {
  text-align: center;
}
.cid-tLoRFlmrHW .item-subtitle {
  text-align: left;
}
.cid-tLoRFlPIxy {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoRFlPIxy img,
.cid-tLoRFlPIxy .item-img {
  width: 100%;
}
.cid-tLoRFlPIxy .item:focus,
.cid-tLoRFlPIxy span:focus {
  outline: none;
}
.cid-tLoRFlPIxy .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoRFlPIxy .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoRFlPIxy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoRFlPIxy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoRFlPIxy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoRFlPIxy .mbr-section-title {
  color: #ffffff;
}
.cid-tLoRFlPIxy .mbr-text,
.cid-tLoRFlPIxy .mbr-section-btn {
  text-align: center;
}
.cid-tLoRFlPIxy .item-title {
  text-align: center;
}
.cid-tLoRFlPIxy .item-subtitle {
  text-align: left;
}
.cid-tLoRFmvMhz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoRFmvMhz .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoRFmvMhz .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoRFmvMhz .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoRFmvMhz .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoRFmvMhz .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-tLoRFmvMhz [class^="socicon-"]:before,
.cid-tLoRFmvMhz [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoRFmWcHx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoRJwsKDk {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoRJwsKDk img,
.cid-tLoRJwsKDk .item-img {
  width: 100%;
}
.cid-tLoRJwsKDk .item:focus,
.cid-tLoRJwsKDk span:focus {
  outline: none;
}
.cid-tLoRJwsKDk .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoRJwsKDk .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoRJwsKDk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoRJwsKDk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoRJwsKDk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoRJwsKDk .mbr-section-title {
  color: #ffffff;
}
.cid-tLoRJwsKDk .mbr-text,
.cid-tLoRJwsKDk .mbr-section-btn {
  text-align: center;
}
.cid-tLoRJwsKDk .item-title {
  text-align: center;
}
.cid-tLoRJwsKDk .item-subtitle {
  text-align: left;
}
.cid-tLoRJwVABM {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoRJwVABM img,
.cid-tLoRJwVABM .item-img {
  width: 100%;
}
.cid-tLoRJwVABM .item:focus,
.cid-tLoRJwVABM span:focus {
  outline: none;
}
.cid-tLoRJwVABM .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoRJwVABM .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoRJwVABM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoRJwVABM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoRJwVABM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoRJwVABM .mbr-section-title {
  color: #ffffff;
}
.cid-tLoRJwVABM .mbr-text,
.cid-tLoRJwVABM .mbr-section-btn {
  text-align: center;
}
.cid-tLoRJwVABM .item-title {
  text-align: center;
}
.cid-tLoRJwVABM .item-subtitle {
  text-align: left;
}
.cid-tLoRJxymca {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoRJxymca .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoRJxymca .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoRJxymca .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoRJxymca .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoRJxymca .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-tLoRJxymca [class^="socicon-"]:before,
.cid-tLoRJxymca [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoRJxX5Nd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoSy3RAWp {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoSy3RAWp img,
.cid-tLoSy3RAWp .item-img {
  width: 100%;
}
.cid-tLoSy3RAWp .item:focus,
.cid-tLoSy3RAWp span:focus {
  outline: none;
}
.cid-tLoSy3RAWp .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoSy3RAWp .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoSy3RAWp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoSy3RAWp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoSy3RAWp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoSy3RAWp .mbr-section-title {
  color: #ffffff;
}
.cid-tLoSy3RAWp .mbr-text,
.cid-tLoSy3RAWp .mbr-section-btn {
  text-align: center;
}
.cid-tLoSy3RAWp .item-title {
  text-align: center;
}
.cid-tLoSy3RAWp .item-subtitle {
  text-align: left;
}
.cid-tLoSy4lTG3 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoSy4lTG3 img,
.cid-tLoSy4lTG3 .item-img {
  width: 100%;
}
.cid-tLoSy4lTG3 .item:focus,
.cid-tLoSy4lTG3 span:focus {
  outline: none;
}
.cid-tLoSy4lTG3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoSy4lTG3 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoSy4lTG3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoSy4lTG3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoSy4lTG3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoSy4lTG3 .mbr-section-title {
  color: #ffffff;
}
.cid-tLoSy4lTG3 .mbr-text,
.cid-tLoSy4lTG3 .mbr-section-btn {
  text-align: center;
}
.cid-tLoSy4lTG3 .item-title {
  text-align: center;
}
.cid-tLoSy4lTG3 .item-subtitle {
  text-align: left;
}
.cid-tLoSy4YwGP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoSy4YwGP .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoSy4YwGP .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoSy4YwGP .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoSy4YwGP .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoSy4YwGP .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-tLoSy4YwGP [class^="socicon-"]:before,
.cid-tLoSy4YwGP [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoSy5n0rJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoST5JNN5 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoST5JNN5 img,
.cid-tLoST5JNN5 .item-img {
  width: 100%;
}
.cid-tLoST5JNN5 .item:focus,
.cid-tLoST5JNN5 span:focus {
  outline: none;
}
.cid-tLoST5JNN5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoST5JNN5 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoST5JNN5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoST5JNN5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoST5JNN5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoST5JNN5 .mbr-section-title {
  color: #ffffff;
}
.cid-tLoST5JNN5 .mbr-text,
.cid-tLoST5JNN5 .mbr-section-btn {
  text-align: center;
}
.cid-tLoST5JNN5 .item-title {
  text-align: center;
}
.cid-tLoST5JNN5 .item-subtitle {
  text-align: left;
}
.cid-tLoST6miRM {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoST6miRM img,
.cid-tLoST6miRM .item-img {
  width: 100%;
}
.cid-tLoST6miRM .item:focus,
.cid-tLoST6miRM span:focus {
  outline: none;
}
.cid-tLoST6miRM .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoST6miRM .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoST6miRM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoST6miRM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoST6miRM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoST6miRM .mbr-section-title {
  color: #ffffff;
}
.cid-tLoST6miRM .mbr-text,
.cid-tLoST6miRM .mbr-section-btn {
  text-align: center;
}
.cid-tLoST6miRM .item-title {
  text-align: center;
}
.cid-tLoST6miRM .item-subtitle {
  text-align: left;
}
.cid-tLoST6XyQ5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoST6XyQ5 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoST6XyQ5 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoST6XyQ5 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoST6XyQ5 .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoST6XyQ5 .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-tLoST6XyQ5 [class^="socicon-"]:before,
.cid-tLoST6XyQ5 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoST7nFus {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoSWAB7v9 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoSWAB7v9 img,
.cid-tLoSWAB7v9 .item-img {
  width: 100%;
}
.cid-tLoSWAB7v9 .item:focus,
.cid-tLoSWAB7v9 span:focus {
  outline: none;
}
.cid-tLoSWAB7v9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoSWAB7v9 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoSWAB7v9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoSWAB7v9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoSWAB7v9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoSWAB7v9 .mbr-section-title {
  color: #ffffff;
}
.cid-tLoSWAB7v9 .mbr-text,
.cid-tLoSWAB7v9 .mbr-section-btn {
  text-align: center;
}
.cid-tLoSWAB7v9 .item-title {
  text-align: center;
}
.cid-tLoSWAB7v9 .item-subtitle {
  text-align: left;
}
.cid-tLoSWBJgGA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoSWBJgGA .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoSWBJgGA .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoSWBJgGA .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoSWBJgGA .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoSWBJgGA .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-tLoSWBJgGA [class^="socicon-"]:before,
.cid-tLoSWBJgGA [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoSWCacxg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tNcL5SB9NV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNcL5SB9NV nav.navbar {
  position: fixed;
}
.cid-tNcL5SB9NV .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-tNcL5SB9NV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNcL5SB9NV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNcL5SB9NV .dropdown-item:hover,
.cid-tNcL5SB9NV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tNcL5SB9NV .dropdown-item:hover span {
  color: white;
}
.cid-tNcL5SB9NV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNcL5SB9NV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNcL5SB9NV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNcL5SB9NV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNcL5SB9NV .nav-link {
  position: relative;
}
.cid-tNcL5SB9NV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tNcL5SB9NV .container {
    flex-wrap: nowrap;
  }
}
.cid-tNcL5SB9NV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNcL5SB9NV .dropdown-menu,
.cid-tNcL5SB9NV .navbar.opened {
  background: #ffffff !important;
}
.cid-tNcL5SB9NV .nav-item:focus,
.cid-tNcL5SB9NV .nav-link:focus {
  outline: none;
}
.cid-tNcL5SB9NV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNcL5SB9NV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNcL5SB9NV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNcL5SB9NV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNcL5SB9NV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNcL5SB9NV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNcL5SB9NV .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-tNcL5SB9NV .navbar.opened {
  transition: all 0.3s;
}
.cid-tNcL5SB9NV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNcL5SB9NV .navbar .navbar-logo img {
  width: auto;
}
.cid-tNcL5SB9NV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNcL5SB9NV .navbar.collapsed {
  justify-content: center;
}
.cid-tNcL5SB9NV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNcL5SB9NV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tNcL5SB9NV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNcL5SB9NV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNcL5SB9NV .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-tNcL5SB9NV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNcL5SB9NV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNcL5SB9NV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNcL5SB9NV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNcL5SB9NV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNcL5SB9NV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNcL5SB9NV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNcL5SB9NV .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-tNcL5SB9NV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNcL5SB9NV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNcL5SB9NV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNcL5SB9NV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNcL5SB9NV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNcL5SB9NV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNcL5SB9NV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNcL5SB9NV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNcL5SB9NV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNcL5SB9NV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNcL5SB9NV .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-tNcL5SB9NV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNcL5SB9NV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNcL5SB9NV .dropdown-item.active,
.cid-tNcL5SB9NV .dropdown-item:active {
  background-color: transparent;
}
.cid-tNcL5SB9NV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNcL5SB9NV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNcL5SB9NV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNcL5SB9NV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNcL5SB9NV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNcL5SB9NV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNcL5SB9NV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNcL5SB9NV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNcL5SB9NV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNcL5SB9NV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tNcL5SB9NV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNcL5SB9NV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNcL5SB9NV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNcL5SB9NV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNcL5SB9NV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNcL5SB9NV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNcL5SB9NV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNcL5SB9NV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNcL5SB9NV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNcL5SB9NV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNcL5SB9NV .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-tNcL5SB9NV .navbar {
    height: 70px;
  }
  .cid-tNcL5SB9NV .navbar.opened {
    height: auto;
  }
  .cid-tNcL5SB9NV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tN2wDPE9UY {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tN2wDPE9UY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN2wDPE9UY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tN2wDPE9UY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tN2wDPE9UY .row {
  flex-direction: row-reverse;
}
.cid-tN2wDPE9UY img {
  width: 100%;
}
.cid-tN2wDPE9UY .mbr-text {
  color: #232323;
}
.cid-tN2wDPY6Eb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tN2wDPY6Eb .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tN2wDPY6Eb .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tN2wDPY6Eb .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tN2wDPY6Eb .bg-youtube:hover {
  background: #cc0000;
}
.cid-tN2wDPY6Eb .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-tN2wDPY6Eb [class^="socicon-"]:before,
.cid-tN2wDPY6Eb [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tN2wDQllDw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tHyhtokkuM {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHyhtokkuM img,
.cid-tHyhtokkuM .item-img {
  width: 100%;
}
.cid-tHyhtokkuM .item:focus,
.cid-tHyhtokkuM span:focus {
  outline: none;
}
.cid-tHyhtokkuM .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHyhtokkuM .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHyhtokkuM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHyhtokkuM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHyhtokkuM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHyhtokkuM .mbr-section-title {
  color: #ffffff;
}
.cid-tHyhtokkuM .mbr-text,
.cid-tHyhtokkuM .mbr-section-btn {
  text-align: center;
}
.cid-tHyhtokkuM .item-title {
  text-align: center;
}
.cid-tHyhtokkuM .item-subtitle {
  text-align: left;
}
.cid-tHyhtp1u3T {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tHyhtp1u3T img,
.cid-tHyhtp1u3T .item-img {
  width: 100%;
}
.cid-tHyhtp1u3T .item:focus,
.cid-tHyhtp1u3T span:focus {
  outline: none;
}
.cid-tHyhtp1u3T .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHyhtp1u3T .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHyhtp1u3T .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHyhtp1u3T .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHyhtp1u3T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHyhtp1u3T .mbr-section-title {
  color: #ffffff;
}
.cid-tHyhtp1u3T .mbr-text,
.cid-tHyhtp1u3T .mbr-section-btn {
  text-align: center;
}
.cid-tHyhtp1u3T .item-title {
  text-align: center;
}
.cid-tHyhtp1u3T .item-subtitle {
  text-align: left;
}
.cid-tHyhtpwg7e {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tHyhtpwg7e .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tHyhtpwg7e .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tHyhtpwg7e .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tHyhtpwg7e .bg-youtube:hover {
  background: #cc0000;
}
.cid-tHyhtpwg7e .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-tHyhtpwg7e [class^="socicon-"]:before,
.cid-tHyhtpwg7e [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tHyhtpYLHJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoRtxWlOz {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoRtxWlOz img,
.cid-tLoRtxWlOz .item-img {
  width: 100%;
}
.cid-tLoRtxWlOz .item:focus,
.cid-tLoRtxWlOz span:focus {
  outline: none;
}
.cid-tLoRtxWlOz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoRtxWlOz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoRtxWlOz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoRtxWlOz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoRtxWlOz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoRtxWlOz .mbr-section-title {
  color: #ffffff;
}
.cid-tLoRtxWlOz .mbr-text,
.cid-tLoRtxWlOz .mbr-section-btn {
  text-align: center;
}
.cid-tLoRtxWlOz .item-title {
  text-align: center;
}
.cid-tLoRtxWlOz .item-subtitle {
  text-align: left;
}
.cid-tLoRtyxAZF {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoRtyxAZF img,
.cid-tLoRtyxAZF .item-img {
  width: 100%;
}
.cid-tLoRtyxAZF .item:focus,
.cid-tLoRtyxAZF span:focus {
  outline: none;
}
.cid-tLoRtyxAZF .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoRtyxAZF .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoRtyxAZF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoRtyxAZF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoRtyxAZF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoRtyxAZF .mbr-section-title {
  color: #ffffff;
}
.cid-tLoRtyxAZF .mbr-text,
.cid-tLoRtyxAZF .mbr-section-btn {
  text-align: center;
}
.cid-tLoRtyxAZF .item-title {
  text-align: center;
}
.cid-tLoRtyxAZF .item-subtitle {
  text-align: left;
}
.cid-tLoRtzdTk0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoRtzdTk0 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoRtzdTk0 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoRtzdTk0 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoRtzdTk0 .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoRtzdTk0 .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-tLoRtzdTk0 [class^="socicon-"]:before,
.cid-tLoRtzdTk0 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoRtzDU1N {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoRyJNJFq {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoRyJNJFq img,
.cid-tLoRyJNJFq .item-img {
  width: 100%;
}
.cid-tLoRyJNJFq .item:focus,
.cid-tLoRyJNJFq span:focus {
  outline: none;
}
.cid-tLoRyJNJFq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoRyJNJFq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoRyJNJFq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoRyJNJFq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoRyJNJFq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoRyJNJFq .mbr-section-title {
  color: #ffffff;
}
.cid-tLoRyJNJFq .mbr-text,
.cid-tLoRyJNJFq .mbr-section-btn {
  text-align: center;
}
.cid-tLoRyJNJFq .item-title {
  text-align: center;
}
.cid-tLoRyJNJFq .item-subtitle {
  text-align: left;
}
.cid-tLoRyKjNrY {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoRyKjNrY img,
.cid-tLoRyKjNrY .item-img {
  width: 100%;
}
.cid-tLoRyKjNrY .item:focus,
.cid-tLoRyKjNrY span:focus {
  outline: none;
}
.cid-tLoRyKjNrY .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoRyKjNrY .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoRyKjNrY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoRyKjNrY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoRyKjNrY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoRyKjNrY .mbr-section-title {
  color: #ffffff;
}
.cid-tLoRyKjNrY .mbr-text,
.cid-tLoRyKjNrY .mbr-section-btn {
  text-align: center;
}
.cid-tLoRyKjNrY .item-title {
  text-align: center;
}
.cid-tLoRyKjNrY .item-subtitle {
  text-align: left;
}
.cid-tLoRyKZRDR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoRyKZRDR .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoRyKZRDR .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoRyKZRDR .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoRyKZRDR .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoRyKZRDR .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-tLoRyKZRDR [class^="socicon-"]:before,
.cid-tLoRyKZRDR [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoRyLpC2Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoRMagUES {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoRMagUES img,
.cid-tLoRMagUES .item-img {
  width: 100%;
}
.cid-tLoRMagUES .item:focus,
.cid-tLoRMagUES span:focus {
  outline: none;
}
.cid-tLoRMagUES .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoRMagUES .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoRMagUES .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoRMagUES .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoRMagUES .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoRMagUES .mbr-section-title {
  color: #ffffff;
}
.cid-tLoRMagUES .mbr-text,
.cid-tLoRMagUES .mbr-section-btn {
  text-align: center;
}
.cid-tLoRMagUES .item-title {
  text-align: center;
}
.cid-tLoRMagUES .item-subtitle {
  text-align: left;
}
.cid-tLoRMaS51R {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoRMaS51R img,
.cid-tLoRMaS51R .item-img {
  width: 100%;
}
.cid-tLoRMaS51R .item:focus,
.cid-tLoRMaS51R span:focus {
  outline: none;
}
.cid-tLoRMaS51R .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoRMaS51R .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoRMaS51R .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoRMaS51R .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoRMaS51R .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoRMaS51R .mbr-section-title {
  color: #ffffff;
}
.cid-tLoRMaS51R .mbr-text,
.cid-tLoRMaS51R .mbr-section-btn {
  text-align: center;
}
.cid-tLoRMaS51R .item-title {
  text-align: center;
}
.cid-tLoRMaS51R .item-subtitle {
  text-align: left;
}
.cid-tLoRMbT0XJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoRMbT0XJ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoRMbT0XJ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoRMbT0XJ .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoRMbT0XJ .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoRMbT0XJ .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-tLoRMbT0XJ [class^="socicon-"]:before,
.cid-tLoRMbT0XJ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoRMcmOpd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoSfSfHuQ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoSfSfHuQ img,
.cid-tLoSfSfHuQ .item-img {
  width: 100%;
}
.cid-tLoSfSfHuQ .item:focus,
.cid-tLoSfSfHuQ span:focus {
  outline: none;
}
.cid-tLoSfSfHuQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoSfSfHuQ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoSfSfHuQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoSfSfHuQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoSfSfHuQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoSfSfHuQ .mbr-section-title {
  color: #ffffff;
}
.cid-tLoSfSfHuQ .mbr-text,
.cid-tLoSfSfHuQ .mbr-section-btn {
  text-align: center;
}
.cid-tLoSfSfHuQ .item-title {
  text-align: center;
}
.cid-tLoSfSfHuQ .item-subtitle {
  text-align: left;
}
.cid-tLoSfSQKyZ {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoSfSQKyZ img,
.cid-tLoSfSQKyZ .item-img {
  width: 100%;
}
.cid-tLoSfSQKyZ .item:focus,
.cid-tLoSfSQKyZ span:focus {
  outline: none;
}
.cid-tLoSfSQKyZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoSfSQKyZ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoSfSQKyZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoSfSQKyZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoSfSQKyZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoSfSQKyZ .mbr-section-title {
  color: #ffffff;
}
.cid-tLoSfSQKyZ .mbr-text,
.cid-tLoSfSQKyZ .mbr-section-btn {
  text-align: center;
}
.cid-tLoSfSQKyZ .item-title {
  text-align: center;
}
.cid-tLoSfSQKyZ .item-subtitle {
  text-align: left;
}
.cid-tLoSfTwezn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoSfTwezn .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoSfTwezn .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoSfTwezn .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoSfTwezn .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoSfTwezn .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-tLoSfTwezn [class^="socicon-"]:before,
.cid-tLoSfTwezn [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoSfTZFB4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoSkMgu07 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoSkMgu07 img,
.cid-tLoSkMgu07 .item-img {
  width: 100%;
}
.cid-tLoSkMgu07 .item:focus,
.cid-tLoSkMgu07 span:focus {
  outline: none;
}
.cid-tLoSkMgu07 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoSkMgu07 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoSkMgu07 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoSkMgu07 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoSkMgu07 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoSkMgu07 .mbr-section-title {
  color: #ffffff;
}
.cid-tLoSkMgu07 .mbr-text,
.cid-tLoSkMgu07 .mbr-section-btn {
  text-align: center;
}
.cid-tLoSkMgu07 .item-title {
  text-align: center;
}
.cid-tLoSkMgu07 .item-subtitle {
  text-align: left;
}
.cid-tLoSkNmY9v {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoSkNmY9v .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoSkNmY9v .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoSkNmY9v .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoSkNmY9v .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoSkNmY9v .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-tLoSkNmY9v [class^="socicon-"]:before,
.cid-tLoSkNmY9v [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoSkNMlS7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoSE27SvC {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoSE27SvC img,
.cid-tLoSE27SvC .item-img {
  width: 100%;
}
.cid-tLoSE27SvC .item:focus,
.cid-tLoSE27SvC span:focus {
  outline: none;
}
.cid-tLoSE27SvC .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoSE27SvC .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoSE27SvC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoSE27SvC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoSE27SvC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoSE27SvC .mbr-section-title {
  color: #ffffff;
}
.cid-tLoSE27SvC .mbr-text,
.cid-tLoSE27SvC .mbr-section-btn {
  text-align: center;
}
.cid-tLoSE27SvC .item-title {
  text-align: center;
}
.cid-tLoSE27SvC .item-subtitle {
  text-align: left;
}
.cid-tLoSE2zieK {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoSE2zieK img,
.cid-tLoSE2zieK .item-img {
  width: 100%;
}
.cid-tLoSE2zieK .item:focus,
.cid-tLoSE2zieK span:focus {
  outline: none;
}
.cid-tLoSE2zieK .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoSE2zieK .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoSE2zieK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoSE2zieK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoSE2zieK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoSE2zieK .mbr-section-title {
  color: #ffffff;
}
.cid-tLoSE2zieK .mbr-text,
.cid-tLoSE2zieK .mbr-section-btn {
  text-align: center;
}
.cid-tLoSE2zieK .item-title {
  text-align: center;
}
.cid-tLoSE2zieK .item-subtitle {
  text-align: left;
}
.cid-tLoSE38Bo1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoSE38Bo1 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoSE38Bo1 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoSE38Bo1 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoSE38Bo1 .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoSE38Bo1 .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-tLoSE38Bo1 [class^="socicon-"]:before,
.cid-tLoSE38Bo1 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoSE3AcuJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLoSN9n6jc {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoSN9n6jc img,
.cid-tLoSN9n6jc .item-img {
  width: 100%;
}
.cid-tLoSN9n6jc .item:focus,
.cid-tLoSN9n6jc span:focus {
  outline: none;
}
.cid-tLoSN9n6jc .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoSN9n6jc .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoSN9n6jc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoSN9n6jc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoSN9n6jc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoSN9n6jc .mbr-section-title {
  color: #ffffff;
}
.cid-tLoSN9n6jc .mbr-text,
.cid-tLoSN9n6jc .mbr-section-btn {
  text-align: center;
}
.cid-tLoSN9n6jc .item-title {
  text-align: center;
}
.cid-tLoSN9n6jc .item-subtitle {
  text-align: left;
}
.cid-tLoSN9QDy1 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLoSN9QDy1 img,
.cid-tLoSN9QDy1 .item-img {
  width: 100%;
}
.cid-tLoSN9QDy1 .item:focus,
.cid-tLoSN9QDy1 span:focus {
  outline: none;
}
.cid-tLoSN9QDy1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLoSN9QDy1 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLoSN9QDy1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLoSN9QDy1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLoSN9QDy1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLoSN9QDy1 .mbr-section-title {
  color: #ffffff;
}
.cid-tLoSN9QDy1 .mbr-text,
.cid-tLoSN9QDy1 .mbr-section-btn {
  text-align: center;
}
.cid-tLoSN9QDy1 .item-title {
  text-align: center;
}
.cid-tLoSN9QDy1 .item-subtitle {
  text-align: left;
}
.cid-tLoSNatnvb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tLoSNatnvb .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLoSNatnvb .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLoSNatnvb .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tLoSNatnvb .bg-youtube:hover {
  background: #cc0000;
}
.cid-tLoSNatnvb .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-tLoSNatnvb [class^="socicon-"]:before,
.cid-tLoSNatnvb [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tLoSNaUIYF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tNjpmsMs2N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #40b0bf;
}
.cid-tNjpmsMs2N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNjpmsMs2N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNjpmsMs2N .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tNjpmsMs2N .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tNjpmsMs2N .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNjpmsMs2N .card-wrapper {
    padding: 4rem;
  }
}
.cid-tNjpmsMs2N .mbr-text,
.cid-tNjpmsMs2N .mbr-section-btn {
  text-align: left;
}
.cid-tNjoXTRI7F {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tNjoXTRI7F .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tNjoXTRI7F .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tNjoXTRI7F .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tNjoXTRI7F .bg-youtube:hover {
  background: #cc0000;
}
.cid-tNjoXTRI7F .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-tNjoXTRI7F [class^="socicon-"]:before,
.cid-tNjoXTRI7F [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tNjoXUjD5K {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
