body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #000000 !important;
}
.bg-success {
  background-color: #ffcc29 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #353535 !important;
}
.bg-danger {
  background-color: #232323 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff4300 !important;
  border-color: #ff4300 !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: #a82c00 !important;
  border-color: #a82c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a82c00 !important;
  border-color: #a82c00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffcc29 !important;
  border-color: #ffcc29 !important;
  color: #291f00 !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: #d19f00 !important;
  border-color: #d19f00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #291f00 !important;
  background-color: #d19f00 !important;
  border-color: #d19f00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #353535 !important;
  border-color: #353535 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-danger,
.btn-danger: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-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.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-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff4300;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a82c00 !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: #ff4300 !important;
  border-color: #ff4300 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffcc29;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d19f00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #291f00 !important;
  background-color: #ffcc29 !important;
  border-color: #ffcc29 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #353535;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #0a0a0a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #353535 !important;
  border-color: #353535 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #232323 !important;
  border-color: #232323 !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: #000000 !important;
}
.text-secondary {
  color: #ff4300 !important;
}
.text-success {
  color: #ffcc29 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #353535 !important;
}
.text-danger {
  color: #232323 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #992800 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c29400 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #020202 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #353535;
}
.alert-danger {
  background-color: #232323;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fffdf5;
}
.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: #a8a8a8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d5d5d5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff4300 !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='%23000000' %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-szQmpf4yEe .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-szQmpf4yEe .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-szQmpf4yEe a {
  font-style: normal;
}
.cid-szQmpf4yEe .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-szQmpf4yEe .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-szQmpf4yEe .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-szQmpf4yEe .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szQmpf4yEe .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szQmpf4yEe .nav-item:focus,
.cid-szQmpf4yEe .nav-link:focus {
  outline: none;
}
.cid-szQmpf4yEe .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szQmpf4yEe .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szQmpf4yEe .menu-logo {
  margin-right: auto;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szQmpf4yEe .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szQmpf4yEe .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szQmpf4yEe .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szQmpf4yEe .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szQmpf4yEe .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szQmpf4yEe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szQmpf4yEe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szQmpf4yEe .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szQmpf4yEe .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szQmpf4yEe .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-szQmpf4yEe .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szQmpf4yEe .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szQmpf4yEe .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szQmpf4yEe .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szQmpf4yEe .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szQmpf4yEe .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szQmpf4yEe button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szQmpf4yEe button.navbar-toggler:focus {
  outline: none;
}
.cid-szQmpf4yEe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-szQmpf4yEe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szQmpf4yEe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szQmpf4yEe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szQmpf4yEe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szQmpf4yEe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szQmpf4yEe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szQmpf4yEe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szQmpf4yEe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szQmpf4yEe .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szQmpf4yEe .collapsed .btn {
  display: -webkit-flex;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-szQmpf4yEe .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-szQmpf4yEe .collapsed button.navbar-toggler {
  display: block;
}
.cid-szQmpf4yEe .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szQmpf4yEe .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szQmpf4yEe .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szQmpf4yEe .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szQmpf4yEe .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szQmpf4yEe .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-szQmpf4yEe.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szQmpf4yEe img {
    height: 3.8rem !important;
  }
  .cid-szQmpf4yEe .icon-wrap {
    margin-top: 1rem;
  }
  .cid-szQmpf4yEe .menu-wrap {
    flex-direction: column;
  }
  .cid-szQmpf4yEe .btn {
    display: -webkit-flex;
  }
  .cid-szQmpf4yEe button.navbar-toggler {
    display: block;
  }
  .cid-szQmpf4yEe .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-szQmpf4yEe .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szQmpf4yEe .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing,
  .cid-szQmpf4yEe .navbar-collapse.show {
    display: block !important;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing .navbar-nav,
  .cid-szQmpf4yEe .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szQmpf4yEe .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-szQmpf4yEe .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing .navbar-buttons,
  .cid-szQmpf4yEe .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szQmpf4yEe .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szQmpf4yEe .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szQmpf4yEe .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szQmpf4yEe .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szQmpf4yEe .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-szQmpf4yEe .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-szQmpf4yEe .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-szQmpf4yEe .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-szQmpf4yEe .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szQmpf4yEe .nav-link:hover,
.cid-szQmpf4yEe .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-rEvgBYWIpJ {
  background-image: url("../../../assets/images/img-330-2000x1146.webp");
}
.cid-rEvgBYWIpJ h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-rEvgBYWIpJ h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rEvgBYWIpJ h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rEvgBYWIpJ H3 {
  color: #ffcc29;
  text-align: right;
}
.cid-rEvgBYWIpJ .mbr-text,
.cid-rEvgBYWIpJ .mbr-section-btn {
  text-align: center;
}
.cid-rEvgBYWIpJ H1 {
  text-align: center;
  color: #ffcc29;
}
.cid-rEvgDySddr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rEvgDySddr .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-rEvgDySddr .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/img-20220420-191710476-2000x1500.webp");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-rEvgDySddr .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #000000;
  z-index: 2;
  opacity: 1;
}
.cid-rEvgDySddr .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 4;
}
.cid-rEvgDySddr .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-rEvgDySddr .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-rEvgDySddr .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-rEvgDySddr .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-rEvgDySddr .col:hover .box-title2,
.cid-rEvgDySddr .col:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-rEvgDySddr .box-title2,
.cid-rEvgDySddr .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-rEvgDySddr .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #000000;
}
.cid-rEvgDySddr .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
@media (max-width: 767px) {
  .cid-rEvgDySddr .img-content {
    opacity: 1;
  }
  .cid-rEvgDySddr .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-rEvgDySddr .box-content {
    width: 100%;
  }
  .cid-rEvgDySddr .box-title2,
  .cid-rEvgDySddr .box-text2 {
    color: #ffffff !important;
  }
  .cid-rEvgDySddr .content-block,
  .cid-rEvgDySddr .content1 {
    padding: 3rem 1rem;
  }
}
.cid-rEvgDySddr .box-text1 {
  color: #333333;
}
.cid-rEvgDySddr .box-title2 {
  color: #ffffff;
}
.cid-sH2lOysron {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sH2lOysron .container-fluid {
    padding: 0;
  }
  .cid-sH2lOysron .text-wrapper {
    max-width: 700px;
    padding: 0 6rem;
  }
  .cid-sH2lOysron .mbr-section-title {
    margin-left: -3rem;
  }
}
.cid-sH2lOysron .row {
  align-items: center;
}
.cid-sH2lOysron .animate__fadeInUp:before {
  background: #ffffff;
}
.cid-sH2lOysron .mbr-text,
.cid-sH2lOysron .mbr-section-btn {
  color: #000000;
}
.cid-sH2lOysron .mbr-section-title {
  color: #000000;
}
.cid-rEvgEvbKJi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rEvgEvbKJi .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-rEvgEvbKJi .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/gopr4033-2000x1500.webp");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-rEvgEvbKJi .block2 {
  background: #ffcc29;
  display: flex;
  justify-content: center;
}
.cid-rEvgEvbKJi p {
  margin-left: 10rem;
  max-width: 450px;
}
.cid-rEvgEvbKJi .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #000000;
  z-index: 2;
  opacity: 1;
}
.cid-rEvgEvbKJi .box-title2,
.cid-rEvgEvbKJi .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-rEvgEvbKJi .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 4;
}
.cid-rEvgEvbKJi .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-rEvgEvbKJi .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-rEvgEvbKJi .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-rEvgEvbKJi .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-rEvgEvbKJi .col:hover .box-title2,
.cid-rEvgEvbKJi .col:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-rEvgEvbKJi .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #000000;
}
.cid-rEvgEvbKJi .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
@media (max-width: 767px) {
  .cid-rEvgEvbKJi .img-content {
    opacity: 1;
  }
  .cid-rEvgEvbKJi .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-rEvgEvbKJi .box-content {
    width: 100%;
  }
  .cid-rEvgEvbKJi .box-title2,
  .cid-rEvgEvbKJi .box-text2 {
    color: #ffffff !important;
  }
  .cid-rEvgEvbKJi p {
    margin-left: 0;
  }
  .cid-rEvgEvbKJi .content-block,
  .cid-rEvgEvbKJi .content1 {
    padding: 3rem 1rem;
  }
}
.cid-rEvgEvbKJi .box-text1 {
  color: #333333;
}
.cid-rEvgEvbKJi .box-title2 {
  color: #ffffff;
}
.cid-rEvgEvbKJi .box-text2 {
  color: #ffffff;
  text-align: left;
}
.cid-rEvgEvbKJi .mbr-text,
.cid-rEvgEvbKJi .mbr-section-btn {
  color: #000000;
}
.cid-rEvgEvbKJi H2 {
  color: #000000;
}
.cid-rEvgEvbKJi H3 {
  color: #ffffff;
}
.cid-rEvgEVBVk3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rEvgEVBVk3 .mbr-text {
    text-align: center;
  }
}
.cid-rEvgEVBVk3 .container-fluid {
  padding: 0;
}
.cid-rEvgEVBVk3 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-rEvgEVBVk3 img {
  height: 100%;
  object-fit: cover;
}
.cid-rEvgEVBVk3 .mbr-figure {
  height: 100%;
}
.cid-rEvgEVBVk3 .col-lg-6 {
  padding: 0;
}
.cid-rEvgEVBVk3 .row {
  margin: 0;
}
.cid-rEvgGbq33U {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rEvgGbq33U h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-rEvgGbq33U h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rEvgGbq33U h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rEvgGbq33U .mbr-text,
.cid-rEvgGbq33U .mbr-section-btn {
  color: #767676;
}
.cid-rEvgGz1k2E {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-rEvgGz1k2E img {
  width: 65%;
  pointer-events: all;
}
.cid-rEvgGz1k2E .row {
  justify-content: center;
}
.cid-rEvgGz1k2E .img1 {
  position: absolute;
  left: -8rem;
  top: 5rem;
  z-index: 4;
  width: 100%;
  pointer-events: none;
}
.cid-rEvgGz1k2E .img2 {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  pointer-events: none;
}
.cid-rEvgGz1k2E .img3 {
  position: absolute;
  top: 12rem;
  right: -8rem;
  width: 100%;
  pointer-events: none;
}
.cid-rEvgGz1k2E .item {
  height: 600px;
  margin: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rEvgGz1k2E .img1 {
    left: -2rem;
    top: 5rem;
  }
  .cid-rEvgGz1k2E .img2 {
    top: 0rem;
    left: 0rem;
  }
  .cid-rEvgGz1k2E .img3 {
    top: 8rem;
    right: -2rem;
  }
  .cid-rEvgGz1k2E .item {
    height: 300px;
  }
}
.cid-rEvgHATIvB {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rEvgHATIvB .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-rEvgHATIvB .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-rEvgHATIvB .image-block:hover:before {
  opacity: 0.4;
}
.cid-rEvgHATIvB .image-block:hover .wrap {
  opacity: 1;
}
.cid-rEvgHATIvB .image-block:hover img {
  transform: scale(1.05);
}
.cid-rEvgHATIvB .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-rEvgHATIvB h4 {
  letter-spacing: 2px;
}
.cid-rEvgHATIvB figcaption {
  position: relative;
}
.cid-rEvgHATIvB figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-rEvgHATIvB img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-rEvgHATIvB .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-rEvgHATIvB .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-rEvgHATIvB .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-rEvgHATIvB .image-block:before {
    opacity: 0.4;
  }
  .cid-rEvgHATIvB .image-block .wrap {
    opacity: 1;
  }
}
.cid-szQ1DvCNsh {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffcc29;
}
.cid-szQ1DvCNsh .card-box {
  padding: 2rem;
  width: auto;
}
.cid-szQ1DvCNsh .img-wrapper {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-szQ1DvCNsh .mbr-iconfont {
  display: block;
  font-size: 10rem;
  color: #000000;
  margin-bottom: 2rem;
}
.cid-szQ1DvCNsh .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-szQ1DvCNsh .card-wrapper {
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-szQ1DvCNsh .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-szQ1DvCNsh .card-wrapper {
    flex-direction: column;
  }
  .cid-szQ1DvCNsh .card-box {
    padding: 1rem;
  }
  .cid-szQ1DvCNsh .card-box,
  .cid-szQ1DvCNsh .img-wrapper {
    width: 100%;
  }
  .cid-szQ1DvCNsh .img-wrapper {
    padding: 2rem 1rem;
  }
  .cid-szQ1DvCNsh .mbr-flex {
    flex-direction: column;
  }
}
.cid-szQ1DvCNsh .card-subtitle {
  color: #000000;
}
.cid-szQ1DvCNsh .mbr-text,
.cid-szQ1DvCNsh .link-wrap {
  color: #555555;
}
.cid-szQ1DvCNsh .mbr-text,
.cid-szQ1DvCNsh .mbr-section-btn {
  color: #232323;
}
.cid-sH2iou8a48 .google-map {
  height: 30rem;
  position: relative;
  filter: grayscale(1);
}
.cid-sH2iou8a48 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sH2iou8a48 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sH2iou8a48 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sH2iou8a48 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-szQ8Rwx21G {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-szQ8Rwx21G .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-szQ8Rwx21G .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-szQ8Rwx21G .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-szQ8Rwx21G .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-szQ8Rwx21G .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-szQ8Rwx21G .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-szQ8Rwx21G .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-szQ8Rwx21G .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-szQ8Rwx21G .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-szQ8Rwx21G .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-szQ8Rwx21G .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-szQ8Rwx21G .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-szQ8Rwx21G .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-szQ8Rwx21G .list-block {
  position: relative;
}
.cid-szQ8Rwx21G .list-block h4,
.cid-szQ8Rwx21G .list-block p {
  padding-left: 4.5rem;
}
.cid-szQ8Rwx21G .card-img {
  display: block;
}
.cid-szQ8Rwx21G input,
.cid-szQ8Rwx21G textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-szQ8Rwx21G input:focus,
.cid-szQ8Rwx21G textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-szQ8Rwx21G .form-control,
.cid-szQ8Rwx21G .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-szQ8Rwx21G .form-control:hover,
.cid-szQ8Rwx21G .field-input:hover,
.cid-szQ8Rwx21G .form-control:focus,
.cid-szQ8Rwx21G .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-szQ8Rwx21G input::-webkit-input-placeholder,
.cid-szQ8Rwx21G textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-szQ8Rwx21G input:-moz-placeholder,
.cid-szQ8Rwx21G textarea:-moz-placeholder {
  color: #28303f;
}
.cid-szQ8Rwx21G .jq-selectbox li,
.cid-szQ8Rwx21G .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-szQ8Rwx21G .jq-selectbox li:hover,
.cid-szQ8Rwx21G .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-szQ8Rwx21G .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-szQ8Rwx21G .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-szQ8Rwx21G .mbr-form {
  max-width: 550px;
}
.cid-szQ8Rwx21G .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-szQ8Rwx21G .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-szQ8Rwx21G .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-szQ8Rwx21G .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-szQ8Rwx21G .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-szQ8Rwx21G .mbr-form textarea {
  min-height: 100px;
}
.cid-szQ8Rwx21G .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #000000;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-szQ8Rwx21G .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-szQ8Rwx21G .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-szQ8Rwx21G .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-szQ8Rwx21G .mbr-section-title,
  .cid-szQ8Rwx21G .content-title,
  .cid-szQ8Rwx21G .mbr-section-btn {
    text-align: left;
  }
}
.cid-szQ8Rwx21G .text-content .list-block .list-item-title {
  color: #000000;
}
.cid-szQ8Rwx21G .mbr-form .mbr-subtitle,
.cid-szQ8Rwx21G .mbr-section-btn {
  color: #ffcc29;
}
.cid-szQ8Rwx21G .mbr-form .mbr-section-title,
.cid-szQ8Rwx21G .mbr-section-btn {
  color: #000000;
}
.cid-szQ8Rwx21G .text-content .content-title,
.cid-szQ8Rwx21G .social {
  color: #000000;
}
.cid-rEvgJD8y5P {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-rEvgJD8y5P .content {
    text-align: center;
  }
  .cid-rEvgJD8y5P .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rEvgJD8y5P .img-logo img {
  height: 6rem;
}
.cid-rEvgJD8y5P .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rEvgJD8y5P .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rEvgJD8y5P .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rEvgJD8y5P .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rEvgJD8y5P .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rEvgJD8y5P .social-list a:hover {
  opacity: 1;
}
.cid-rEvgJD8y5P .list {
  list-style-type: none;
  padding: 0;
}
.cid-rEvgJD8y5P .list li {
  padding-bottom: .5rem;
}
.cid-rEvgJD8y5P .list li:last-child {
  padding-bottom: 0;
}
.cid-rEvgJD8y5P .mbr-footer-list,
.cid-rEvgJD8y5P .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rEvgJD8y5P .mbr-footer-list,
  .cid-rEvgJD8y5P .form-text,
  .cid-rEvgJD8y5P .footer-title,
  .cid-rEvgJD8y5P .footer-main-title,
  .cid-rEvgJD8y5P .form-text,
  .cid-rEvgJD8y5P .list {
    text-align: center !important;
  }
  .cid-rEvgJD8y5P .mbr-form,
  .cid-rEvgJD8y5P .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-rEvgJD8y5P .footer-main-title {
  color: #ffcc29;
}
.cid-rEvgJD8y5P .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-szRJo9Uyz8 .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-szRJo9Uyz8 .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-szRJo9Uyz8 a {
  font-style: normal;
}
.cid-szRJo9Uyz8 .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-szRJo9Uyz8 .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-szRJo9Uyz8 .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-szRJo9Uyz8 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szRJo9Uyz8 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szRJo9Uyz8 .nav-item:focus,
.cid-szRJo9Uyz8 .nav-link:focus {
  outline: none;
}
.cid-szRJo9Uyz8 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szRJo9Uyz8 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szRJo9Uyz8 .menu-logo {
  margin-right: auto;
}
.cid-szRJo9Uyz8 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szRJo9Uyz8 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szRJo9Uyz8 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-szRJo9Uyz8 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szRJo9Uyz8 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szRJo9Uyz8 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szRJo9Uyz8 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szRJo9Uyz8 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szRJo9Uyz8 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szRJo9Uyz8 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szRJo9Uyz8 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szRJo9Uyz8 .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szRJo9Uyz8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szRJo9Uyz8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szRJo9Uyz8 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szRJo9Uyz8 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szRJo9Uyz8 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-szRJo9Uyz8 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szRJo9Uyz8 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szRJo9Uyz8 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szRJo9Uyz8 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szRJo9Uyz8 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szRJo9Uyz8 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szRJo9Uyz8 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szRJo9Uyz8 button.navbar-toggler:focus {
  outline: none;
}
.cid-szRJo9Uyz8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-szRJo9Uyz8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szRJo9Uyz8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szRJo9Uyz8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szRJo9Uyz8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szRJo9Uyz8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szRJo9Uyz8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szRJo9Uyz8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szRJo9Uyz8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szRJo9Uyz8 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szRJo9Uyz8 .collapsed .btn {
  display: -webkit-flex;
}
.cid-szRJo9Uyz8 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.collapsing,
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szRJo9Uyz8 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-szRJo9Uyz8 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-szRJo9Uyz8 .collapsed button.navbar-toggler {
  display: block;
}
.cid-szRJo9Uyz8 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szRJo9Uyz8 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szRJo9Uyz8 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szRJo9Uyz8 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szRJo9Uyz8 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szRJo9Uyz8 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-szRJo9Uyz8.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szRJo9Uyz8 img {
    height: 3.8rem !important;
  }
  .cid-szRJo9Uyz8 .icon-wrap {
    margin-top: 1rem;
  }
  .cid-szRJo9Uyz8 .menu-wrap {
    flex-direction: column;
  }
  .cid-szRJo9Uyz8 .btn {
    display: -webkit-flex;
  }
  .cid-szRJo9Uyz8 button.navbar-toggler {
    display: block;
  }
  .cid-szRJo9Uyz8 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-szRJo9Uyz8 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szRJo9Uyz8 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szRJo9Uyz8 .navbar-collapse.collapsing,
  .cid-szRJo9Uyz8 .navbar-collapse.show {
    display: block !important;
  }
  .cid-szRJo9Uyz8 .navbar-collapse.collapsing .navbar-nav,
  .cid-szRJo9Uyz8 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szRJo9Uyz8 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szRJo9Uyz8 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szRJo9Uyz8 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-szRJo9Uyz8 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-szRJo9Uyz8 .navbar-collapse.collapsing .navbar-buttons,
  .cid-szRJo9Uyz8 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szRJo9Uyz8 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szRJo9Uyz8 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szRJo9Uyz8 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szRJo9Uyz8 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szRJo9Uyz8 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szRJo9Uyz8 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-szRJo9Uyz8 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-szRJo9Uyz8 .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-szRJo9Uyz8 .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-szRJo9Uyz8 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szRJo9Uyz8 .nav-link:hover,
.cid-szRJo9Uyz8 .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-szRJo7jxgm {
  background-image: url("../../../assets/images/gopr2810-2000x1500.webp");
}
.cid-szRJo7jxgm .mbr-section-title {
  text-align: right;
  color: #ffcc29;
}
.cid-szRJo7jxgm .mbr-text,
.cid-szRJo7jxgm .mbr-section-btn {
  text-align: right;
}
.cid-szRNDICOzj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szRNDICOzj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szRNDICOzj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szRNDICOzj .text-wrapper {
    padding: 2rem;
  }
}
.cid-szROGfQgQC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-szROGfQgQC .line {
  background-color: #ffcc29;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-szRP0ZZds9 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-szRP0ZZds9 .mbr-text {
  color: #767676;
}
.cid-szRP0ZZds9 h4 {
  text-align: center;
}
.cid-szRP0ZZds9 p {
  text-align: center;
}
.cid-szRP0ZZds9 .card .card-img {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-szRP0ZZds9 .card:hover .step {
  color: #ffffff;
  border: 0px solid transparent;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-szRP0ZZds9 .card:hover .step:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cid-szRP0ZZds9 .step {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s;
}
.cid-szRP0ZZds9 .step:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.3s;
  background: linear-gradient(45deg, #ffcc29, #ffcc29);
  border-radius: 50%;
}
.cid-szRP0ZZds9 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-szRP0ZZds9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff4300);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-szRP0ZZds9 .mbr-section-title,
  .cid-szRP0ZZds9 .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-szRP0ZZds9 SPAN {
  color: #000000;
}
.cid-szRPZ2sSRd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szRPZ2sSRd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szRPZ2sSRd .row {
  flex-direction: row-reverse;
}
.cid-szRPZ2sSRd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szRPZ2sSRd .text-wrapper {
    padding: 2rem;
  }
}
.cid-szRTtNVYI6 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-szRTtNVYI6 .mbr-text {
  color: #767676;
}
.cid-szRTtNVYI6 .mbr-section-subtitle {
  color: #767676;
}
.cid-szRTtNVYI6 .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szRTtNVYI6 .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 3.4rem;
}
.cid-szRTtNVYI6 .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-szRTtNVYI6 .card-text {
  margin-top: 2rem;
}
.cid-szRTtNVYI6 .card-box {
  margin-bottom: 1rem;
}
.cid-szRTtNVYI6 .num {
  color: #ffcc29;
}
@media (max-width: 767px) {
  .cid-szRTtNVYI6 .num,
  .cid-szRTtNVYI6 .card-title,
  .cid-szRTtNVYI6 .mbr-text,
  .cid-szRTtNVYI6 .mbr-title,
  .cid-szRTtNVYI6 .mbr-section-subtitle,
  .cid-szRTtNVYI6 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-szRTtNVYI6 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-szRU3NEX4K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-szRU3NEX4K .mbr-text {
  color: #767676;
}
.cid-szRU3NEX4K .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-szRU3NEX4K .mbr-section-subtitle {
  color: #767676;
}
.cid-szRU3NEX4K .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szRU3NEX4K .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 3.4rem;
}
.cid-szRU3NEX4K .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-szRU3NEX4K .card-text {
  margin-top: 2rem;
}
.cid-szRU3NEX4K .card-box {
  margin-bottom: 1rem;
}
.cid-szRU3NEX4K .num {
  color: #ffcc29;
}
@media (max-width: 767px) {
  .cid-szRU3NEX4K .num,
  .cid-szRU3NEX4K .card-title,
  .cid-szRU3NEX4K .mbr-text,
  .cid-szRU3NEX4K .mbr-title,
  .cid-szRU3NEX4K .mbr-section-subtitle,
  .cid-szRU3NEX4K .mbr-section-btn {
    text-align: center !important;
  }
  .cid-szRU3NEX4K .content-column {
    margin-bottom: 2rem;
  }
}
.cid-szRUly9X98 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szRUly9X98 .mbr-section-title {
  color: #ffcc29;
}
.cid-szRV0qeszB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-szRV0qeszB .container {
    max-width: 1400px;
  }
}
.cid-szRV0qeszB .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffcc29;
  margin-bottom: 2rem;
}
.cid-szRV0qeszB .card-wrapper {
  margin-top: 3rem;
}
.cid-szRV0qeszB .row {
  justify-content: center;
}
.cid-szRVRkQ7SZ {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-szRVRkQ7SZ .container {
    max-width: 1400px;
  }
}
.cid-szRVRkQ7SZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffcc29;
  margin-bottom: 2rem;
}
.cid-szRVRkQ7SZ .card-wrapper {
  margin-top: 3rem;
}
.cid-szRVRkQ7SZ .row {
  justify-content: center;
}
.cid-szRWGl5jRZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szRWGl5jRZ .line {
  background-color: #ffcc29;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-szRWQmGWbV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szRWQmGWbV blockquote {
  border-color: #ffcc29;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-szRXb6ziHH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-szRXb6ziHH [class^="socicon-"]:before,
.cid-szRXb6ziHH [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-szRXb6ziHH .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-szRXb6ziHH .btn-social:hover {
  background: #ffcc29;
}
.cid-szRXb6ziHH .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-szRXb6ziHH .mbr-section-title,
.cid-szRXb6ziHH .mbr-social-likes {
  text-align: right;
}
.cid-szRJo99mzz {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-szRJo99mzz .content {
    text-align: center;
  }
  .cid-szRJo99mzz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-szRJo99mzz .img-logo img {
  height: 6rem;
}
.cid-szRJo99mzz .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-szRJo99mzz .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-szRJo99mzz .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-szRJo99mzz .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-szRJo99mzz .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szRJo99mzz .social-list a:hover {
  opacity: 1;
}
.cid-szRJo99mzz .list {
  list-style-type: none;
  padding: 0;
}
.cid-szRJo99mzz .list li {
  padding-bottom: .5rem;
}
.cid-szRJo99mzz .list li:last-child {
  padding-bottom: 0;
}
.cid-szRJo99mzz .mbr-footer-list,
.cid-szRJo99mzz .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-szRJo99mzz .mbr-footer-list,
  .cid-szRJo99mzz .form-text,
  .cid-szRJo99mzz .footer-title,
  .cid-szRJo99mzz .footer-main-title,
  .cid-szRJo99mzz .form-text,
  .cid-szRJo99mzz .list {
    text-align: center !important;
  }
  .cid-szRJo99mzz .mbr-form,
  .cid-szRJo99mzz .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-szRJo99mzz .footer-main-title {
  color: #ffcc29;
}
.cid-szRJo99mzz .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-szS3tz7KXX .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-szS3tz7KXX .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-szS3tz7KXX a {
  font-style: normal;
}
.cid-szS3tz7KXX .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-szS3tz7KXX .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-szS3tz7KXX .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-szS3tz7KXX .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szS3tz7KXX .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szS3tz7KXX .nav-item:focus,
.cid-szS3tz7KXX .nav-link:focus {
  outline: none;
}
.cid-szS3tz7KXX .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szS3tz7KXX .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szS3tz7KXX .menu-logo {
  margin-right: auto;
}
.cid-szS3tz7KXX .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szS3tz7KXX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szS3tz7KXX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-szS3tz7KXX .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szS3tz7KXX .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szS3tz7KXX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szS3tz7KXX .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szS3tz7KXX .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szS3tz7KXX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szS3tz7KXX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szS3tz7KXX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szS3tz7KXX .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szS3tz7KXX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szS3tz7KXX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szS3tz7KXX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szS3tz7KXX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szS3tz7KXX .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-szS3tz7KXX .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szS3tz7KXX .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szS3tz7KXX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szS3tz7KXX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szS3tz7KXX .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szS3tz7KXX .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szS3tz7KXX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szS3tz7KXX button.navbar-toggler:focus {
  outline: none;
}
.cid-szS3tz7KXX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-szS3tz7KXX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szS3tz7KXX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szS3tz7KXX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szS3tz7KXX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szS3tz7KXX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szS3tz7KXX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szS3tz7KXX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szS3tz7KXX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szS3tz7KXX .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szS3tz7KXX .collapsed .btn {
  display: -webkit-flex;
}
.cid-szS3tz7KXX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szS3tz7KXX .collapsed .navbar-collapse.collapsing,
.cid-szS3tz7KXX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szS3tz7KXX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szS3tz7KXX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szS3tz7KXX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szS3tz7KXX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szS3tz7KXX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-szS3tz7KXX .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-szS3tz7KXX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szS3tz7KXX .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szS3tz7KXX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szS3tz7KXX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-szS3tz7KXX .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-szS3tz7KXX .collapsed button.navbar-toggler {
  display: block;
}
.cid-szS3tz7KXX .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szS3tz7KXX .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szS3tz7KXX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szS3tz7KXX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szS3tz7KXX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szS3tz7KXX .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-szS3tz7KXX.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szS3tz7KXX img {
    height: 3.8rem !important;
  }
  .cid-szS3tz7KXX .icon-wrap {
    margin-top: 1rem;
  }
  .cid-szS3tz7KXX .menu-wrap {
    flex-direction: column;
  }
  .cid-szS3tz7KXX .btn {
    display: -webkit-flex;
  }
  .cid-szS3tz7KXX button.navbar-toggler {
    display: block;
  }
  .cid-szS3tz7KXX .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-szS3tz7KXX .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szS3tz7KXX .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szS3tz7KXX .navbar-collapse.collapsing,
  .cid-szS3tz7KXX .navbar-collapse.show {
    display: block !important;
  }
  .cid-szS3tz7KXX .navbar-collapse.collapsing .navbar-nav,
  .cid-szS3tz7KXX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szS3tz7KXX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szS3tz7KXX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szS3tz7KXX .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-szS3tz7KXX .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-szS3tz7KXX .navbar-collapse.collapsing .navbar-buttons,
  .cid-szS3tz7KXX .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szS3tz7KXX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szS3tz7KXX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szS3tz7KXX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szS3tz7KXX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szS3tz7KXX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szS3tz7KXX .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-szS3tz7KXX .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-szS3tz7KXX .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-szS3tz7KXX .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-szS3tz7KXX .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szS3tz7KXX .nav-link:hover,
.cid-szS3tz7KXX .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-szS3trHIEo {
  background-image: url("../../../assets/images/img-20210508-082546390-hdr-2000x947.webp");
}
.cid-szS3trHIEo .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-szS3trHIEo .mbr-text,
.cid-szS3trHIEo .mbr-section-btn {
  text-align: left;
}
.cid-szS6cqR6ZA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szS6cqR6ZA .mbr-section-title DIV {
  text-align: left;
}
.cid-szS6cqR6ZA .mbr-section-title {
  text-align: left;
}
.cid-szS6cqR6ZA .mbr-section-subtitle {
  text-align: left;
}
.cid-szS6dNzu08 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-szS6QLO5L7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szS6QLO5L7 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-szS6QLO5L7 .item:last-child .icon-box:before {
  display: none;
}
.cid-szS6QLO5L7 .item.last .icon-box:before {
  display: none;
}
.cid-szS6QLO5L7 .icon-box {
  background: #ffcc29;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-szS6QLO5L7 .icon-box {
    margin-right: 1rem;
  }
}
.cid-szS6QLO5L7 .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #ffcc29;
  transform: translate(-50%, 0);
}
.cid-szS6QLO5L7 span {
  font-size: 2rem;
  color: #291f00;
}
@media (max-width: 991px) {
  .cid-szS6QLO5L7 .card {
    margin-bottom: 2rem;
  }
  .cid-szS6QLO5L7 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-szS6QLO5L7 .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-szS6QLO5L7 .icon-box::before {
    top: 114%;
  }
}
.cid-szS6QLO5L7 .mbr-text,
.cid-szS6QLO5L7 .mbr-section-btn {
  text-align: left;
}
.cid-szWg7xd5zm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szWg7xd5zm ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-szWg7xd5zm li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-szWg7xd5zm ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-szWjdFLoKs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-szWjdFLoKs .line {
  background-color: #ffcc29;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-szS3txElIZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-szS3txElIZ [class^="socicon-"]:before,
.cid-szS3txElIZ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-szS3txElIZ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-szS3txElIZ .btn-social:hover {
  background: #ffcc29;
}
.cid-szS3txElIZ .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-szS3txElIZ .mbr-section-title,
.cid-szS3txElIZ .mbr-social-likes {
  text-align: right;
}
.cid-szS3ty4hx5 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-szS3ty4hx5 .content {
    text-align: center;
  }
  .cid-szS3ty4hx5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-szS3ty4hx5 .img-logo img {
  height: 6rem;
}
.cid-szS3ty4hx5 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-szS3ty4hx5 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-szS3ty4hx5 .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-szS3ty4hx5 .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-szS3ty4hx5 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szS3ty4hx5 .social-list a:hover {
  opacity: 1;
}
.cid-szS3ty4hx5 .list {
  list-style-type: none;
  padding: 0;
}
.cid-szS3ty4hx5 .list li {
  padding-bottom: .5rem;
}
.cid-szS3ty4hx5 .list li:last-child {
  padding-bottom: 0;
}
.cid-szS3ty4hx5 .mbr-footer-list,
.cid-szS3ty4hx5 .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-szS3ty4hx5 .mbr-footer-list,
  .cid-szS3ty4hx5 .form-text,
  .cid-szS3ty4hx5 .footer-title,
  .cid-szS3ty4hx5 .footer-main-title,
  .cid-szS3ty4hx5 .form-text,
  .cid-szS3ty4hx5 .list {
    text-align: center !important;
  }
  .cid-szS3ty4hx5 .mbr-form,
  .cid-szS3ty4hx5 .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-szS3ty4hx5 .footer-main-title {
  color: #ffcc29;
}
.cid-szS3ty4hx5 .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-szWk9z6guG .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-szWk9z6guG .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-szWk9z6guG a {
  font-style: normal;
}
.cid-szWk9z6guG .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-szWk9z6guG .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-szWk9z6guG .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-szWk9z6guG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szWk9z6guG .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szWk9z6guG .nav-item:focus,
.cid-szWk9z6guG .nav-link:focus {
  outline: none;
}
.cid-szWk9z6guG .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szWk9z6guG .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szWk9z6guG .menu-logo {
  margin-right: auto;
}
.cid-szWk9z6guG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szWk9z6guG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szWk9z6guG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-szWk9z6guG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szWk9z6guG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szWk9z6guG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szWk9z6guG .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szWk9z6guG .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szWk9z6guG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szWk9z6guG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szWk9z6guG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szWk9z6guG .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szWk9z6guG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szWk9z6guG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szWk9z6guG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szWk9z6guG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szWk9z6guG .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-szWk9z6guG .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szWk9z6guG .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szWk9z6guG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szWk9z6guG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szWk9z6guG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szWk9z6guG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szWk9z6guG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szWk9z6guG button.navbar-toggler:focus {
  outline: none;
}
.cid-szWk9z6guG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-szWk9z6guG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szWk9z6guG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szWk9z6guG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szWk9z6guG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szWk9z6guG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szWk9z6guG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szWk9z6guG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szWk9z6guG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szWk9z6guG .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szWk9z6guG .collapsed .btn {
  display: -webkit-flex;
}
.cid-szWk9z6guG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szWk9z6guG .collapsed .navbar-collapse.collapsing,
.cid-szWk9z6guG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szWk9z6guG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szWk9z6guG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szWk9z6guG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szWk9z6guG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szWk9z6guG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-szWk9z6guG .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-szWk9z6guG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szWk9z6guG .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szWk9z6guG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szWk9z6guG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-szWk9z6guG .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-szWk9z6guG .collapsed button.navbar-toggler {
  display: block;
}
.cid-szWk9z6guG .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szWk9z6guG .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szWk9z6guG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szWk9z6guG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szWk9z6guG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szWk9z6guG .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-szWk9z6guG.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szWk9z6guG img {
    height: 3.8rem !important;
  }
  .cid-szWk9z6guG .icon-wrap {
    margin-top: 1rem;
  }
  .cid-szWk9z6guG .menu-wrap {
    flex-direction: column;
  }
  .cid-szWk9z6guG .btn {
    display: -webkit-flex;
  }
  .cid-szWk9z6guG button.navbar-toggler {
    display: block;
  }
  .cid-szWk9z6guG .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-szWk9z6guG .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szWk9z6guG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szWk9z6guG .navbar-collapse.collapsing,
  .cid-szWk9z6guG .navbar-collapse.show {
    display: block !important;
  }
  .cid-szWk9z6guG .navbar-collapse.collapsing .navbar-nav,
  .cid-szWk9z6guG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szWk9z6guG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szWk9z6guG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szWk9z6guG .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-szWk9z6guG .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-szWk9z6guG .navbar-collapse.collapsing .navbar-buttons,
  .cid-szWk9z6guG .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szWk9z6guG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szWk9z6guG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szWk9z6guG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szWk9z6guG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szWk9z6guG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szWk9z6guG .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-szWk9z6guG .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-szWk9z6guG .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-szWk9z6guG .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-szWk9z6guG .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szWk9z6guG .nav-link:hover,
.cid-szWk9z6guG .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-szWk9vyGP3 {
  background-image: url("../../../assets/images/img-20210609-201803888-2000x1500.webp");
}
.cid-szWk9vyGP3 .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-szWk9vyGP3 .mbr-text,
.cid-szWk9vyGP3 .mbr-section-btn {
  text-align: left;
}
.cid-szWlf8tfLC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szWlf8tfLC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szWlf8tfLC .row {
  flex-direction: row-reverse;
}
.cid-szWlf8tfLC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szWlf8tfLC .text-wrapper {
    padding: 2rem;
  }
}
.cid-szWk9wJ2SY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szWk9wJ2SY .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-szWk9wJ2SY .item:last-child .icon-box:before {
  display: none;
}
.cid-szWk9wJ2SY .item.last .icon-box:before {
  display: none;
}
.cid-szWk9wJ2SY .icon-box {
  background: #ffcc29;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-szWk9wJ2SY .icon-box {
    margin-right: 1rem;
  }
}
.cid-szWk9wJ2SY .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #ffcc29;
  transform: translate(-50%, 0);
}
.cid-szWk9wJ2SY span {
  font-size: 2rem;
  color: #291f00;
}
@media (max-width: 991px) {
  .cid-szWk9wJ2SY .card {
    margin-bottom: 2rem;
  }
  .cid-szWk9wJ2SY .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-szWk9wJ2SY .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-szWk9wJ2SY .icon-box::before {
    top: 114%;
  }
}
.cid-szWk9wJ2SY .mbr-text,
.cid-szWk9wJ2SY .mbr-section-btn {
  text-align: left;
}
.cid-szWk9xRpNr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-szWk9xRpNr .line {
  background-color: #ffcc29;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-szWk9y2J9f {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-szWk9y2J9f [class^="socicon-"]:before,
.cid-szWk9y2J9f [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-szWk9y2J9f .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-szWk9y2J9f .btn-social:hover {
  background: #ffcc29;
}
.cid-szWk9y2J9f .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-szWk9y2J9f .mbr-section-title,
.cid-szWk9y2J9f .mbr-social-likes {
  text-align: right;
}
.cid-szWk9yh19o {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-szWk9yh19o .content {
    text-align: center;
  }
  .cid-szWk9yh19o .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-szWk9yh19o .img-logo img {
  height: 6rem;
}
.cid-szWk9yh19o .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-szWk9yh19o .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-szWk9yh19o .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-szWk9yh19o .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-szWk9yh19o .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szWk9yh19o .social-list a:hover {
  opacity: 1;
}
.cid-szWk9yh19o .list {
  list-style-type: none;
  padding: 0;
}
.cid-szWk9yh19o .list li {
  padding-bottom: .5rem;
}
.cid-szWk9yh19o .list li:last-child {
  padding-bottom: 0;
}
.cid-szWk9yh19o .mbr-footer-list,
.cid-szWk9yh19o .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-szWk9yh19o .mbr-footer-list,
  .cid-szWk9yh19o .form-text,
  .cid-szWk9yh19o .footer-title,
  .cid-szWk9yh19o .footer-main-title,
  .cid-szWk9yh19o .form-text,
  .cid-szWk9yh19o .list {
    text-align: center !important;
  }
  .cid-szWk9yh19o .mbr-form,
  .cid-szWk9yh19o .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-szWk9yh19o .footer-main-title {
  color: #ffcc29;
}
.cid-szWk9yh19o .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-szWpzjmOBc .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-szWpzjmOBc .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-szWpzjmOBc a {
  font-style: normal;
}
.cid-szWpzjmOBc .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-szWpzjmOBc .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-szWpzjmOBc .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-szWpzjmOBc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szWpzjmOBc .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szWpzjmOBc .nav-item:focus,
.cid-szWpzjmOBc .nav-link:focus {
  outline: none;
}
.cid-szWpzjmOBc .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szWpzjmOBc .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szWpzjmOBc .menu-logo {
  margin-right: auto;
}
.cid-szWpzjmOBc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szWpzjmOBc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szWpzjmOBc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-szWpzjmOBc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szWpzjmOBc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szWpzjmOBc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szWpzjmOBc .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szWpzjmOBc .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szWpzjmOBc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szWpzjmOBc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szWpzjmOBc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szWpzjmOBc .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szWpzjmOBc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szWpzjmOBc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szWpzjmOBc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szWpzjmOBc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szWpzjmOBc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-szWpzjmOBc .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szWpzjmOBc .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szWpzjmOBc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szWpzjmOBc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szWpzjmOBc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szWpzjmOBc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szWpzjmOBc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szWpzjmOBc button.navbar-toggler:focus {
  outline: none;
}
.cid-szWpzjmOBc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-szWpzjmOBc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szWpzjmOBc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szWpzjmOBc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szWpzjmOBc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szWpzjmOBc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szWpzjmOBc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szWpzjmOBc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szWpzjmOBc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szWpzjmOBc .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szWpzjmOBc .collapsed .btn {
  display: -webkit-flex;
}
.cid-szWpzjmOBc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szWpzjmOBc .collapsed .navbar-collapse.collapsing,
.cid-szWpzjmOBc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szWpzjmOBc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szWpzjmOBc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szWpzjmOBc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szWpzjmOBc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szWpzjmOBc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-szWpzjmOBc .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-szWpzjmOBc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szWpzjmOBc .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szWpzjmOBc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szWpzjmOBc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-szWpzjmOBc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-szWpzjmOBc .collapsed button.navbar-toggler {
  display: block;
}
.cid-szWpzjmOBc .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szWpzjmOBc .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szWpzjmOBc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szWpzjmOBc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szWpzjmOBc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szWpzjmOBc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-szWpzjmOBc.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szWpzjmOBc img {
    height: 3.8rem !important;
  }
  .cid-szWpzjmOBc .icon-wrap {
    margin-top: 1rem;
  }
  .cid-szWpzjmOBc .menu-wrap {
    flex-direction: column;
  }
  .cid-szWpzjmOBc .btn {
    display: -webkit-flex;
  }
  .cid-szWpzjmOBc button.navbar-toggler {
    display: block;
  }
  .cid-szWpzjmOBc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-szWpzjmOBc .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szWpzjmOBc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szWpzjmOBc .navbar-collapse.collapsing,
  .cid-szWpzjmOBc .navbar-collapse.show {
    display: block !important;
  }
  .cid-szWpzjmOBc .navbar-collapse.collapsing .navbar-nav,
  .cid-szWpzjmOBc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szWpzjmOBc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szWpzjmOBc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szWpzjmOBc .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-szWpzjmOBc .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-szWpzjmOBc .navbar-collapse.collapsing .navbar-buttons,
  .cid-szWpzjmOBc .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szWpzjmOBc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szWpzjmOBc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szWpzjmOBc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szWpzjmOBc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szWpzjmOBc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szWpzjmOBc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-szWpzjmOBc .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-szWpzjmOBc .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-szWpzjmOBc .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-szWpzjmOBc .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szWpzjmOBc .nav-link:hover,
.cid-szWpzjmOBc .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-szWpzgdgT4 {
  background-image: url("../../../assets/images/gopr7762-2000x1893.webp");
}
.cid-szWpzgdgT4 .mbr-section-title {
  text-align: right;
  color: #ffcc29;
}
.cid-szWpzgdgT4 .mbr-text,
.cid-szWpzgdgT4 .mbr-section-btn {
  text-align: right;
}
.cid-szWs8AkvV2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szWueaA9bA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szWueaA9bA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szWueaA9bA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szWueaA9bA .text-wrapper {
    padding: 2rem;
  }
}
.cid-szWvyUx95H {
  background-image: url("../../../assets/images/img-20210411-80916614-2000x1125.webp");
}
.cid-szWxghHmQO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szWy74VNhQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szWy74VNhQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szWy74VNhQ .row {
  flex-direction: row-reverse;
}
.cid-szWy74VNhQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szWy74VNhQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-szWynI3ise {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szWynI3ise .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szWynI3ise img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szWynI3ise .text-wrapper {
    padding: 2rem;
  }
}
.cid-szWpzilICn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-szWpzilICn [class^="socicon-"]:before,
.cid-szWpzilICn [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-szWpzilICn .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-szWpzilICn .btn-social:hover {
  background: #ffcc29;
}
.cid-szWpzilICn .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-szWpzilICn .mbr-section-title,
.cid-szWpzilICn .mbr-social-likes {
  text-align: right;
}
.cid-szWpziClS1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-szWpziClS1 .content {
    text-align: center;
  }
  .cid-szWpziClS1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-szWpziClS1 .img-logo img {
  height: 6rem;
}
.cid-szWpziClS1 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-szWpziClS1 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-szWpziClS1 .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-szWpziClS1 .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-szWpziClS1 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szWpziClS1 .social-list a:hover {
  opacity: 1;
}
.cid-szWpziClS1 .list {
  list-style-type: none;
  padding: 0;
}
.cid-szWpziClS1 .list li {
  padding-bottom: .5rem;
}
.cid-szWpziClS1 .list li:last-child {
  padding-bottom: 0;
}
.cid-szWpziClS1 .mbr-footer-list,
.cid-szWpziClS1 .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-szWpziClS1 .mbr-footer-list,
  .cid-szWpziClS1 .form-text,
  .cid-szWpziClS1 .footer-title,
  .cid-szWpziClS1 .footer-main-title,
  .cid-szWpziClS1 .form-text,
  .cid-szWpziClS1 .list {
    text-align: center !important;
  }
  .cid-szWpziClS1 .mbr-form,
  .cid-szWpziClS1 .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-szWpziClS1 .footer-main-title {
  color: #ffcc29;
}
.cid-szWpziClS1 .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-szWzPlrA3J .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-szWzPlrA3J .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-szWzPlrA3J a {
  font-style: normal;
}
.cid-szWzPlrA3J .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-szWzPlrA3J .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-szWzPlrA3J .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-szWzPlrA3J .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szWzPlrA3J .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szWzPlrA3J .nav-item:focus,
.cid-szWzPlrA3J .nav-link:focus {
  outline: none;
}
.cid-szWzPlrA3J .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szWzPlrA3J .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szWzPlrA3J .menu-logo {
  margin-right: auto;
}
.cid-szWzPlrA3J .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szWzPlrA3J .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szWzPlrA3J .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-szWzPlrA3J .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szWzPlrA3J .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szWzPlrA3J .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szWzPlrA3J .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szWzPlrA3J .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szWzPlrA3J .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szWzPlrA3J .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szWzPlrA3J .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szWzPlrA3J .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szWzPlrA3J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szWzPlrA3J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szWzPlrA3J .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szWzPlrA3J .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szWzPlrA3J .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-szWzPlrA3J .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szWzPlrA3J .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szWzPlrA3J .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szWzPlrA3J .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szWzPlrA3J .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szWzPlrA3J .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szWzPlrA3J button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szWzPlrA3J button.navbar-toggler:focus {
  outline: none;
}
.cid-szWzPlrA3J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-szWzPlrA3J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szWzPlrA3J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szWzPlrA3J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szWzPlrA3J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szWzPlrA3J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szWzPlrA3J nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szWzPlrA3J nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szWzPlrA3J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szWzPlrA3J .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szWzPlrA3J .collapsed .btn {
  display: -webkit-flex;
}
.cid-szWzPlrA3J .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szWzPlrA3J .collapsed .navbar-collapse.collapsing,
.cid-szWzPlrA3J .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szWzPlrA3J .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szWzPlrA3J .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szWzPlrA3J .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szWzPlrA3J .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szWzPlrA3J .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-szWzPlrA3J .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-szWzPlrA3J .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szWzPlrA3J .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szWzPlrA3J .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szWzPlrA3J .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-szWzPlrA3J .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-szWzPlrA3J .collapsed button.navbar-toggler {
  display: block;
}
.cid-szWzPlrA3J .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szWzPlrA3J .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szWzPlrA3J .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szWzPlrA3J .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szWzPlrA3J .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szWzPlrA3J .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-szWzPlrA3J.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szWzPlrA3J img {
    height: 3.8rem !important;
  }
  .cid-szWzPlrA3J .icon-wrap {
    margin-top: 1rem;
  }
  .cid-szWzPlrA3J .menu-wrap {
    flex-direction: column;
  }
  .cid-szWzPlrA3J .btn {
    display: -webkit-flex;
  }
  .cid-szWzPlrA3J button.navbar-toggler {
    display: block;
  }
  .cid-szWzPlrA3J .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-szWzPlrA3J .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szWzPlrA3J .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szWzPlrA3J .navbar-collapse.collapsing,
  .cid-szWzPlrA3J .navbar-collapse.show {
    display: block !important;
  }
  .cid-szWzPlrA3J .navbar-collapse.collapsing .navbar-nav,
  .cid-szWzPlrA3J .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szWzPlrA3J .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szWzPlrA3J .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szWzPlrA3J .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-szWzPlrA3J .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-szWzPlrA3J .navbar-collapse.collapsing .navbar-buttons,
  .cid-szWzPlrA3J .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szWzPlrA3J .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szWzPlrA3J .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szWzPlrA3J .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szWzPlrA3J .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szWzPlrA3J .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szWzPlrA3J .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-szWzPlrA3J .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-szWzPlrA3J .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-szWzPlrA3J .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-szWzPlrA3J .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szWzPlrA3J .nav-link:hover,
.cid-szWzPlrA3J .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-szWzPiWCGS {
  background-image: url("../../../assets/images/bicycle-bike-blur-brake-296848-2000x1336.webp");
}
.cid-szWzPiWCGS .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-szWzPiWCGS .mbr-text,
.cid-szWzPiWCGS .mbr-section-btn {
  text-align: left;
}
.cid-szWzPjnfQs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szWzPjnfQs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szWzPjnfQs .row {
  flex-direction: row-reverse;
}
.cid-szWzPjnfQs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szWzPjnfQs .text-wrapper {
    padding: 2rem;
  }
}
.cid-szWzPjFOkc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szWzPjFOkc .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-szWzPjFOkc .item:last-child .icon-box:before {
  display: none;
}
.cid-szWzPjFOkc .item.last .icon-box:before {
  display: none;
}
.cid-szWzPjFOkc .icon-box {
  background: #ffcc29;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-szWzPjFOkc .icon-box {
    margin-right: 1rem;
  }
}
.cid-szWzPjFOkc .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #ffcc29;
  transform: translate(-50%, 0);
}
.cid-szWzPjFOkc span {
  font-size: 2rem;
  color: #291f00;
}
@media (max-width: 991px) {
  .cid-szWzPjFOkc .card {
    margin-bottom: 2rem;
  }
  .cid-szWzPjFOkc .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-szWzPjFOkc .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-szWzPjFOkc .icon-box::before {
    top: 114%;
  }
}
.cid-szWzPjFOkc .mbr-text,
.cid-szWzPjFOkc .mbr-section-btn {
  text-align: left;
}
.cid-szWzPkmPgM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-szWzPkmPgM .line {
  background-color: #ffcc29;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-szWzPkv4YN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-szWzPkv4YN [class^="socicon-"]:before,
.cid-szWzPkv4YN [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-szWzPkv4YN .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-szWzPkv4YN .btn-social:hover {
  background: #ffcc29;
}
.cid-szWzPkv4YN .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-szWzPkv4YN .mbr-section-title,
.cid-szWzPkv4YN .mbr-social-likes {
  text-align: right;
}
.cid-szWzPkLRxb {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-szWzPkLRxb .content {
    text-align: center;
  }
  .cid-szWzPkLRxb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-szWzPkLRxb .img-logo img {
  height: 6rem;
}
.cid-szWzPkLRxb .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-szWzPkLRxb .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-szWzPkLRxb .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-szWzPkLRxb .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-szWzPkLRxb .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szWzPkLRxb .social-list a:hover {
  opacity: 1;
}
.cid-szWzPkLRxb .list {
  list-style-type: none;
  padding: 0;
}
.cid-szWzPkLRxb .list li {
  padding-bottom: .5rem;
}
.cid-szWzPkLRxb .list li:last-child {
  padding-bottom: 0;
}
.cid-szWzPkLRxb .mbr-footer-list,
.cid-szWzPkLRxb .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-szWzPkLRxb .mbr-footer-list,
  .cid-szWzPkLRxb .form-text,
  .cid-szWzPkLRxb .footer-title,
  .cid-szWzPkLRxb .footer-main-title,
  .cid-szWzPkLRxb .form-text,
  .cid-szWzPkLRxb .list {
    text-align: center !important;
  }
  .cid-szWzPkLRxb .mbr-form,
  .cid-szWzPkLRxb .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-szWzPkLRxb .footer-main-title {
  color: #ffcc29;
}
.cid-szWzPkLRxb .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-szWWgSr78O .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-szWWgSr78O .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-szWWgSr78O a {
  font-style: normal;
}
.cid-szWWgSr78O .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-szWWgSr78O .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-szWWgSr78O .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-szWWgSr78O .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szWWgSr78O .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szWWgSr78O .nav-item:focus,
.cid-szWWgSr78O .nav-link:focus {
  outline: none;
}
.cid-szWWgSr78O .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szWWgSr78O .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szWWgSr78O .menu-logo {
  margin-right: auto;
}
.cid-szWWgSr78O .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szWWgSr78O .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szWWgSr78O .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-szWWgSr78O .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szWWgSr78O .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szWWgSr78O .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szWWgSr78O .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szWWgSr78O .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szWWgSr78O .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szWWgSr78O .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szWWgSr78O .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szWWgSr78O .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szWWgSr78O .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szWWgSr78O .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szWWgSr78O .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szWWgSr78O .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szWWgSr78O .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-szWWgSr78O .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szWWgSr78O .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szWWgSr78O .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szWWgSr78O .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szWWgSr78O .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szWWgSr78O .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szWWgSr78O button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szWWgSr78O button.navbar-toggler:focus {
  outline: none;
}
.cid-szWWgSr78O button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-szWWgSr78O button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szWWgSr78O button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szWWgSr78O button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szWWgSr78O button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szWWgSr78O nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szWWgSr78O nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szWWgSr78O nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szWWgSr78O nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szWWgSr78O .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szWWgSr78O .collapsed .btn {
  display: -webkit-flex;
}
.cid-szWWgSr78O .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szWWgSr78O .collapsed .navbar-collapse.collapsing,
.cid-szWWgSr78O .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szWWgSr78O .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szWWgSr78O .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szWWgSr78O .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szWWgSr78O .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szWWgSr78O .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-szWWgSr78O .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-szWWgSr78O .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szWWgSr78O .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szWWgSr78O .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szWWgSr78O .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-szWWgSr78O .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-szWWgSr78O .collapsed button.navbar-toggler {
  display: block;
}
.cid-szWWgSr78O .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szWWgSr78O .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szWWgSr78O .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szWWgSr78O .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szWWgSr78O .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szWWgSr78O .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-szWWgSr78O.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szWWgSr78O img {
    height: 3.8rem !important;
  }
  .cid-szWWgSr78O .icon-wrap {
    margin-top: 1rem;
  }
  .cid-szWWgSr78O .menu-wrap {
    flex-direction: column;
  }
  .cid-szWWgSr78O .btn {
    display: -webkit-flex;
  }
  .cid-szWWgSr78O button.navbar-toggler {
    display: block;
  }
  .cid-szWWgSr78O .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-szWWgSr78O .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szWWgSr78O .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szWWgSr78O .navbar-collapse.collapsing,
  .cid-szWWgSr78O .navbar-collapse.show {
    display: block !important;
  }
  .cid-szWWgSr78O .navbar-collapse.collapsing .navbar-nav,
  .cid-szWWgSr78O .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szWWgSr78O .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szWWgSr78O .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szWWgSr78O .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-szWWgSr78O .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-szWWgSr78O .navbar-collapse.collapsing .navbar-buttons,
  .cid-szWWgSr78O .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szWWgSr78O .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szWWgSr78O .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szWWgSr78O .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szWWgSr78O .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szWWgSr78O .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szWWgSr78O .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-szWWgSr78O .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-szWWgSr78O .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-szWWgSr78O .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-szWWgSr78O .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szWWgSr78O .nav-link:hover,
.cid-szWWgSr78O .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-szWWgPl1DI {
  background-image: url("../../../assets/images/gopr0385-2000x1500.webp");
}
.cid-szWWgPl1DI .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-szWWgPl1DI .mbr-text,
.cid-szWWgPl1DI .mbr-section-btn {
  text-align: left;
}
.cid-szWWgQ15cp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szWWgQ15cp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szWWgQ15cp .row {
  flex-direction: row-reverse;
}
.cid-szWWgQ15cp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szWWgQ15cp .text-wrapper {
    padding: 2rem;
  }
}
.cid-szX4QR3sAi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szX4NETJU4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szX4NETJU4 .mbr-text {
  color: #767676;
}
.cid-szX4NETJU4 .mbr-section-subtitle {
  color: #767676;
}
.cid-szX4NETJU4 .title .num {
  width: 100%;
  display: block;
}
.cid-szX4NETJU4 .title .card-title {
  z-index: 1;
}
.cid-szX4NETJU4 .num {
  color: #ffcc29;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-szX4NETJU4 * {
    text-align: center !important;
  }
  .cid-szX4NETJU4 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-szX4NETJU4 .card-title,
.cid-szX4NETJU4 .card-img {
  text-align: center;
}
.cid-szX4NETJU4 .card-text {
  text-align: center;
}
.cid-szX65Fv6hq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffcc29;
}
.cid-szX65Fv6hq .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-szX6idlJ8f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szX6idlJ8f blockquote {
  border-color: #ffcc29;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-szX6FsHjQg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szX6FsHjQg ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-szX6FsHjQg li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-szX6FsHjQg ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-szX6FsHjQg .list {
  color: #000000;
}
.cid-szX9akB9KT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szX9akB9KT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szX9akB9KT .row {
  flex-direction: row-reverse;
}
.cid-szX9akB9KT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szX9akB9KT .text-wrapper {
    padding: 2rem;
  }
}
.cid-szXbqt0CIP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-szXbHgqi9s {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffcc29;
}
.cid-szXbHgqi9s .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-szXbSbCJzL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szXbSbCJzL ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-szXbSbCJzL li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-szXbSbCJzL ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-szXbSbCJzL .list {
  color: #000000;
}
.cid-szXeBKEETm {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffcc29;
  position: relative;
  overflow: hidden;
}
.cid-szXeBKEETm svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-szXeBKEETm #e2_shape {
  fill: #ffffff !important;
}
.cid-szXeBKEETm img {
  width: 80%;
  border-radius: 00px;
  margin: auto;
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0);
}
@media (max-width: 576px) {
  .cid-szXeBKEETm img {
    width: 90%!important;
  }
}
.cid-szXeBKEETm H1 {
  color: #000000;
}
.cid-szXfkqdcZO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szXfN4DxpW {
  padding-top: 30px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-szXfN4DxpW .mbr-section-title {
  color: #06182d;
}
.cid-szXfN4DxpW .mbr-section-title span {
  line-height: 1;
  color: #000000;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #f9ce43;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-szXfN4DxpW .mbr-section-subtitle {
  color: #06182d;
}
.cid-szXfN4DxpW .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-szXfN4DxpW .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-szXfN4DxpW .title-text {
  margin-bottom: 70px;
}
.cid-szXfN4DxpW .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-szXfN4DxpW .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-szXfN4DxpW .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-szXfN4DxpW .title-text .mbr-section-title {
  color: #ff4300;
}
.cid-szXfN4DxpW .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-szXfN4DxpW .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-szXfN4DxpW .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-szXfN4DxpW .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #ffcc29;
}
.cid-szXfN4DxpW .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-szXfN4DxpW .p-4 {
  padding: 1rem 0 !important;
}
.cid-szXfN4DxpW .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-szXfN4DxpW .mbri-arrow-down:before {
  content: "\e960";
}
.cid-szXfN4DxpW .mbri-arrow-up:before {
  content: "\e960";
}
.cid-szXfN4DxpW .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-szXfN4DxpW .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-szXfN4DxpW .card {
  border-radius: 0px;
  background-color: #ffffff;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-szXfN4DxpW .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-szXfN4DxpW .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-szXfN4DxpW .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-szXfN4DxpW .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #ffcc29;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-szXfN4DxpW .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #ffcc29;
}
.cid-szXfN4DxpW .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-szXfN4DxpW .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-szXfN4DxpW .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-szXfN4DxpW .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-szXfN4DxpW .card .card-header a.panel-title .toggle-icon:before,
.cid-szXfN4DxpW .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-szXfN4DxpW .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-szXfN4DxpW .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-szXfN4DxpW .card .panel-body {
  padding: 14px 20px;
}
.cid-szXfN4DxpW .card .panel-body p {
  color: #ffffff;
  line-height: 1.5;
}
.cid-szXfN4DxpW .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-szXfN4DxpW .title-text .mbr-section-title {
  color: #000000;
}
.cid-szXfN4DxpW .card .panel-body p {
  color: #000000;
}
.cid-szXfN4DxpW .card .card-header a.panel-title h4 {
  color: #000000;
}
.cid-szXkDJ7KQo {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffcc29;
}
.cid-szXkDJ7KQo .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-szXkHfdmEZ {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-szXkTfSC1C {
  background-color: #ffffff;
}
.cid-szXkTfSC1C .item-wrapper {
  width: 100%;
}
.cid-szXkTfSC1C .left-side {
  text-align: left;
  padding-left: 5rem;
}
.cid-szXkTfSC1C .row {
  align-items: center;
}
@media (max-width: 600px) {
  .cid-szXkTfSC1C .mbr-section-btn {
    margin-bottom: 25px;
  }
}
.cid-szXkTfSC1C .mbr-section-subtitle {
  color: #232323;
}
@media (max-width: 690px) {
  .cid-szXkTfSC1C .mbr-section-title {
    margin-top: 25px;
  }
  .cid-szXkTfSC1C .left-side {
    padding-right: 15px;
    padding-left: 15px;
  }
  .cid-szXkTfSC1C .right-side {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cid-szXkTfSC1C .button-align {
  width: 100%;
}
.cid-szXkTfSC1C .mbr-text {
  padding-top: 10px;
}
.cid-szXq2wHUTB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szXqdDgnLL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-szWWgRoS27 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-szWWgRoS27 [class^="socicon-"]:before,
.cid-szWWgRoS27 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-szWWgRoS27 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-szWWgRoS27 .btn-social:hover {
  background: #ffcc29;
}
.cid-szWWgRoS27 .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-szWWgRoS27 .mbr-section-title,
.cid-szWWgRoS27 .mbr-social-likes {
  text-align: right;
}
.cid-szWWgREFk9 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-szWWgREFk9 .content {
    text-align: center;
  }
  .cid-szWWgREFk9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-szWWgREFk9 .img-logo img {
  height: 6rem;
}
.cid-szWWgREFk9 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-szWWgREFk9 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-szWWgREFk9 .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-szWWgREFk9 .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-szWWgREFk9 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szWWgREFk9 .social-list a:hover {
  opacity: 1;
}
.cid-szWWgREFk9 .list {
  list-style-type: none;
  padding: 0;
}
.cid-szWWgREFk9 .list li {
  padding-bottom: .5rem;
}
.cid-szWWgREFk9 .list li:last-child {
  padding-bottom: 0;
}
.cid-szWWgREFk9 .mbr-footer-list,
.cid-szWWgREFk9 .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-szWWgREFk9 .mbr-footer-list,
  .cid-szWWgREFk9 .form-text,
  .cid-szWWgREFk9 .footer-title,
  .cid-szWWgREFk9 .footer-main-title,
  .cid-szWWgREFk9 .form-text,
  .cid-szWWgREFk9 .list {
    text-align: center !important;
  }
  .cid-szWWgREFk9 .mbr-form,
  .cid-szWWgREFk9 .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-szWWgREFk9 .footer-main-title {
  color: #ffcc29;
}
.cid-szWWgREFk9 .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-sA1Kpnw63z .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-sA1Kpnw63z .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-sA1Kpnw63z a {
  font-style: normal;
}
.cid-sA1Kpnw63z .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-sA1Kpnw63z .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-sA1Kpnw63z .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-sA1Kpnw63z .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sA1Kpnw63z .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sA1Kpnw63z .nav-item:focus,
.cid-sA1Kpnw63z .nav-link:focus {
  outline: none;
}
.cid-sA1Kpnw63z .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sA1Kpnw63z .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sA1Kpnw63z .menu-logo {
  margin-right: auto;
}
.cid-sA1Kpnw63z .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sA1Kpnw63z .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sA1Kpnw63z .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-sA1Kpnw63z .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sA1Kpnw63z .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sA1Kpnw63z .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sA1Kpnw63z .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sA1Kpnw63z .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sA1Kpnw63z .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sA1Kpnw63z .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sA1Kpnw63z .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sA1Kpnw63z .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sA1Kpnw63z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sA1Kpnw63z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sA1Kpnw63z .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sA1Kpnw63z .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sA1Kpnw63z .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sA1Kpnw63z .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sA1Kpnw63z .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sA1Kpnw63z .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sA1Kpnw63z .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sA1Kpnw63z .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sA1Kpnw63z .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sA1Kpnw63z button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sA1Kpnw63z button.navbar-toggler:focus {
  outline: none;
}
.cid-sA1Kpnw63z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-sA1Kpnw63z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sA1Kpnw63z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sA1Kpnw63z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sA1Kpnw63z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sA1Kpnw63z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sA1Kpnw63z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sA1Kpnw63z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sA1Kpnw63z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sA1Kpnw63z .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sA1Kpnw63z .collapsed .btn {
  display: -webkit-flex;
}
.cid-sA1Kpnw63z .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sA1Kpnw63z .collapsed .navbar-collapse.collapsing,
.cid-sA1Kpnw63z .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sA1Kpnw63z .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sA1Kpnw63z .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sA1Kpnw63z .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sA1Kpnw63z .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sA1Kpnw63z .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sA1Kpnw63z .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sA1Kpnw63z .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sA1Kpnw63z .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sA1Kpnw63z .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sA1Kpnw63z .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sA1Kpnw63z .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-sA1Kpnw63z .collapsed button.navbar-toggler {
  display: block;
}
.cid-sA1Kpnw63z .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sA1Kpnw63z .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sA1Kpnw63z .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sA1Kpnw63z .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sA1Kpnw63z .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sA1Kpnw63z .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sA1Kpnw63z.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sA1Kpnw63z img {
    height: 3.8rem !important;
  }
  .cid-sA1Kpnw63z .icon-wrap {
    margin-top: 1rem;
  }
  .cid-sA1Kpnw63z .menu-wrap {
    flex-direction: column;
  }
  .cid-sA1Kpnw63z .btn {
    display: -webkit-flex;
  }
  .cid-sA1Kpnw63z button.navbar-toggler {
    display: block;
  }
  .cid-sA1Kpnw63z .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-sA1Kpnw63z .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sA1Kpnw63z .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sA1Kpnw63z .navbar-collapse.collapsing,
  .cid-sA1Kpnw63z .navbar-collapse.show {
    display: block !important;
  }
  .cid-sA1Kpnw63z .navbar-collapse.collapsing .navbar-nav,
  .cid-sA1Kpnw63z .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sA1Kpnw63z .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sA1Kpnw63z .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sA1Kpnw63z .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sA1Kpnw63z .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sA1Kpnw63z .navbar-collapse.collapsing .navbar-buttons,
  .cid-sA1Kpnw63z .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sA1Kpnw63z .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sA1Kpnw63z .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sA1Kpnw63z .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sA1Kpnw63z .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sA1Kpnw63z .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sA1Kpnw63z .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sA1Kpnw63z .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-sA1Kpnw63z .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-sA1Kpnw63z .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-sA1Kpnw63z .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sA1Kpnw63z .nav-link:hover,
.cid-sA1Kpnw63z .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-sA1KpfYcD2 {
  background-image: url("../../../assets/images/img-20210501-95305755-2000x1125.webp");
}
.cid-sA1KpfYcD2 .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-sA1KpfYcD2 .mbr-text,
.cid-sA1KpfYcD2 .mbr-section-btn {
  text-align: left;
}
.cid-sA1KpgIVjX {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sA1KpgIVjX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA1KpgIVjX .row {
  flex-direction: row-reverse;
}
.cid-sA1KpgIVjX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA1KpgIVjX .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA1PqzYzSz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sA1Kpj9NaC {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sA1Tqoh4ma {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sA1Tqoh4ma .carousel {
    min-height: 900px;
  }
  .cid-sA1Tqoh4ma .carousel img {
    max-height: 900px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sA1Tqoh4ma .carousel {
    min-height: 585px;
  }
  .cid-sA1Tqoh4ma .carousel img {
    max-height: 585px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sA1Tqoh4ma .carousel {
    min-height: 495px;
  }
  .cid-sA1Tqoh4ma .carousel img {
    max-height: 495px;
    object-fit: contain;
  }
  .cid-sA1Tqoh4ma .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sA1Tqoh4ma .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sA1Tqoh4ma .carousel,
.cid-sA1Tqoh4ma .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sA1Tqoh4ma .item-wrapper {
  width: 100%;
}
.cid-sA1Tqoh4ma .carousel-caption {
  bottom: 40px;
}
.cid-sA1Tqoh4ma .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sA1Tqoh4ma .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sA1Tqoh4ma .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sA1Tqoh4ma .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sA1Tqoh4ma .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sA1Tqoh4ma .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sA1Tqoh4ma .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sA1Tqoh4ma .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sA1Tqoh4ma .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sA1Tqoh4ma .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sA1Tqoh4ma .carousel-indicators li.active,
.cid-sA1Tqoh4ma .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sA1Tqoh4ma .carousel-indicators li::after,
.cid-sA1Tqoh4ma .carousel-indicators li::before {
  content: none;
}
.cid-sA1Tqoh4ma .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sA1Tqoh4ma .carousel-indicators {
    display: none !important;
  }
}
.cid-sA1Kpjn2gM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffcc29;
}
.cid-sA1Kpjn2gM .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sA1Kpkaya6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sA3lfYypEZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sA3lfYypEZ img {
  border-radius: 0px;
  width: 100%;
}
.cid-sA3lfYypEZ .mbr-section-title {
  color: #000000;
  text-align: center;
  padding-top: 8px;
}
.cid-sA3lfYypEZ .col-12 {
  padding: 0;
}
.cid-sA3lfYypEZ .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-sA3lfYypEZ .text {
  position: absolute;
  width: 100%;
  padding: 0 10%;
}
.cid-sA3lfYypEZ .container-fluid {
  padding: 0;
}
.cid-sA3lfYypEZ .btn {
  white-space: nowrap;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 22px;
}
.cid-sA3lfYypEZ .mbr-iconfont {
  display: block;
  font-size: 3.5rem;
  color: #ffcc29;
  height: 100%;
  padding-bottom: 15px;
}
.cid-sA3lfYypEZ .row {
  margin: 0;
}
.cid-sA3lfYypEZ .l2 {
  color: #0c5b47;
}
.cid-sA3lfYypEZ .l1 {
  color: #0c5b47;
}
.cid-sA3lfYypEZ a {
  font-style: italic;
}
.cid-sA3lfYypEZ .l1,
.cid-sA3lfYypEZ .mbr-section-title,
.cid-sA3lfYypEZ .iconfont-wrapper {
  color: #000000;
}
.cid-sA1YJW64hu {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sA1YJW64hu .video-wrapper iframe {
  width: 100%;
}
.cid-sA1YJW64hu .mbr-section-title,
.cid-sA1YJW64hu .mbr-section-subtitle,
.cid-sA1YJW64hu .mbr-text {
  text-align: center;
}
.cid-sA1ZDMobib {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sA1KplgiRM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sA21OXfHy7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sA21OXfHy7 .media-container-row {
  justify-content: space-between;
}
.cid-sA21OXfHy7 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sA21OXfHy7 .text-content {
    max-width: none;
  }
}
.cid-sA21OXfHy7 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sA21OXfHy7 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sA21OXfHy7 .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-sA21OXfHy7 .icons {
    justify-content: center !important;
  }
  .cid-sA21OXfHy7 .text-content * {
    text-align: center;
  }
}
.cid-sA1KpmnRby {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sA1KpmnRby [class^="socicon-"]:before,
.cid-sA1KpmnRby [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sA1KpmnRby .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-sA1KpmnRby .btn-social:hover {
  background: #ffcc29;
}
.cid-sA1KpmnRby .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-sA1KpmnRby .mbr-section-title,
.cid-sA1KpmnRby .mbr-social-likes {
  text-align: right;
}
.cid-sA1KpmHSCC {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sA1KpmHSCC .content {
    text-align: center;
  }
  .cid-sA1KpmHSCC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sA1KpmHSCC .img-logo img {
  height: 6rem;
}
.cid-sA1KpmHSCC .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sA1KpmHSCC .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-sA1KpmHSCC .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sA1KpmHSCC .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-sA1KpmHSCC .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sA1KpmHSCC .social-list a:hover {
  opacity: 1;
}
.cid-sA1KpmHSCC .list {
  list-style-type: none;
  padding: 0;
}
.cid-sA1KpmHSCC .list li {
  padding-bottom: .5rem;
}
.cid-sA1KpmHSCC .list li:last-child {
  padding-bottom: 0;
}
.cid-sA1KpmHSCC .mbr-footer-list,
.cid-sA1KpmHSCC .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sA1KpmHSCC .mbr-footer-list,
  .cid-sA1KpmHSCC .form-text,
  .cid-sA1KpmHSCC .footer-title,
  .cid-sA1KpmHSCC .footer-main-title,
  .cid-sA1KpmHSCC .form-text,
  .cid-sA1KpmHSCC .list {
    text-align: center !important;
  }
  .cid-sA1KpmHSCC .mbr-form,
  .cid-sA1KpmHSCC .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-sA1KpmHSCC .footer-main-title {
  color: #ffcc29;
}
.cid-sA1KpmHSCC .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-sApF7lg1SR .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-sApF7lg1SR .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-sApF7lg1SR a {
  font-style: normal;
}
.cid-sApF7lg1SR .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-sApF7lg1SR .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-sApF7lg1SR .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-sApF7lg1SR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sApF7lg1SR .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sApF7lg1SR .nav-item:focus,
.cid-sApF7lg1SR .nav-link:focus {
  outline: none;
}
.cid-sApF7lg1SR .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sApF7lg1SR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sApF7lg1SR .menu-logo {
  margin-right: auto;
}
.cid-sApF7lg1SR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sApF7lg1SR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sApF7lg1SR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-sApF7lg1SR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sApF7lg1SR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sApF7lg1SR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sApF7lg1SR .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sApF7lg1SR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sApF7lg1SR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sApF7lg1SR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sApF7lg1SR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sApF7lg1SR .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sApF7lg1SR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sApF7lg1SR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sApF7lg1SR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sApF7lg1SR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sApF7lg1SR .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sApF7lg1SR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sApF7lg1SR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sApF7lg1SR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sApF7lg1SR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sApF7lg1SR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sApF7lg1SR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sApF7lg1SR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sApF7lg1SR button.navbar-toggler:focus {
  outline: none;
}
.cid-sApF7lg1SR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-sApF7lg1SR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sApF7lg1SR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sApF7lg1SR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sApF7lg1SR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sApF7lg1SR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sApF7lg1SR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sApF7lg1SR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sApF7lg1SR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sApF7lg1SR .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sApF7lg1SR .collapsed .btn {
  display: -webkit-flex;
}
.cid-sApF7lg1SR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sApF7lg1SR .collapsed .navbar-collapse.collapsing,
.cid-sApF7lg1SR .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sApF7lg1SR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sApF7lg1SR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sApF7lg1SR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sApF7lg1SR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sApF7lg1SR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sApF7lg1SR .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sApF7lg1SR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sApF7lg1SR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sApF7lg1SR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sApF7lg1SR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sApF7lg1SR .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-sApF7lg1SR .collapsed button.navbar-toggler {
  display: block;
}
.cid-sApF7lg1SR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sApF7lg1SR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sApF7lg1SR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sApF7lg1SR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sApF7lg1SR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sApF7lg1SR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sApF7lg1SR.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sApF7lg1SR img {
    height: 3.8rem !important;
  }
  .cid-sApF7lg1SR .icon-wrap {
    margin-top: 1rem;
  }
  .cid-sApF7lg1SR .menu-wrap {
    flex-direction: column;
  }
  .cid-sApF7lg1SR .btn {
    display: -webkit-flex;
  }
  .cid-sApF7lg1SR button.navbar-toggler {
    display: block;
  }
  .cid-sApF7lg1SR .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-sApF7lg1SR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sApF7lg1SR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sApF7lg1SR .navbar-collapse.collapsing,
  .cid-sApF7lg1SR .navbar-collapse.show {
    display: block !important;
  }
  .cid-sApF7lg1SR .navbar-collapse.collapsing .navbar-nav,
  .cid-sApF7lg1SR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sApF7lg1SR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sApF7lg1SR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sApF7lg1SR .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sApF7lg1SR .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sApF7lg1SR .navbar-collapse.collapsing .navbar-buttons,
  .cid-sApF7lg1SR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sApF7lg1SR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sApF7lg1SR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sApF7lg1SR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sApF7lg1SR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sApF7lg1SR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sApF7lg1SR .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sApF7lg1SR .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-sApF7lg1SR .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-sApF7lg1SR .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-sApF7lg1SR .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sApF7lg1SR .nav-link:hover,
.cid-sApF7lg1SR .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-sApF7fK5ks {
  background-image: url("../../../assets/images/gopr2547-2000x1500.webp");
}
.cid-sApF7fK5ks .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-sApF7fK5ks .mbr-text,
.cid-sApF7fK5ks .mbr-section-btn {
  text-align: left;
}
.cid-sApF7hUXDz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffcc29;
}
.cid-sApF7hUXDz .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sApF7gCmI3 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sApF7gVmXe {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sApF7icL9s {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sApJjqyRFJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sApJjqyRFJ .line {
  background-color: #ffcc29;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sApJt2vtfo {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sApF7iR0rA {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sApF7iR0rA .video-wrapper iframe {
  width: 100%;
}
.cid-sApF7iR0rA .mbr-section-title,
.cid-sApF7iR0rA .mbr-section-subtitle,
.cid-sApF7iR0rA .mbr-text {
  text-align: center;
}
.cid-sApL7kCUIX {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sApMO0Vhhi {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sApMO0Vhhi .video-wrapper iframe {
  width: 100%;
}
.cid-sApMO0Vhhi .mbr-section-title,
.cid-sApMO0Vhhi .mbr-section-subtitle,
.cid-sApMO0Vhhi .mbr-text {
  text-align: center;
}
.cid-sApF7j9Tsj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sApF7jrvz9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sApOrTkZQ7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sApOrTkZQ7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sApOrTkZQ7 .row {
  flex-direction: row-reverse;
}
.cid-sApOrTkZQ7 img {
  width: 100%;
}
.cid-sApOCQJqzT {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sApOCQJqzT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sApOCQJqzT .row {
  flex-direction: row-reverse;
}
.cid-sApOCQJqzT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sApOCQJqzT .text-wrapper {
    padding: 2rem;
  }
}
.cid-sApP3DwBkA {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sApP3DwBkA .video-wrapper iframe {
  width: 100%;
}
.cid-sApP3DwBkA .mbr-section-title,
.cid-sApP3DwBkA .mbr-section-subtitle,
.cid-sApP3DwBkA .mbr-text {
  text-align: center;
}
.cid-sApPqj9i5M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sApF7kaE1J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sApF7kaE1J [class^="socicon-"]:before,
.cid-sApF7kaE1J [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sApF7kaE1J .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-sApF7kaE1J .btn-social:hover {
  background: #ffcc29;
}
.cid-sApF7kaE1J .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-sApF7kaE1J .mbr-section-title,
.cid-sApF7kaE1J .mbr-social-likes {
  text-align: right;
}
.cid-sApF7kuvHb {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sApF7kuvHb .content {
    text-align: center;
  }
  .cid-sApF7kuvHb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sApF7kuvHb .img-logo img {
  height: 6rem;
}
.cid-sApF7kuvHb .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sApF7kuvHb .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-sApF7kuvHb .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sApF7kuvHb .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-sApF7kuvHb .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sApF7kuvHb .social-list a:hover {
  opacity: 1;
}
.cid-sApF7kuvHb .list {
  list-style-type: none;
  padding: 0;
}
.cid-sApF7kuvHb .list li {
  padding-bottom: .5rem;
}
.cid-sApF7kuvHb .list li:last-child {
  padding-bottom: 0;
}
.cid-sApF7kuvHb .mbr-footer-list,
.cid-sApF7kuvHb .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sApF7kuvHb .mbr-footer-list,
  .cid-sApF7kuvHb .form-text,
  .cid-sApF7kuvHb .footer-title,
  .cid-sApF7kuvHb .footer-main-title,
  .cid-sApF7kuvHb .form-text,
  .cid-sApF7kuvHb .list {
    text-align: center !important;
  }
  .cid-sApF7kuvHb .mbr-form,
  .cid-sApF7kuvHb .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-sApF7kuvHb .footer-main-title {
  color: #ffcc29;
}
.cid-sApF7kuvHb .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-sAALcxOJiP .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-sAALcxOJiP .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-sAALcxOJiP a {
  font-style: normal;
}
.cid-sAALcxOJiP .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-sAALcxOJiP .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-sAALcxOJiP .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-sAALcxOJiP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sAALcxOJiP .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sAALcxOJiP .nav-item:focus,
.cid-sAALcxOJiP .nav-link:focus {
  outline: none;
}
.cid-sAALcxOJiP .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAALcxOJiP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sAALcxOJiP .menu-logo {
  margin-right: auto;
}
.cid-sAALcxOJiP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sAALcxOJiP .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sAALcxOJiP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-sAALcxOJiP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sAALcxOJiP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sAALcxOJiP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sAALcxOJiP .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sAALcxOJiP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sAALcxOJiP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sAALcxOJiP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAALcxOJiP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sAALcxOJiP .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sAALcxOJiP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sAALcxOJiP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAALcxOJiP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sAALcxOJiP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAALcxOJiP .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sAALcxOJiP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sAALcxOJiP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sAALcxOJiP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sAALcxOJiP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sAALcxOJiP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sAALcxOJiP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sAALcxOJiP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sAALcxOJiP button.navbar-toggler:focus {
  outline: none;
}
.cid-sAALcxOJiP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-sAALcxOJiP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAALcxOJiP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAALcxOJiP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAALcxOJiP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAALcxOJiP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAALcxOJiP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAALcxOJiP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAALcxOJiP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAALcxOJiP .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAALcxOJiP .collapsed .btn {
  display: -webkit-flex;
}
.cid-sAALcxOJiP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sAALcxOJiP .collapsed .navbar-collapse.collapsing,
.cid-sAALcxOJiP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sAALcxOJiP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sAALcxOJiP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sAALcxOJiP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sAALcxOJiP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sAALcxOJiP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sAALcxOJiP .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sAALcxOJiP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sAALcxOJiP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sAALcxOJiP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sAALcxOJiP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sAALcxOJiP .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-sAALcxOJiP .collapsed button.navbar-toggler {
  display: block;
}
.cid-sAALcxOJiP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sAALcxOJiP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAALcxOJiP .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sAALcxOJiP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sAALcxOJiP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sAALcxOJiP .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sAALcxOJiP.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAALcxOJiP img {
    height: 3.8rem !important;
  }
  .cid-sAALcxOJiP .icon-wrap {
    margin-top: 1rem;
  }
  .cid-sAALcxOJiP .menu-wrap {
    flex-direction: column;
  }
  .cid-sAALcxOJiP .btn {
    display: -webkit-flex;
  }
  .cid-sAALcxOJiP button.navbar-toggler {
    display: block;
  }
  .cid-sAALcxOJiP .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-sAALcxOJiP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAALcxOJiP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sAALcxOJiP .navbar-collapse.collapsing,
  .cid-sAALcxOJiP .navbar-collapse.show {
    display: block !important;
  }
  .cid-sAALcxOJiP .navbar-collapse.collapsing .navbar-nav,
  .cid-sAALcxOJiP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sAALcxOJiP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sAALcxOJiP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sAALcxOJiP .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sAALcxOJiP .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAALcxOJiP .navbar-collapse.collapsing .navbar-buttons,
  .cid-sAALcxOJiP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sAALcxOJiP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sAALcxOJiP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAALcxOJiP .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sAALcxOJiP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sAALcxOJiP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sAALcxOJiP .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sAALcxOJiP .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-sAALcxOJiP .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-sAALcxOJiP .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-sAALcxOJiP .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sAALcxOJiP .nav-link:hover,
.cid-sAALcxOJiP .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-sAALcuR1yO {
  background-image: url("../../../assets/images/whatsapp-image-2022-11-30-at-08.48.52-1024x681.webp");
}
.cid-sAALcuR1yO .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-sAALcuR1yO .mbr-text,
.cid-sAALcuR1yO .mbr-section-btn {
  text-align: left;
}
.cid-sAALcvhDVg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAALcvhDVg .mbr-section-title DIV {
  text-align: left;
}
.cid-sAALcvhDVg .mbr-section-title {
  text-align: left;
}
.cid-sAALcvhDVg .mbr-section-subtitle {
  text-align: left;
}
.cid-sAALcvzwMK {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sAALcvLBQz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sAALcvLBQz .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sAALcvLBQz .item:last-child .icon-box:before {
  display: none;
}
.cid-sAALcvLBQz .item.last .icon-box:before {
  display: none;
}
.cid-sAALcvLBQz .icon-box {
  background: #ffcc29;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-sAALcvLBQz .icon-box {
    margin-right: 1rem;
  }
}
.cid-sAALcvLBQz .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #ffcc29;
  transform: translate(-50%, 0);
}
.cid-sAALcvLBQz span {
  font-size: 2rem;
  color: #291f00;
}
@media (max-width: 991px) {
  .cid-sAALcvLBQz .card {
    margin-bottom: 2rem;
  }
  .cid-sAALcvLBQz .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sAALcvLBQz .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-sAALcvLBQz .icon-box::before {
    top: 114%;
  }
}
.cid-sAALcvLBQz .mbr-text,
.cid-sAALcvLBQz .mbr-section-btn {
  text-align: left;
}
.cid-sAALcwKG4Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sAALcwKG4Y .line {
  background-color: #ffcc29;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sAALcwKG4Y .mbr-text {
  text-align: left;
}
.cid-sAALcwVTia {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sAALcwVTia [class^="socicon-"]:before,
.cid-sAALcwVTia [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sAALcwVTia .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-sAALcwVTia .btn-social:hover {
  background: #ffcc29;
}
.cid-sAALcwVTia .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-sAALcwVTia .mbr-section-title,
.cid-sAALcwVTia .mbr-social-likes {
  text-align: right;
}
.cid-sAALcx7HO1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sAALcx7HO1 .content {
    text-align: center;
  }
  .cid-sAALcx7HO1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sAALcx7HO1 .img-logo img {
  height: 6rem;
}
.cid-sAALcx7HO1 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAALcx7HO1 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-sAALcx7HO1 .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sAALcx7HO1 .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-sAALcx7HO1 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sAALcx7HO1 .social-list a:hover {
  opacity: 1;
}
.cid-sAALcx7HO1 .list {
  list-style-type: none;
  padding: 0;
}
.cid-sAALcx7HO1 .list li {
  padding-bottom: .5rem;
}
.cid-sAALcx7HO1 .list li:last-child {
  padding-bottom: 0;
}
.cid-sAALcx7HO1 .mbr-footer-list,
.cid-sAALcx7HO1 .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sAALcx7HO1 .mbr-footer-list,
  .cid-sAALcx7HO1 .form-text,
  .cid-sAALcx7HO1 .footer-title,
  .cid-sAALcx7HO1 .footer-main-title,
  .cid-sAALcx7HO1 .form-text,
  .cid-sAALcx7HO1 .list {
    text-align: center !important;
  }
  .cid-sAALcx7HO1 .mbr-form,
  .cid-sAALcx7HO1 .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-sAALcx7HO1 .footer-main-title {
  color: #ffcc29;
}
.cid-sAALcx7HO1 .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-sBPto89lLh .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-sBPto89lLh .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-sBPto89lLh a {
  font-style: normal;
}
.cid-sBPto89lLh .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-sBPto89lLh .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-sBPto89lLh .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-sBPto89lLh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sBPto89lLh .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sBPto89lLh .nav-item:focus,
.cid-sBPto89lLh .nav-link:focus {
  outline: none;
}
.cid-sBPto89lLh .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sBPto89lLh .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sBPto89lLh .menu-logo {
  margin-right: auto;
}
.cid-sBPto89lLh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sBPto89lLh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sBPto89lLh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-sBPto89lLh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sBPto89lLh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sBPto89lLh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sBPto89lLh .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sBPto89lLh .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sBPto89lLh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sBPto89lLh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sBPto89lLh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sBPto89lLh .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sBPto89lLh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sBPto89lLh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBPto89lLh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sBPto89lLh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBPto89lLh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sBPto89lLh .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sBPto89lLh .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sBPto89lLh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sBPto89lLh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sBPto89lLh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sBPto89lLh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sBPto89lLh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sBPto89lLh button.navbar-toggler:focus {
  outline: none;
}
.cid-sBPto89lLh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-sBPto89lLh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBPto89lLh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBPto89lLh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBPto89lLh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBPto89lLh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBPto89lLh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sBPto89lLh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sBPto89lLh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBPto89lLh .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sBPto89lLh .collapsed .btn {
  display: -webkit-flex;
}
.cid-sBPto89lLh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sBPto89lLh .collapsed .navbar-collapse.collapsing,
.cid-sBPto89lLh .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sBPto89lLh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sBPto89lLh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sBPto89lLh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sBPto89lLh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sBPto89lLh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sBPto89lLh .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sBPto89lLh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sBPto89lLh .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sBPto89lLh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sBPto89lLh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sBPto89lLh .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-sBPto89lLh .collapsed button.navbar-toggler {
  display: block;
}
.cid-sBPto89lLh .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sBPto89lLh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sBPto89lLh .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sBPto89lLh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sBPto89lLh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sBPto89lLh .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sBPto89lLh.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sBPto89lLh img {
    height: 3.8rem !important;
  }
  .cid-sBPto89lLh .icon-wrap {
    margin-top: 1rem;
  }
  .cid-sBPto89lLh .menu-wrap {
    flex-direction: column;
  }
  .cid-sBPto89lLh .btn {
    display: -webkit-flex;
  }
  .cid-sBPto89lLh button.navbar-toggler {
    display: block;
  }
  .cid-sBPto89lLh .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-sBPto89lLh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sBPto89lLh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sBPto89lLh .navbar-collapse.collapsing,
  .cid-sBPto89lLh .navbar-collapse.show {
    display: block !important;
  }
  .cid-sBPto89lLh .navbar-collapse.collapsing .navbar-nav,
  .cid-sBPto89lLh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sBPto89lLh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sBPto89lLh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sBPto89lLh .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sBPto89lLh .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sBPto89lLh .navbar-collapse.collapsing .navbar-buttons,
  .cid-sBPto89lLh .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sBPto89lLh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sBPto89lLh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sBPto89lLh .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sBPto89lLh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sBPto89lLh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sBPto89lLh .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sBPto89lLh .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-sBPto89lLh .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-sBPto89lLh .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-sBPto89lLh .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sBPto89lLh .nav-link:hover,
.cid-sBPto89lLh .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-sBPto5DgM3 {
  background-image: url("../../../assets/images/gopr0432-1624801839447-2000x1500.webp");
}
.cid-sBPto5DgM3 .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-sBPto5DgM3 .mbr-text,
.cid-sBPto5DgM3 .mbr-section-btn {
  text-align: left;
}
.cid-sBPto63wlx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sBPto63wlx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBPto63wlx .row {
  flex-direction: row-reverse;
}
.cid-sBPto63wlx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBPto63wlx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBPto6llgO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sBPto6llgO .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sBPto6llgO .item:last-child .icon-box:before {
  display: none;
}
.cid-sBPto6llgO .item.last .icon-box:before {
  display: none;
}
.cid-sBPto6llgO .icon-box {
  background: #ffcc29;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-sBPto6llgO .icon-box {
    margin-right: 1rem;
  }
}
.cid-sBPto6llgO .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #ffcc29;
  transform: translate(-50%, 0);
}
.cid-sBPto6llgO span {
  font-size: 2rem;
  color: #291f00;
}
@media (max-width: 991px) {
  .cid-sBPto6llgO .card {
    margin-bottom: 2rem;
  }
  .cid-sBPto6llgO .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sBPto6llgO .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-sBPto6llgO .icon-box::before {
    top: 114%;
  }
}
.cid-sBPto6llgO .mbr-text,
.cid-sBPto6llgO .mbr-section-btn {
  text-align: left;
}
.cid-sBPto78XxZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sBPto78XxZ .line {
  background-color: #ffcc29;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sBPto7iPid {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sBPto7iPid [class^="socicon-"]:before,
.cid-sBPto7iPid [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sBPto7iPid .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-sBPto7iPid .btn-social:hover {
  background: #ffcc29;
}
.cid-sBPto7iPid .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-sBPto7iPid .mbr-section-title,
.cid-sBPto7iPid .mbr-social-likes {
  text-align: right;
}
.cid-sBPto7wWo4 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sBPto7wWo4 .content {
    text-align: center;
  }
  .cid-sBPto7wWo4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sBPto7wWo4 .img-logo img {
  height: 6rem;
}
.cid-sBPto7wWo4 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBPto7wWo4 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-sBPto7wWo4 .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sBPto7wWo4 .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-sBPto7wWo4 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sBPto7wWo4 .social-list a:hover {
  opacity: 1;
}
.cid-sBPto7wWo4 .list {
  list-style-type: none;
  padding: 0;
}
.cid-sBPto7wWo4 .list li {
  padding-bottom: .5rem;
}
.cid-sBPto7wWo4 .list li:last-child {
  padding-bottom: 0;
}
.cid-sBPto7wWo4 .mbr-footer-list,
.cid-sBPto7wWo4 .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sBPto7wWo4 .mbr-footer-list,
  .cid-sBPto7wWo4 .form-text,
  .cid-sBPto7wWo4 .footer-title,
  .cid-sBPto7wWo4 .footer-main-title,
  .cid-sBPto7wWo4 .form-text,
  .cid-sBPto7wWo4 .list {
    text-align: center !important;
  }
  .cid-sBPto7wWo4 .mbr-form,
  .cid-sBPto7wWo4 .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-sBPto7wWo4 .footer-main-title {
  color: #ffcc29;
}
.cid-sBPto7wWo4 .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-sH6KpJgWot .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-sH6KpJgWot .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-sH6KpJgWot a {
  font-style: normal;
}
.cid-sH6KpJgWot .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-sH6KpJgWot .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-sH6KpJgWot .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-sH6KpJgWot .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sH6KpJgWot .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sH6KpJgWot .nav-item:focus,
.cid-sH6KpJgWot .nav-link:focus {
  outline: none;
}
.cid-sH6KpJgWot .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sH6KpJgWot .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sH6KpJgWot .menu-logo {
  margin-right: auto;
}
.cid-sH6KpJgWot .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sH6KpJgWot .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sH6KpJgWot .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-sH6KpJgWot .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sH6KpJgWot .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sH6KpJgWot .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sH6KpJgWot .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sH6KpJgWot .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sH6KpJgWot .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sH6KpJgWot .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sH6KpJgWot .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sH6KpJgWot .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sH6KpJgWot .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sH6KpJgWot .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sH6KpJgWot .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sH6KpJgWot .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sH6KpJgWot .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sH6KpJgWot .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sH6KpJgWot .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sH6KpJgWot .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sH6KpJgWot .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sH6KpJgWot .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sH6KpJgWot .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sH6KpJgWot button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sH6KpJgWot button.navbar-toggler:focus {
  outline: none;
}
.cid-sH6KpJgWot button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-sH6KpJgWot button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sH6KpJgWot button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sH6KpJgWot button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sH6KpJgWot button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sH6KpJgWot nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sH6KpJgWot nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sH6KpJgWot nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sH6KpJgWot nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sH6KpJgWot .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sH6KpJgWot .collapsed .btn {
  display: -webkit-flex;
}
.cid-sH6KpJgWot .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sH6KpJgWot .collapsed .navbar-collapse.collapsing,
.cid-sH6KpJgWot .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sH6KpJgWot .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sH6KpJgWot .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sH6KpJgWot .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sH6KpJgWot .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sH6KpJgWot .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sH6KpJgWot .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sH6KpJgWot .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sH6KpJgWot .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sH6KpJgWot .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sH6KpJgWot .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sH6KpJgWot .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-sH6KpJgWot .collapsed button.navbar-toggler {
  display: block;
}
.cid-sH6KpJgWot .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sH6KpJgWot .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sH6KpJgWot .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sH6KpJgWot .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sH6KpJgWot .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sH6KpJgWot .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sH6KpJgWot.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sH6KpJgWot img {
    height: 3.8rem !important;
  }
  .cid-sH6KpJgWot .icon-wrap {
    margin-top: 1rem;
  }
  .cid-sH6KpJgWot .menu-wrap {
    flex-direction: column;
  }
  .cid-sH6KpJgWot .btn {
    display: -webkit-flex;
  }
  .cid-sH6KpJgWot button.navbar-toggler {
    display: block;
  }
  .cid-sH6KpJgWot .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-sH6KpJgWot .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sH6KpJgWot .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sH6KpJgWot .navbar-collapse.collapsing,
  .cid-sH6KpJgWot .navbar-collapse.show {
    display: block !important;
  }
  .cid-sH6KpJgWot .navbar-collapse.collapsing .navbar-nav,
  .cid-sH6KpJgWot .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sH6KpJgWot .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sH6KpJgWot .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sH6KpJgWot .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sH6KpJgWot .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sH6KpJgWot .navbar-collapse.collapsing .navbar-buttons,
  .cid-sH6KpJgWot .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sH6KpJgWot .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sH6KpJgWot .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sH6KpJgWot .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sH6KpJgWot .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sH6KpJgWot .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sH6KpJgWot .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sH6KpJgWot .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-sH6KpJgWot .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-sH6KpJgWot .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-sH6KpJgWot .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sH6KpJgWot .nav-link:hover,
.cid-sH6KpJgWot .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-sH6KpFQXje {
  background-image: url("../../../assets/images/gopr3023-2000x1500.webp");
}
.cid-sH6KpFQXje .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-sH6KpFQXje .mbr-text,
.cid-sH6KpFQXje .mbr-section-btn {
  text-align: left;
}
.cid-sH6KpGiWmK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sH6KpHr2su {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH6KpHr2su .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-sH6KpHr2su .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sH6KpHr2su img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sH6KpHr2su .text-wrapper {
    padding: 2rem;
  }
}
.cid-sH6KpHPt0H {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH6KpHPt0H .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-sH6KpHPt0H .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sH6KpHPt0H .row {
  flex-direction: row-reverse;
}
.cid-sH6KpHPt0H img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sH6KpHPt0H .text-wrapper {
    padding: 2rem;
  }
}
.cid-sH70ISRQId {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/gopr0920-2000x1500.webp");
}
.cid-sH70ISRQId h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sH70ISRQId h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sH70ISRQId h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-sH70ISRQId h3::before,
  .cid-sH70ISRQId h3::after {
    display: none;
  }
}
.cid-sH78oaq7UL {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH78oaq7UL .video-wrapper iframe {
  width: 100%;
}
.cid-sH78oaq7UL .mbr-section-title,
.cid-sH78oaq7UL .mbr-section-subtitle,
.cid-sH78oaq7UL .mbr-text {
  text-align: center;
}
.cid-sOonSVpkte {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOonSVpkte .video-wrapper iframe {
  width: 100%;
}
.cid-sOonSVpkte .mbr-section-title,
.cid-sOonSVpkte .mbr-section-subtitle,
.cid-sOonSVpkte .mbr-text {
  text-align: center;
}
.cid-sOooiJH5Jw {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sOooiJH5Jw .video-wrapper iframe {
  width: 100%;
}
.cid-sOooiJH5Jw .mbr-section-title,
.cid-sOooiJH5Jw .mbr-section-subtitle,
.cid-sOooiJH5Jw .mbr-text {
  text-align: center;
}
.cid-sH6KpIdZxy {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sH6KpIdZxy .content {
    text-align: center;
  }
  .cid-sH6KpIdZxy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sH6KpIdZxy .img-logo img {
  height: 6rem;
}
.cid-sH6KpIdZxy .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sH6KpIdZxy .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-sH6KpIdZxy .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sH6KpIdZxy .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-sH6KpIdZxy .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sH6KpIdZxy .social-list a:hover {
  opacity: 1;
}
.cid-sH6KpIdZxy .list {
  list-style-type: none;
  padding: 0;
}
.cid-sH6KpIdZxy .list li {
  padding-bottom: .5rem;
}
.cid-sH6KpIdZxy .list li:last-child {
  padding-bottom: 0;
}
.cid-sH6KpIdZxy .mbr-footer-list,
.cid-sH6KpIdZxy .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sH6KpIdZxy .mbr-footer-list,
  .cid-sH6KpIdZxy .form-text,
  .cid-sH6KpIdZxy .footer-title,
  .cid-sH6KpIdZxy .footer-main-title,
  .cid-sH6KpIdZxy .form-text,
  .cid-sH6KpIdZxy .list {
    text-align: center !important;
  }
  .cid-sH6KpIdZxy .mbr-form,
  .cid-sH6KpIdZxy .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-sH6KpIdZxy .footer-main-title {
  color: #ffcc29;
}
.cid-sH6KpIdZxy .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-sR6xQq8LRU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sR6xQq8LRU nav.navbar {
  position: fixed;
}
.cid-sR6xQq8LRU .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-sR6xQq8LRU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sR6xQq8LRU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sR6xQq8LRU .dropdown-item:hover,
.cid-sR6xQq8LRU .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-sR6xQq8LRU .dropdown-item:hover span {
  color: white;
}
.cid-sR6xQq8LRU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sR6xQq8LRU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sR6xQq8LRU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sR6xQq8LRU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sR6xQq8LRU .nav-link {
  position: relative;
}
.cid-sR6xQq8LRU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sR6xQq8LRU .container {
    flex-wrap: nowrap;
  }
}
.cid-sR6xQq8LRU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sR6xQq8LRU .dropdown-menu,
.cid-sR6xQq8LRU .navbar.opened {
  background: #ffffff !important;
}
.cid-sR6xQq8LRU .nav-item:focus,
.cid-sR6xQq8LRU .nav-link:focus {
  outline: none;
}
.cid-sR6xQq8LRU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sR6xQq8LRU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sR6xQq8LRU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sR6xQq8LRU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sR6xQq8LRU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR6xQq8LRU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR6xQq8LRU .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-sR6xQq8LRU .navbar.opened {
  transition: all 0.3s;
}
.cid-sR6xQq8LRU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sR6xQq8LRU .navbar .navbar-logo img {
  width: auto;
}
.cid-sR6xQq8LRU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR6xQq8LRU .navbar.collapsed {
  justify-content: center;
}
.cid-sR6xQq8LRU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR6xQq8LRU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR6xQq8LRU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sR6xQq8LRU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR6xQq8LRU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sR6xQq8LRU .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-sR6xQq8LRU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR6xQq8LRU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sR6xQq8LRU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sR6xQq8LRU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR6xQq8LRU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR6xQq8LRU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR6xQq8LRU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sR6xQq8LRU .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-sR6xQq8LRU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sR6xQq8LRU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR6xQq8LRU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sR6xQq8LRU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sR6xQq8LRU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sR6xQq8LRU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sR6xQq8LRU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sR6xQq8LRU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sR6xQq8LRU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sR6xQq8LRU .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-sR6xQq8LRU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR6xQq8LRU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR6xQq8LRU .dropdown-item.active,
.cid-sR6xQq8LRU .dropdown-item:active {
  background-color: transparent;
}
.cid-sR6xQq8LRU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sR6xQq8LRU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR6xQq8LRU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR6xQq8LRU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sR6xQq8LRU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR6xQq8LRU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR6xQq8LRU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sR6xQq8LRU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sR6xQq8LRU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sR6xQq8LRU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sR6xQq8LRU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sR6xQq8LRU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR6xQq8LRU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR6xQq8LRU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sR6xQq8LRU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR6xQq8LRU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sR6xQq8LRU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sR6xQq8LRU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR6xQq8LRU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sR6xQq8LRU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sR6xQq8LRU .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-sR6xQq8LRU .navbar {
    height: 70px;
  }
  .cid-sR6xQq8LRU .navbar.opened {
    height: auto;
  }
  .cid-sR6xQq8LRU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGuLySdWo7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tGuTjNSrtB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-t66izPjVdb .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-t66izPjVdb .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-t66izPjVdb a {
  font-style: normal;
}
.cid-t66izPjVdb .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-t66izPjVdb .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-t66izPjVdb .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-t66izPjVdb .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t66izPjVdb .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-t66izPjVdb .nav-item:focus,
.cid-t66izPjVdb .nav-link:focus {
  outline: none;
}
.cid-t66izPjVdb .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t66izPjVdb .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t66izPjVdb .menu-logo {
  margin-right: auto;
}
.cid-t66izPjVdb .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t66izPjVdb .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t66izPjVdb .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-t66izPjVdb .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t66izPjVdb .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t66izPjVdb .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t66izPjVdb .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t66izPjVdb .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t66izPjVdb .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t66izPjVdb .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t66izPjVdb .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t66izPjVdb .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t66izPjVdb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t66izPjVdb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t66izPjVdb .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t66izPjVdb .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t66izPjVdb .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t66izPjVdb .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t66izPjVdb .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t66izPjVdb .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t66izPjVdb .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t66izPjVdb .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t66izPjVdb .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t66izPjVdb button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t66izPjVdb button.navbar-toggler:focus {
  outline: none;
}
.cid-t66izPjVdb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-t66izPjVdb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t66izPjVdb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t66izPjVdb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t66izPjVdb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t66izPjVdb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t66izPjVdb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t66izPjVdb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t66izPjVdb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t66izPjVdb .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t66izPjVdb .collapsed .btn {
  display: -webkit-flex;
}
.cid-t66izPjVdb .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t66izPjVdb .collapsed .navbar-collapse.collapsing,
.cid-t66izPjVdb .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t66izPjVdb .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t66izPjVdb .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t66izPjVdb .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t66izPjVdb .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t66izPjVdb .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t66izPjVdb .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t66izPjVdb .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t66izPjVdb .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t66izPjVdb .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t66izPjVdb .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t66izPjVdb .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-t66izPjVdb .collapsed button.navbar-toggler {
  display: block;
}
.cid-t66izPjVdb .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t66izPjVdb .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t66izPjVdb .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t66izPjVdb .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t66izPjVdb .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t66izPjVdb .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t66izPjVdb.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t66izPjVdb img {
    height: 3.8rem !important;
  }
  .cid-t66izPjVdb .icon-wrap {
    margin-top: 1rem;
  }
  .cid-t66izPjVdb .menu-wrap {
    flex-direction: column;
  }
  .cid-t66izPjVdb .btn {
    display: -webkit-flex;
  }
  .cid-t66izPjVdb button.navbar-toggler {
    display: block;
  }
  .cid-t66izPjVdb .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-t66izPjVdb .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t66izPjVdb .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t66izPjVdb .navbar-collapse.collapsing,
  .cid-t66izPjVdb .navbar-collapse.show {
    display: block !important;
  }
  .cid-t66izPjVdb .navbar-collapse.collapsing .navbar-nav,
  .cid-t66izPjVdb .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t66izPjVdb .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t66izPjVdb .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t66izPjVdb .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t66izPjVdb .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t66izPjVdb .navbar-collapse.collapsing .navbar-buttons,
  .cid-t66izPjVdb .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t66izPjVdb .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t66izPjVdb .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t66izPjVdb .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t66izPjVdb .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t66izPjVdb .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t66izPjVdb .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t66izPjVdb .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-t66izPjVdb .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-t66izPjVdb .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-t66izPjVdb .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t66izPjVdb .nav-link:hover,
.cid-t66izPjVdb .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-t66izH4xtN {
  background-image: url("../../../assets/images/img-20220403-wa0173-1600x1200.webp");
}
.cid-t66izH4xtN .mbr-section-title {
  text-align: right;
  color: #ffcc29;
}
.cid-t66izH4xtN .mbr-text,
.cid-t66izH4xtN .mbr-section-btn {
  text-align: right;
}
.cid-t66izHsGjF {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t66izHLMtg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t67mKfpRoz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t67mKfpRoz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t67mKfpRoz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t67mKfpRoz .text-wrapper {
    padding: 2rem;
  }
}
.cid-t66izI2M6o {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t66izIi7wS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t67K8rD9wC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-20220501-wa0046-1280x720.webp");
}
.cid-t67K8rD9wC .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t67K8rD9wC .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t67K8rD9wC .col-text {
    padding: 30px;
  }
}
.cid-t67K8rD9wC .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t67K8rD9wC .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t67K8rD9wC .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-t67K8rD9wC .col-form {
    max-height: 440px;
  }
}
.cid-t67K8rD9wC .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t67K8rD9wC .text-wrapper {
    text-align: center !important;
  }
}
.cid-t67K8rD9wC .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t67K8rD9wC .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t67K8rD9wC .mbr-text {
  letter-spacing: inherit;
  color: #222222;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t67K8rD9wC .mbr-text {
    text-align: center !important;
  }
}
.cid-t67K8rD9wC .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-t67K8rD9wC .name-text {
  color: #222222;
  width: 100%;
}
.cid-t67K8rD9wC .prof-text {
  color: #555555;
  width: 100%;
}
.cid-t67K8rD9wC .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-t67K8rD9wC .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t67K8rD9wC .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t67K8rD9wC .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t67KZ6LCmZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6bLWPAWsZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cid-t6bLWPAWsZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t6bLWPAWsZ .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t6bLWPAWsZ .col-text {
    padding: 30px;
  }
}
.cid-t6bLWPAWsZ .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6bLWPAWsZ .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t6bLWPAWsZ .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-t6bLWPAWsZ .col-form {
    max-height: 440px;
  }
}
.cid-t6bLWPAWsZ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t6bLWPAWsZ .text-wrapper {
    text-align: center !important;
  }
}
.cid-t6bLWPAWsZ .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t6bLWPAWsZ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t6bLWPAWsZ .mbr-text {
  letter-spacing: inherit;
  color: #222222;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t6bLWPAWsZ .mbr-text {
    text-align: center !important;
  }
}
.cid-t6bLWPAWsZ .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-t6bLWPAWsZ .name-text {
  color: #222222;
  width: 100%;
}
.cid-t6bLWPAWsZ .prof-text {
  color: #555555;
  width: 100%;
}
.cid-t6bLWPAWsZ .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-t6bLWPAWsZ .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t6bLWPAWsZ .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6bLWPAWsZ .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6bMABEOh9 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t67JO2LLCe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t67JO2LLCe [class^="socicon-"]:before,
.cid-t67JO2LLCe [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-t67JO2LLCe .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-t67JO2LLCe .btn-social:hover {
  background: #ffcc29;
}
.cid-t67JO2LLCe .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-t67JO2LLCe .mbr-section-title,
.cid-t67JO2LLCe .mbr-social-likes {
  text-align: right;
}
.cid-t66izOJaOe {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-t66izOJaOe .content {
    text-align: center;
  }
  .cid-t66izOJaOe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t66izOJaOe .img-logo img {
  height: 6rem;
}
.cid-t66izOJaOe .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t66izOJaOe .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-t66izOJaOe .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-t66izOJaOe .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-t66izOJaOe .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t66izOJaOe .social-list a:hover {
  opacity: 1;
}
.cid-t66izOJaOe .list {
  list-style-type: none;
  padding: 0;
}
.cid-t66izOJaOe .list li {
  padding-bottom: .5rem;
}
.cid-t66izOJaOe .list li:last-child {
  padding-bottom: 0;
}
.cid-t66izOJaOe .mbr-footer-list,
.cid-t66izOJaOe .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-t66izOJaOe .mbr-footer-list,
  .cid-t66izOJaOe .form-text,
  .cid-t66izOJaOe .footer-title,
  .cid-t66izOJaOe .footer-main-title,
  .cid-t66izOJaOe .form-text,
  .cid-t66izOJaOe .list {
    text-align: center !important;
  }
  .cid-t66izOJaOe .mbr-form,
  .cid-t66izOJaOe .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-t66izOJaOe .footer-main-title {
  color: #ffcc29;
}
.cid-t66izOJaOe .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-t6ifm4vJoM .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-t6ifm4vJoM .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-t6ifm4vJoM a {
  font-style: normal;
}
.cid-t6ifm4vJoM .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-t6ifm4vJoM .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-t6ifm4vJoM .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-t6ifm4vJoM .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t6ifm4vJoM .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-t6ifm4vJoM .nav-item:focus,
.cid-t6ifm4vJoM .nav-link:focus {
  outline: none;
}
.cid-t6ifm4vJoM .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t6ifm4vJoM .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t6ifm4vJoM .menu-logo {
  margin-right: auto;
}
.cid-t6ifm4vJoM .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t6ifm4vJoM .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t6ifm4vJoM .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-t6ifm4vJoM .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t6ifm4vJoM .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t6ifm4vJoM .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t6ifm4vJoM .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t6ifm4vJoM .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t6ifm4vJoM .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t6ifm4vJoM .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t6ifm4vJoM .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t6ifm4vJoM .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t6ifm4vJoM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t6ifm4vJoM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t6ifm4vJoM .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t6ifm4vJoM .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6ifm4vJoM .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t6ifm4vJoM .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t6ifm4vJoM .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t6ifm4vJoM .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t6ifm4vJoM .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t6ifm4vJoM .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t6ifm4vJoM .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t6ifm4vJoM button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t6ifm4vJoM button.navbar-toggler:focus {
  outline: none;
}
.cid-t6ifm4vJoM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-t6ifm4vJoM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6ifm4vJoM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6ifm4vJoM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6ifm4vJoM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6ifm4vJoM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6ifm4vJoM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t6ifm4vJoM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t6ifm4vJoM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6ifm4vJoM .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t6ifm4vJoM .collapsed .btn {
  display: -webkit-flex;
}
.cid-t6ifm4vJoM .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t6ifm4vJoM .collapsed .navbar-collapse.collapsing,
.cid-t6ifm4vJoM .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t6ifm4vJoM .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t6ifm4vJoM .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t6ifm4vJoM .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t6ifm4vJoM .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t6ifm4vJoM .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t6ifm4vJoM .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t6ifm4vJoM .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t6ifm4vJoM .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t6ifm4vJoM .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t6ifm4vJoM .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t6ifm4vJoM .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-t6ifm4vJoM .collapsed button.navbar-toggler {
  display: block;
}
.cid-t6ifm4vJoM .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t6ifm4vJoM .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t6ifm4vJoM .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t6ifm4vJoM .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t6ifm4vJoM .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t6ifm4vJoM .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t6ifm4vJoM.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t6ifm4vJoM img {
    height: 3.8rem !important;
  }
  .cid-t6ifm4vJoM .icon-wrap {
    margin-top: 1rem;
  }
  .cid-t6ifm4vJoM .menu-wrap {
    flex-direction: column;
  }
  .cid-t6ifm4vJoM .btn {
    display: -webkit-flex;
  }
  .cid-t6ifm4vJoM button.navbar-toggler {
    display: block;
  }
  .cid-t6ifm4vJoM .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-t6ifm4vJoM .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t6ifm4vJoM .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t6ifm4vJoM .navbar-collapse.collapsing,
  .cid-t6ifm4vJoM .navbar-collapse.show {
    display: block !important;
  }
  .cid-t6ifm4vJoM .navbar-collapse.collapsing .navbar-nav,
  .cid-t6ifm4vJoM .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t6ifm4vJoM .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t6ifm4vJoM .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t6ifm4vJoM .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t6ifm4vJoM .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t6ifm4vJoM .navbar-collapse.collapsing .navbar-buttons,
  .cid-t6ifm4vJoM .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t6ifm4vJoM .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t6ifm4vJoM .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t6ifm4vJoM .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t6ifm4vJoM .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t6ifm4vJoM .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t6ifm4vJoM .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t6ifm4vJoM .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-t6ifm4vJoM .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-t6ifm4vJoM .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-t6ifm4vJoM .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t6ifm4vJoM .nav-link:hover,
.cid-t6ifm4vJoM .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-t6iflZtBUa {
  background-image: url("../../../assets/images/img-20210905-151636785-hdr-2000x1500.webp");
}
.cid-t6iflZtBUa .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-t6iflZtBUa .mbr-text,
.cid-t6iflZtBUa .mbr-section-btn {
  text-align: left;
}
.cid-t6ifm06hX0 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t6ifm0EHhI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6ifm0VGSJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t6ifm0VGSJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6ifm0VGSJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6ifm0VGSJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6ifm2iNDs {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6ifm2Caw9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-munbaik-cycling-clothing-5851033-2000x1333.webp");
}
.cid-t6ifm2Caw9 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t6ifm2Caw9 .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t6ifm2Caw9 .col-text {
    padding: 30px;
  }
}
.cid-t6ifm2Caw9 .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6ifm2Caw9 .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t6ifm2Caw9 .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-t6ifm2Caw9 .col-form {
    max-height: 440px;
  }
}
.cid-t6ifm2Caw9 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t6ifm2Caw9 .text-wrapper {
    text-align: center !important;
  }
}
.cid-t6ifm2Caw9 .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t6ifm2Caw9 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t6ifm2Caw9 .mbr-text {
  letter-spacing: inherit;
  color: #222222;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t6ifm2Caw9 .mbr-text {
    text-align: center !important;
  }
}
.cid-t6ifm2Caw9 .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-t6ifm2Caw9 .name-text {
  color: #222222;
  width: 100%;
}
.cid-t6ifm2Caw9 .prof-text {
  color: #555555;
  width: 100%;
}
.cid-t6ifm2Caw9 .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-t6ifm2Caw9 .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t6ifm2Caw9 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6ifm2Caw9 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6ifm2ZwSM {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6j3Xf9Yi3 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t6j3Xf9Yi3 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-t6j3Xf9Yi3 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-t6j3Xf9Yi3 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffcc29;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-t6ifm3r8WT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6ifm3r8WT [class^="socicon-"]:before,
.cid-t6ifm3r8WT [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-t6ifm3r8WT .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-t6ifm3r8WT .btn-social:hover {
  background: #ffcc29;
}
.cid-t6ifm3r8WT .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-t6ifm3r8WT .mbr-section-title,
.cid-t6ifm3r8WT .mbr-social-likes {
  text-align: right;
}
.cid-t6ifm3ZdaS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-t6ifm3ZdaS .content {
    text-align: center;
  }
  .cid-t6ifm3ZdaS .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t6ifm3ZdaS .img-logo img {
  height: 6rem;
}
.cid-t6ifm3ZdaS .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6ifm3ZdaS .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-t6ifm3ZdaS .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-t6ifm3ZdaS .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-t6ifm3ZdaS .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t6ifm3ZdaS .social-list a:hover {
  opacity: 1;
}
.cid-t6ifm3ZdaS .list {
  list-style-type: none;
  padding: 0;
}
.cid-t6ifm3ZdaS .list li {
  padding-bottom: .5rem;
}
.cid-t6ifm3ZdaS .list li:last-child {
  padding-bottom: 0;
}
.cid-t6ifm3ZdaS .mbr-footer-list,
.cid-t6ifm3ZdaS .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-t6ifm3ZdaS .mbr-footer-list,
  .cid-t6ifm3ZdaS .form-text,
  .cid-t6ifm3ZdaS .footer-title,
  .cid-t6ifm3ZdaS .footer-main-title,
  .cid-t6ifm3ZdaS .form-text,
  .cid-t6ifm3ZdaS .list {
    text-align: center !important;
  }
  .cid-t6ifm3ZdaS .mbr-form,
  .cid-t6ifm3ZdaS .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-t6ifm3ZdaS .footer-main-title {
  color: #ffcc29;
}
.cid-t6ifm3ZdaS .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-thBILPBRgb .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-thBILPBRgb .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-thBILPBRgb a {
  font-style: normal;
}
.cid-thBILPBRgb .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-thBILPBRgb .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-thBILPBRgb .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-thBILPBRgb .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-thBILPBRgb .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-thBILPBRgb .nav-item:focus,
.cid-thBILPBRgb .nav-link:focus {
  outline: none;
}
.cid-thBILPBRgb .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-thBILPBRgb .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-thBILPBRgb .menu-logo {
  margin-right: auto;
}
.cid-thBILPBRgb .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thBILPBRgb .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-thBILPBRgb .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-thBILPBRgb .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-thBILPBRgb .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-thBILPBRgb .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-thBILPBRgb .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-thBILPBRgb .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-thBILPBRgb .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-thBILPBRgb .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-thBILPBRgb .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-thBILPBRgb .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-thBILPBRgb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-thBILPBRgb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thBILPBRgb .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-thBILPBRgb .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thBILPBRgb .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-thBILPBRgb .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-thBILPBRgb .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-thBILPBRgb .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-thBILPBRgb .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-thBILPBRgb .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-thBILPBRgb .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-thBILPBRgb button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-thBILPBRgb button.navbar-toggler:focus {
  outline: none;
}
.cid-thBILPBRgb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-thBILPBRgb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-thBILPBRgb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-thBILPBRgb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-thBILPBRgb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-thBILPBRgb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thBILPBRgb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-thBILPBRgb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-thBILPBRgb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thBILPBRgb .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-thBILPBRgb .collapsed .btn {
  display: -webkit-flex;
}
.cid-thBILPBRgb .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-thBILPBRgb .collapsed .navbar-collapse.collapsing,
.cid-thBILPBRgb .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-thBILPBRgb .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-thBILPBRgb .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-thBILPBRgb .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-thBILPBRgb .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-thBILPBRgb .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-thBILPBRgb .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-thBILPBRgb .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-thBILPBRgb .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-thBILPBRgb .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-thBILPBRgb .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-thBILPBRgb .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-thBILPBRgb .collapsed button.navbar-toggler {
  display: block;
}
.cid-thBILPBRgb .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-thBILPBRgb .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-thBILPBRgb .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-thBILPBRgb .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-thBILPBRgb .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-thBILPBRgb .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-thBILPBRgb.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-thBILPBRgb img {
    height: 3.8rem !important;
  }
  .cid-thBILPBRgb .icon-wrap {
    margin-top: 1rem;
  }
  .cid-thBILPBRgb .menu-wrap {
    flex-direction: column;
  }
  .cid-thBILPBRgb .btn {
    display: -webkit-flex;
  }
  .cid-thBILPBRgb button.navbar-toggler {
    display: block;
  }
  .cid-thBILPBRgb .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-thBILPBRgb .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-thBILPBRgb .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-thBILPBRgb .navbar-collapse.collapsing,
  .cid-thBILPBRgb .navbar-collapse.show {
    display: block !important;
  }
  .cid-thBILPBRgb .navbar-collapse.collapsing .navbar-nav,
  .cid-thBILPBRgb .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-thBILPBRgb .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-thBILPBRgb .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-thBILPBRgb .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-thBILPBRgb .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-thBILPBRgb .navbar-collapse.collapsing .navbar-buttons,
  .cid-thBILPBRgb .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-thBILPBRgb .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-thBILPBRgb .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-thBILPBRgb .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-thBILPBRgb .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-thBILPBRgb .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-thBILPBRgb .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-thBILPBRgb .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-thBILPBRgb .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-thBILPBRgb .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-thBILPBRgb .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-thBILPBRgb .nav-link:hover,
.cid-thBILPBRgb .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-thBILJXcMR {
  background-image: url("../../../assets/images/gopr6592-1-644x483.webp");
}
.cid-thBILJXcMR .mbr-section-title {
  text-align: right;
  color: #ffcc29;
}
.cid-thBILJXcMR .mbr-text,
.cid-thBILJXcMR .mbr-section-btn {
  text-align: right;
}
.cid-thBPrUCzMV {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #121212;
}
.cid-thBPrUCzMV .container-fluid {
  position: relative;
}
.cid-thBPrUCzMV .page-title-content .mbr-iconfont {
  font-size: 31px;
  margin-top: -10px;
  color: #ffd03a;
}
.cid-thBPrUCzMV .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-thBPrUCzMV .page-title-content p > span {
  font-size: 39px !important;
  color: #ffd03a;
  margin-left: 1rem !important;
}
@media (max-width: 576px) {
  .cid-thBPrUCzMV .page-title-content {
    text-align: center;
  }
}
.cid-thBPrUCzMV .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-thBPrUCzMV .mbr-section-btn {
  color: #ffffff;
  margin-left: 0;
  margin-right: 0;
}
.cid-thBPrUCzMV .mbr-section-btn .btn:hover {
  color: #ffffff !important;
}
.cid-thBPrUCzMV .mbr-section-btn a {
  display: inline-block;
  color: #f1a631;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-thBPrUCzMV .mbr-section-btn a:not(:first-child) {
  margin-left: 20px;
}
.cid-thBPrUCzMV .mbr-section-btn a:after {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-thBPrUCzMV .mbr-section-btn a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 9px;
}
.cid-thBPrUCzMV .mbr-section-btn a:hover:after,
.cid-thBPrUCzMV .mbr-section-btn a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-thBPrUCzMV .mbr-section-btn a:hover:before,
.cid-thBPrUCzMV .mbr-section-btn a:focus:before {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-thBPrUCzMV .text {
  margin: 0px;
  margin-top: 67px;
}
.cid-thBPrUCzMV .scroll-text {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.cid-thBPrUCzMV .scroll-text:hover {
  opacity: 0.5;
}
.cid-thBPrUCzMV .mbr-arrow {
  bottom: 0px;
  right: -100px;
  background-color: #121212;
}
.cid-thBPrUCzMV .mbr-arrow .mbr-iconfont {
  color: #ffd03a;
  font-size: 51px;
}
.cid-thBPrUCzMV .mbr-arrow > a > i {
  left: -27px;
  font-style: normal;
  line-height: 1;
}
.cid-thBPrUCzMV .down {
  margin-top: 126px;
}
@media (max-width: 768px) {
  .cid-thBPrUCzMV .down {
    display: none;
  }
}
.cid-thBPrUCzMV .social-links .mbr-iconfont {
  color: #ffd03a;
}
.cid-thBPrUCzMV .social-links .link {
  margin-left: 10px;
  margin-right: 10px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-thBPrUCzMV .social-links .link:hover {
  opacity: 0.5;
}
.cid-thBPrUCzMV .btn {
  padding: 0.7rem 2.2rem;
}
.cid-thBPrUCzMV a.text-white:hover,
.cid-thBPrUCzMV a.text-white:focus {
  color: #ffffff !important;
}
.cid-thBPrUCzMV .text,
.cid-thBPrUCzMV .mbr-section-btn {
  color: #ffcc29;
}
.cid-thBPrUCzMV .page-title-content .hello {
  color: #ffcc29;
}
.cid-thBSqNb2nL {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-thBUCH52wk {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-thBW52cj6D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-thBZzODgjw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-thBZzODgjw .row {
  padding: 0px;
  margin: 0;
  align-items: center;
}
.cid-thBZzODgjw .container-fluid {
  padding: 0;
}
.cid-thBZzODgjw .right-side {
  padding: 0;
}
.cid-thBZzODgjw .mbr-section-title {
  padding-bottom: 35px;
}
.cid-thBZzODgjw .l1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.1;
}
.cid-thBZzODgjw .l2,
.cid-thBZzODgjw .lin {
  color: #ffffff;
}
.cid-thBZzODgjw a {
  transition: color .3s;
  font-weight: 400;
}
.cid-thBZzODgjw a.text-success:hover {
  color: #237FFB !important;
}
.cid-thBZzODgjw .left-side {
  padding-left: 84px;
}
.cid-thBZzODgjw .l2 {
  margin-top: 20px;
}
.cid-thBZzODgjw .line {
  height: 2px;
  width: 166px;
  background-color: #ffcc29;
  margin-left: -70px;
  margin-top: -2px;
}
.cid-thBZzODgjw .l2,
.cid-thBZzODgjw .iconfont-wrapper {
  color: #ffcc29;
}
.cid-thBZzODgjw img {
  max-height: 255px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-thBZzODgjw img {
    max-height: 400px;
  }
  .cid-thBZzODgjw .left-side {
    padding-left: 15px;
  }
  .cid-thBZzODgjw .line {
    display: none;
  }
}
.cid-thBZzODgjw .l1,
.cid-thBZzODgjw .iconfont-wrapper {
  color: #ffcc29;
}
.cid-thC1yROPFJ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-thC4rtPxcK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-thC4rtPxcK .row {
  padding: 0px;
  margin: 0;
  align-items: center;
}
.cid-thC4rtPxcK .container-fluid {
  padding: 0;
}
.cid-thC4rtPxcK .row {
  flex-direction: row-reverse;
}
.cid-thC4rtPxcK .right-side {
  padding: 0;
}
.cid-thC4rtPxcK .mbr-section-title {
  padding-bottom: 35px;
}
.cid-thC4rtPxcK .l1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.1;
}
.cid-thC4rtPxcK .l2,
.cid-thC4rtPxcK .lin {
  color: #ffffff;
}
.cid-thC4rtPxcK a {
  transition: color .3s;
  font-weight: 400;
}
.cid-thC4rtPxcK a.text-success:hover {
  color: #237FFB !important;
}
.cid-thC4rtPxcK .left-side {
  padding-left: 84px;
}
.cid-thC4rtPxcK .l2 {
  margin-top: 20px;
}
.cid-thC4rtPxcK .line {
  height: 2px;
  width: 166px;
  background-color: #ffcc29;
  margin-left: -70px;
  margin-top: -2px;
}
.cid-thC4rtPxcK .l2,
.cid-thC4rtPxcK .iconfont-wrapper {
  color: #ffcc29;
}
.cid-thC4rtPxcK img {
  max-height: 255px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-thC4rtPxcK img {
    max-height: 400px;
  }
  .cid-thC4rtPxcK .left-side {
    padding-left: 15px;
  }
  .cid-thC4rtPxcK .line {
    display: none;
  }
}
.cid-thC4rtPxcK .l1,
.cid-thC4rtPxcK .iconfont-wrapper {
  color: #ffcc29;
}
.cid-thC5E9Indv {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-thC8vMFKQn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-thC8vMFKQn .row {
  padding: 0px;
  margin: 0;
  align-items: center;
}
.cid-thC8vMFKQn .container-fluid {
  padding: 0;
}
.cid-thC8vMFKQn .right-side {
  padding: 0;
}
.cid-thC8vMFKQn .mbr-section-title {
  padding-bottom: 35px;
}
.cid-thC8vMFKQn .l1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.1;
}
.cid-thC8vMFKQn .l2,
.cid-thC8vMFKQn .lin {
  color: #ffffff;
}
.cid-thC8vMFKQn a {
  transition: color .3s;
  font-weight: 400;
}
.cid-thC8vMFKQn a.text-success:hover {
  color: #237FFB !important;
}
.cid-thC8vMFKQn .left-side {
  padding-left: 84px;
}
.cid-thC8vMFKQn .l2 {
  margin-top: 20px;
}
.cid-thC8vMFKQn .line {
  height: 2px;
  width: 166px;
  background-color: #ffcc29;
  margin-left: -70px;
  margin-top: -2px;
}
.cid-thC8vMFKQn .l2,
.cid-thC8vMFKQn .iconfont-wrapper {
  color: #ffcc29;
}
.cid-thC8vMFKQn img {
  max-height: 255px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-thC8vMFKQn img {
    max-height: 400px;
  }
  .cid-thC8vMFKQn .left-side {
    padding-left: 15px;
  }
  .cid-thC8vMFKQn .line {
    display: none;
  }
}
.cid-thC8vMFKQn .l1,
.cid-thC8vMFKQn .iconfont-wrapper {
  color: #ffcc29;
}
.cid-thCa972gcu {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-thCeZUxojJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-thCeZUxojJ .row {
  padding: 0px;
  margin: 0;
  align-items: center;
}
.cid-thCeZUxojJ .container-fluid {
  padding: 0;
}
.cid-thCeZUxojJ .row {
  flex-direction: row-reverse;
}
.cid-thCeZUxojJ .right-side {
  padding: 0;
}
.cid-thCeZUxojJ .mbr-section-title {
  padding-bottom: 35px;
}
.cid-thCeZUxojJ .l1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.1;
}
.cid-thCeZUxojJ .l2,
.cid-thCeZUxojJ .lin {
  color: #ffffff;
}
.cid-thCeZUxojJ a {
  transition: color .3s;
  font-weight: 400;
}
.cid-thCeZUxojJ a.text-success:hover {
  color: #237FFB !important;
}
.cid-thCeZUxojJ .left-side {
  padding-left: 84px;
}
.cid-thCeZUxojJ .l2 {
  margin-top: 20px;
}
.cid-thCeZUxojJ .line {
  height: 2px;
  width: 166px;
  background-color: #ffcc29;
  margin-left: -70px;
  margin-top: -2px;
}
.cid-thCeZUxojJ .l2,
.cid-thCeZUxojJ .iconfont-wrapper {
  color: #ffcc29;
}
.cid-thCeZUxojJ img {
  max-height: 255px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-thCeZUxojJ img {
    max-height: 400px;
  }
  .cid-thCeZUxojJ .left-side {
    padding-left: 15px;
  }
  .cid-thCeZUxojJ .line {
    display: none;
  }
}
.cid-thCeZUxojJ .l1,
.cid-thCeZUxojJ .iconfont-wrapper {
  color: #ffcc29;
}
.cid-thCfqUcy4e {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-thCis24rt5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-thCis24rt5 .row {
  padding: 0px;
  margin: 0;
  align-items: center;
}
.cid-thCis24rt5 .container-fluid {
  padding: 0;
}
.cid-thCis24rt5 .right-side {
  padding: 0;
}
.cid-thCis24rt5 .mbr-section-title {
  padding-bottom: 35px;
}
.cid-thCis24rt5 .l1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.1;
}
.cid-thCis24rt5 .l2,
.cid-thCis24rt5 .lin {
  color: #ffffff;
}
.cid-thCis24rt5 a {
  transition: color .3s;
  font-weight: 400;
}
.cid-thCis24rt5 a.text-success:hover {
  color: #237FFB !important;
}
.cid-thCis24rt5 .left-side {
  padding-left: 84px;
}
.cid-thCis24rt5 .l2 {
  margin-top: 20px;
}
.cid-thCis24rt5 .line {
  height: 2px;
  width: 166px;
  background-color: #ffcc29;
  margin-left: -70px;
  margin-top: -2px;
}
.cid-thCis24rt5 .l2,
.cid-thCis24rt5 .iconfont-wrapper {
  color: #ffcc29;
}
.cid-thCis24rt5 img {
  max-height: 255px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-thCis24rt5 img {
    max-height: 400px;
  }
  .cid-thCis24rt5 .left-side {
    padding-left: 15px;
  }
  .cid-thCis24rt5 .line {
    display: none;
  }
}
.cid-thCis24rt5 .l1,
.cid-thCis24rt5 .iconfont-wrapper {
  color: #ffcc29;
}
.cid-thCit6Jd5B {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-thBILOAYWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-thBILOAYWu [class^="socicon-"]:before,
.cid-thBILOAYWu [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-thBILOAYWu .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-thBILOAYWu .btn-social:hover {
  background: #ffcc29;
}
.cid-thBILOAYWu .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-thBILOAYWu .mbr-section-title,
.cid-thBILOAYWu .mbr-social-likes {
  text-align: right;
}
.cid-thBILOZ8op {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-thBILOZ8op .content {
    text-align: center;
  }
  .cid-thBILOZ8op .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-thBILOZ8op .img-logo img {
  height: 6rem;
}
.cid-thBILOZ8op .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-thBILOZ8op .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-thBILOZ8op .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-thBILOZ8op .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-thBILOZ8op .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-thBILOZ8op .social-list a:hover {
  opacity: 1;
}
.cid-thBILOZ8op .list {
  list-style-type: none;
  padding: 0;
}
.cid-thBILOZ8op .list li {
  padding-bottom: .5rem;
}
.cid-thBILOZ8op .list li:last-child {
  padding-bottom: 0;
}
.cid-thBILOZ8op .mbr-footer-list,
.cid-thBILOZ8op .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-thBILOZ8op .mbr-footer-list,
  .cid-thBILOZ8op .form-text,
  .cid-thBILOZ8op .footer-title,
  .cid-thBILOZ8op .footer-main-title,
  .cid-thBILOZ8op .form-text,
  .cid-thBILOZ8op .list {
    text-align: center !important;
  }
  .cid-thBILOZ8op .mbr-form,
  .cid-thBILOZ8op .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-thBILOZ8op .footer-main-title {
  color: #ffcc29;
}
.cid-thBILOZ8op .footer-title {
  color: #ffcc29;
}
.cid-thBILQaMRx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tAsvV7LLfx .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-tAsvV7LLfx .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tAsvV7LLfx a {
  font-style: normal;
}
.cid-tAsvV7LLfx .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-tAsvV7LLfx .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-tAsvV7LLfx .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-tAsvV7LLfx .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tAsvV7LLfx .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tAsvV7LLfx .nav-item:focus,
.cid-tAsvV7LLfx .nav-link:focus {
  outline: none;
}
.cid-tAsvV7LLfx .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tAsvV7LLfx .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tAsvV7LLfx .menu-logo {
  margin-right: auto;
}
.cid-tAsvV7LLfx .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tAsvV7LLfx .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tAsvV7LLfx .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-tAsvV7LLfx .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tAsvV7LLfx .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tAsvV7LLfx .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tAsvV7LLfx .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tAsvV7LLfx .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tAsvV7LLfx .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tAsvV7LLfx .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tAsvV7LLfx .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tAsvV7LLfx .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tAsvV7LLfx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tAsvV7LLfx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAsvV7LLfx .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tAsvV7LLfx .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAsvV7LLfx .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tAsvV7LLfx .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tAsvV7LLfx .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tAsvV7LLfx .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tAsvV7LLfx .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tAsvV7LLfx .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tAsvV7LLfx .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tAsvV7LLfx button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tAsvV7LLfx button.navbar-toggler:focus {
  outline: none;
}
.cid-tAsvV7LLfx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-tAsvV7LLfx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tAsvV7LLfx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tAsvV7LLfx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tAsvV7LLfx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tAsvV7LLfx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tAsvV7LLfx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tAsvV7LLfx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tAsvV7LLfx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tAsvV7LLfx .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tAsvV7LLfx .collapsed .btn {
  display: -webkit-flex;
}
.cid-tAsvV7LLfx .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tAsvV7LLfx .collapsed .navbar-collapse.collapsing,
.cid-tAsvV7LLfx .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tAsvV7LLfx .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tAsvV7LLfx .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tAsvV7LLfx .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tAsvV7LLfx .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tAsvV7LLfx .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tAsvV7LLfx .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tAsvV7LLfx .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tAsvV7LLfx .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tAsvV7LLfx .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tAsvV7LLfx .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tAsvV7LLfx .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-tAsvV7LLfx .collapsed button.navbar-toggler {
  display: block;
}
.cid-tAsvV7LLfx .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tAsvV7LLfx .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tAsvV7LLfx .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tAsvV7LLfx .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tAsvV7LLfx .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tAsvV7LLfx .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tAsvV7LLfx.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tAsvV7LLfx img {
    height: 3.8rem !important;
  }
  .cid-tAsvV7LLfx .icon-wrap {
    margin-top: 1rem;
  }
  .cid-tAsvV7LLfx .menu-wrap {
    flex-direction: column;
  }
  .cid-tAsvV7LLfx .btn {
    display: -webkit-flex;
  }
  .cid-tAsvV7LLfx button.navbar-toggler {
    display: block;
  }
  .cid-tAsvV7LLfx .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-tAsvV7LLfx .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tAsvV7LLfx .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tAsvV7LLfx .navbar-collapse.collapsing,
  .cid-tAsvV7LLfx .navbar-collapse.show {
    display: block !important;
  }
  .cid-tAsvV7LLfx .navbar-collapse.collapsing .navbar-nav,
  .cid-tAsvV7LLfx .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tAsvV7LLfx .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tAsvV7LLfx .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tAsvV7LLfx .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tAsvV7LLfx .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tAsvV7LLfx .navbar-collapse.collapsing .navbar-buttons,
  .cid-tAsvV7LLfx .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tAsvV7LLfx .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tAsvV7LLfx .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tAsvV7LLfx .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tAsvV7LLfx .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tAsvV7LLfx .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tAsvV7LLfx .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tAsvV7LLfx .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-tAsvV7LLfx .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-tAsvV7LLfx .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-tAsvV7LLfx .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tAsvV7LLfx .nav-link:hover,
.cid-tAsvV7LLfx .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-tAsvV23irk {
  background-image: url("../../../assets/images/gopr4906-2000x1500.webp");
}
.cid-tAsvV23irk .mbr-section-title {
  text-align: right;
  color: #ffcc29;
}
.cid-tAsvV23irk .mbr-text,
.cid-tAsvV23irk .mbr-section-btn {
  text-align: right;
}
.cid-tAsvV2slzX {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tAsvV2ImMF {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tAsvV2VAnN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffcc29;
}
.cid-tAsvV39QDR {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tAsvV3oKdV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tAsvV3oKdV .mbr-section-title {
  text-align: left;
}
.cid-tAsvV3oKdV .mbr-section-subtitle {
  text-align: left;
}
.cid-tAsvV3Y4ih {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tAsvV3Y4ih .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tAsvV3Y4ih .icon-box {
  background: #000000;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tAsvV3Y4ih .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tAsvV3Y4ih .card {
    margin-bottom: 2rem;
  }
  .cid-tAsvV3Y4ih .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tAsvV4kuAo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tAsvV4kuAo .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tAsvV4kuAo .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tAsvV4kuAo .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tAsvV4kuAo .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tAsvV4WqAR {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tAsvV4WqAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAsvV4WqAR .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-tAsvV4WqAR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAsvV4WqAR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAsvV4WqAR .text-wrapper {
    padding: 2rem;
  }
}
.cid-tAsvV5gnZS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tAsvV5gnZS img,
.cid-tAsvV5gnZS .item-img {
  width: 100%;
}
.cid-tAsvV5gnZS .item:focus,
.cid-tAsvV5gnZS span:focus {
  outline: none;
}
.cid-tAsvV5gnZS .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAsvV5gnZS .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAsvV5gnZS .item {
  padding: 0;
  margin: 0;
}
.cid-tAsvV5gnZS .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAsvV5gnZS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAsvV5gnZS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAsvV5gnZS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAsvV5gnZS .mbr-section-title {
  color: #232323;
}
.cid-tAsvV6a4nF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tAsvV6a4nF .google-map {
  height: 25rem;
  position: relative;
}
.cid-tAsvV6a4nF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tAsvV6a4nF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tAsvV6a4nF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tAsvV6a4nF .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tAsvV6a4nF .container-fluid {
  padding: 0;
}
.cid-tAsvV6a4nF .relative {
  position: relative;
  width: 100%;
}
.cid-tAsvV6a4nF .mbr-section-title {
  color: #656565;
}
.cid-tAsvV6a4nF .block {
  background: rgba(50, 50, 50, 0.8);
  position: absolute;
  padding: 2rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  width: 400px;
  height: 100%;
  top: 0;
  right: 0;
}
.cid-tAsvV6a4nF .line {
  height: 3px;
  width: 60px;
  background: #ffffff;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.cid-tAsvV6a4nF .title {
  text-align: center;
  color: #ffffff;
}
.cid-tAsvV6a4nF .text {
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .cid-tAsvV6a4nF .block {
    position: relative;
    width: 100%;
    height: auto;
    padding: 6rem 2rem;
  }
}
.cid-tAsvV6yL1O {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tAsvV6yL1O [class^="socicon-"]:before,
.cid-tAsvV6yL1O [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tAsvV6yL1O .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-tAsvV6yL1O .btn-social:hover {
  background: #ffcc29;
}
.cid-tAsvV6yL1O .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-tAsvV6yL1O .mbr-section-title,
.cid-tAsvV6yL1O .mbr-social-likes {
  text-align: right;
}
.cid-tAsvV7fXPj {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tAsvV7fXPj .content {
    text-align: center;
  }
  .cid-tAsvV7fXPj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tAsvV7fXPj .img-logo img {
  height: 6rem;
}
.cid-tAsvV7fXPj .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tAsvV7fXPj .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-tAsvV7fXPj .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tAsvV7fXPj .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tAsvV7fXPj .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tAsvV7fXPj .social-list a:hover {
  opacity: 1;
}
.cid-tAsvV7fXPj .list {
  list-style-type: none;
  padding: 0;
}
.cid-tAsvV7fXPj .list li {
  padding-bottom: .5rem;
}
.cid-tAsvV7fXPj .list li:last-child {
  padding-bottom: 0;
}
.cid-tAsvV7fXPj .mbr-footer-list,
.cid-tAsvV7fXPj .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tAsvV7fXPj .mbr-footer-list,
  .cid-tAsvV7fXPj .form-text,
  .cid-tAsvV7fXPj .footer-title,
  .cid-tAsvV7fXPj .footer-main-title,
  .cid-tAsvV7fXPj .form-text,
  .cid-tAsvV7fXPj .list {
    text-align: center !important;
  }
  .cid-tAsvV7fXPj .mbr-form,
  .cid-tAsvV7fXPj .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tAsvV7fXPj .footer-main-title {
  color: #ffcc29;
}
.cid-tAsvV7fXPj .footer-title {
  color: #ffcc29;
}
.cid-tAsvV8eCkk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-sNNJhKXlLi .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-sNNJhKXlLi .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-sNNJhKXlLi a {
  font-style: normal;
}
.cid-sNNJhKXlLi .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-sNNJhKXlLi .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-sNNJhKXlLi .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-sNNJhKXlLi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sNNJhKXlLi .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNNJhKXlLi .nav-item:focus,
.cid-sNNJhKXlLi .nav-link:focus {
  outline: none;
}
.cid-sNNJhKXlLi .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNNJhKXlLi .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sNNJhKXlLi .menu-logo {
  margin-right: auto;
}
.cid-sNNJhKXlLi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sNNJhKXlLi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sNNJhKXlLi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-sNNJhKXlLi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sNNJhKXlLi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sNNJhKXlLi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sNNJhKXlLi .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sNNJhKXlLi .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sNNJhKXlLi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sNNJhKXlLi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNNJhKXlLi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sNNJhKXlLi .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sNNJhKXlLi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sNNJhKXlLi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNNJhKXlLi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sNNJhKXlLi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNNJhKXlLi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sNNJhKXlLi .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sNNJhKXlLi .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sNNJhKXlLi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sNNJhKXlLi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sNNJhKXlLi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sNNJhKXlLi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sNNJhKXlLi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sNNJhKXlLi button.navbar-toggler:focus {
  outline: none;
}
.cid-sNNJhKXlLi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-sNNJhKXlLi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sNNJhKXlLi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sNNJhKXlLi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sNNJhKXlLi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sNNJhKXlLi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNNJhKXlLi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sNNJhKXlLi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sNNJhKXlLi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNNJhKXlLi .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sNNJhKXlLi .collapsed .btn {
  display: -webkit-flex;
}
.cid-sNNJhKXlLi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sNNJhKXlLi .collapsed .navbar-collapse.collapsing,
.cid-sNNJhKXlLi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sNNJhKXlLi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sNNJhKXlLi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sNNJhKXlLi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sNNJhKXlLi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sNNJhKXlLi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sNNJhKXlLi .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sNNJhKXlLi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sNNJhKXlLi .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sNNJhKXlLi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sNNJhKXlLi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sNNJhKXlLi .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-sNNJhKXlLi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sNNJhKXlLi .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sNNJhKXlLi .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sNNJhKXlLi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sNNJhKXlLi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sNNJhKXlLi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sNNJhKXlLi .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sNNJhKXlLi.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNNJhKXlLi img {
    height: 3.8rem !important;
  }
  .cid-sNNJhKXlLi .icon-wrap {
    margin-top: 1rem;
  }
  .cid-sNNJhKXlLi .menu-wrap {
    flex-direction: column;
  }
  .cid-sNNJhKXlLi .btn {
    display: -webkit-flex;
  }
  .cid-sNNJhKXlLi button.navbar-toggler {
    display: block;
  }
  .cid-sNNJhKXlLi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-sNNJhKXlLi .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNNJhKXlLi .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sNNJhKXlLi .navbar-collapse.collapsing,
  .cid-sNNJhKXlLi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sNNJhKXlLi .navbar-collapse.collapsing .navbar-nav,
  .cid-sNNJhKXlLi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sNNJhKXlLi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sNNJhKXlLi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sNNJhKXlLi .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sNNJhKXlLi .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNNJhKXlLi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sNNJhKXlLi .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sNNJhKXlLi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sNNJhKXlLi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNNJhKXlLi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sNNJhKXlLi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sNNJhKXlLi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sNNJhKXlLi .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sNNJhKXlLi .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-sNNJhKXlLi .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-sNNJhKXlLi .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-sNNJhKXlLi .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sNNJhKXlLi .nav-link:hover,
.cid-sNNJhKXlLi .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-sNNJhJXsd7 {
  background-image: url("../../../assets/images/img-6702.jpg-2000x2667.jpg");
}
.cid-sNNJhJXsd7 .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-sNNJhJXsd7 .mbr-text,
.cid-sNNJhJXsd7 .mbr-section-btn {
  text-align: left;
}
.cid-sQfw3FuDkH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffcc29;
}
.cid-sPTKASQjEB {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sPTKDyS24V {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQftfcUbaH {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-talvzFaK9i {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffcc29;
}
.cid-talvzFaK9i .mbr-fallback-image.disabled {
  display: none;
}
.cid-talvzFaK9i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-talvzFaK9i .mbr-section-title {
  color: #000000;
}
.cid-sQftvCRQO2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQftvCRQO2 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sQftvCRQO2 .icon-box {
  background: #000000;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sQftvCRQO2 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQftvCRQO2 .card {
    margin-bottom: 2rem;
  }
  .cid-sQftvCRQO2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sQfC46ZfPY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQfC46ZfPY .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sQfC46ZfPY .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-sQfC46ZfPY .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-sQfC46ZfPY .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-talZf1gkmq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-talZf1gkmq .google-map {
  height: 25rem;
  position: relative;
}
.cid-talZf1gkmq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-talZf1gkmq .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-talZf1gkmq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-talZf1gkmq .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-talZf1gkmq .container-fluid {
  padding: 0;
}
.cid-talZf1gkmq .relative {
  position: relative;
  width: 100%;
}
.cid-talZf1gkmq .mbr-section-title {
  color: #656565;
}
.cid-talZf1gkmq .block {
  background: rgba(50, 50, 50, 0.8);
  position: absolute;
  padding: 2rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  width: 400px;
  height: 100%;
  top: 0;
  right: 0;
}
.cid-talZf1gkmq .line {
  height: 3px;
  width: 60px;
  background: #ffffff;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.cid-talZf1gkmq .title {
  text-align: center;
  color: #ffffff;
}
.cid-talZf1gkmq .text {
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .cid-talZf1gkmq .block {
    position: relative;
    width: 100%;
    height: auto;
    padding: 6rem 2rem;
  }
}
.cid-tJfqt8z6Kj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tJfqt8z6Kj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJfqt8z6Kj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJfqt8z6Kj .content-container {
  display: flex;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
@media (max-width: 575px) {
  .cid-tJfqt8z6Kj .content-container {
    flex-direction: column;
  }
}
.cid-tJfqt8z6Kj .icons-menu {
  display: flex;
}
.cid-tJfqt8z6Kj .mbr-section-title {
  color: #45494E;
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tJfqt8z6Kj .mbr-section-title {
    text-align: center !important;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px !important;
  }
}
.cid-tJfqt8z6Kj .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 10px;
  min-width: 40px;
  aspect-ratio: 1;
  border: 1px solid #45494e;
  transition: .3s all;
}
.cid-tJfqt8z6Kj .iconfont-wrapper:not(:first-child) {
  margin-left: 10px;
}
.cid-tJfqt8z6Kj .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #45494e;
  transition: .3s all;
}
.cid-tJfqt8z6Kj .iconfont-wrapper:hover {
  background-color: #45494e;
}
.cid-tJfqt8z6Kj .iconfont-wrapper:hover .mbr-iconfont {
  font-size: 20px;
  color: #FFFFFF;
}
.cid-talw37ZMSW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-talw37ZMSW .mbr-fallback-image.disabled {
  display: none;
}
.cid-talw37ZMSW .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-talw37ZMSW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-talw37ZMSW .row {
  flex-direction: row-reverse;
}
.cid-talw37ZMSW img {
  width: 100%;
}
.cid-sNNJhKAbwj {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sNNJhKAbwj .content {
    text-align: center;
  }
  .cid-sNNJhKAbwj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sNNJhKAbwj .img-logo img {
  height: 6rem;
}
.cid-sNNJhKAbwj .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNNJhKAbwj .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-sNNJhKAbwj .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sNNJhKAbwj .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-sNNJhKAbwj .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sNNJhKAbwj .social-list a:hover {
  opacity: 1;
}
.cid-sNNJhKAbwj .list {
  list-style-type: none;
  padding: 0;
}
.cid-sNNJhKAbwj .list li {
  padding-bottom: .5rem;
}
.cid-sNNJhKAbwj .list li:last-child {
  padding-bottom: 0;
}
.cid-sNNJhKAbwj .mbr-footer-list,
.cid-sNNJhKAbwj .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sNNJhKAbwj .mbr-footer-list,
  .cid-sNNJhKAbwj .form-text,
  .cid-sNNJhKAbwj .footer-title,
  .cid-sNNJhKAbwj .footer-main-title,
  .cid-sNNJhKAbwj .form-text,
  .cid-sNNJhKAbwj .list {
    text-align: center !important;
  }
  .cid-sNNJhKAbwj .mbr-form,
  .cid-sNNJhKAbwj .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-sNNJhKAbwj .footer-main-title {
  color: #ffcc29;
}
.cid-sNNJhKAbwj .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-szQmpf4yEe .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-szQmpf4yEe .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-szQmpf4yEe a {
  font-style: normal;
}
.cid-szQmpf4yEe .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-szQmpf4yEe .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-szQmpf4yEe .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-szQmpf4yEe .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szQmpf4yEe .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szQmpf4yEe .nav-item:focus,
.cid-szQmpf4yEe .nav-link:focus {
  outline: none;
}
.cid-szQmpf4yEe .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szQmpf4yEe .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szQmpf4yEe .menu-logo {
  margin-right: auto;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szQmpf4yEe .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szQmpf4yEe .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szQmpf4yEe .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szQmpf4yEe .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szQmpf4yEe .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szQmpf4yEe .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szQmpf4yEe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szQmpf4yEe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szQmpf4yEe .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szQmpf4yEe .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szQmpf4yEe .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-szQmpf4yEe .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szQmpf4yEe .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szQmpf4yEe .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szQmpf4yEe .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szQmpf4yEe .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szQmpf4yEe .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szQmpf4yEe button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szQmpf4yEe button.navbar-toggler:focus {
  outline: none;
}
.cid-szQmpf4yEe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-szQmpf4yEe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szQmpf4yEe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szQmpf4yEe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szQmpf4yEe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szQmpf4yEe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szQmpf4yEe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szQmpf4yEe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szQmpf4yEe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szQmpf4yEe .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szQmpf4yEe .collapsed .btn {
  display: -webkit-flex;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szQmpf4yEe .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szQmpf4yEe .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-szQmpf4yEe .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-szQmpf4yEe .collapsed button.navbar-toggler {
  display: block;
}
.cid-szQmpf4yEe .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szQmpf4yEe .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szQmpf4yEe .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szQmpf4yEe .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szQmpf4yEe .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szQmpf4yEe .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-szQmpf4yEe.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szQmpf4yEe img {
    height: 3.8rem !important;
  }
  .cid-szQmpf4yEe .icon-wrap {
    margin-top: 1rem;
  }
  .cid-szQmpf4yEe .menu-wrap {
    flex-direction: column;
  }
  .cid-szQmpf4yEe .btn {
    display: -webkit-flex;
  }
  .cid-szQmpf4yEe button.navbar-toggler {
    display: block;
  }
  .cid-szQmpf4yEe .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-szQmpf4yEe .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szQmpf4yEe .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing,
  .cid-szQmpf4yEe .navbar-collapse.show {
    display: block !important;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing .navbar-nav,
  .cid-szQmpf4yEe .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szQmpf4yEe .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-szQmpf4yEe .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing .navbar-buttons,
  .cid-szQmpf4yEe .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szQmpf4yEe .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szQmpf4yEe .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szQmpf4yEe .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szQmpf4yEe .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szQmpf4yEe .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szQmpf4yEe .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-szQmpf4yEe .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-szQmpf4yEe .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-szQmpf4yEe .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-szQmpf4yEe .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szQmpf4yEe .nav-link:hover,
.cid-szQmpf4yEe .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-szQlJTJ6tF {
  background-image: url("../../../assets/images/whatsapp-image-2022-09-05-at-07.45.49-1200x1600.webp");
}
.cid-szQlJTJ6tF .mbr-section-title {
  text-align: right;
  color: #ffcc29;
}
.cid-szQlJTJ6tF .mbr-text,
.cid-szQlJTJ6tF .mbr-section-btn {
  text-align: right;
}
.cid-szQnruk5yM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szQnruk5yM .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-szQnruk5yM .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-szQnruk5yM .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-szQnruk5yM .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-szQnruk5yM .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-szQnruk5yM .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-szQnruk5yM .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-szQnruk5yM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-szQBCIsYn8 {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-szQBCIsYn8 .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-szQBCIsYn8 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #1d2c35;
  margin-left: 1rem;
}
.cid-szQBCIsYn8 .panel-group {
  border: none;
}
.cid-szQBCIsYn8 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-szQBCIsYn8 .panel-body,
.cid-szQBCIsYn8 .card-header {
  padding: 1rem 0;
}
.cid-szQBCIsYn8 .panel-title-edit {
  color: #1d2c35;
}
.cid-szQBCIsYn8 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-szQBCIsYn8 H4 {
  text-align: left;
}
.cid-szRklcAxZC {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-szRklcAxZC .content {
    text-align: center;
  }
  .cid-szRklcAxZC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-szRklcAxZC .img-logo img {
  height: 6rem;
}
.cid-szRklcAxZC .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-szRklcAxZC .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-szRklcAxZC .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-szRklcAxZC .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-szRklcAxZC .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szRklcAxZC .social-list a:hover {
  opacity: 1;
}
.cid-szRklcAxZC .list {
  list-style-type: none;
  padding: 0;
}
.cid-szRklcAxZC .list li {
  padding-bottom: .5rem;
}
.cid-szRklcAxZC .list li:last-child {
  padding-bottom: 0;
}
.cid-szRklcAxZC .mbr-footer-list,
.cid-szRklcAxZC .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-szRklcAxZC .mbr-footer-list,
  .cid-szRklcAxZC .form-text,
  .cid-szRklcAxZC .footer-title,
  .cid-szRklcAxZC .footer-main-title,
  .cid-szRklcAxZC .form-text,
  .cid-szRklcAxZC .list {
    text-align: center !important;
  }
  .cid-szRklcAxZC .mbr-form,
  .cid-szRklcAxZC .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-szRklcAxZC .footer-main-title {
  color: #ffcc29;
}
.cid-szRklcAxZC .footer-title {
  color: #ffcc29;
}
.cid-szRklcAxZC .mbr-footer-list {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-t5x4Do3W7G .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-t5x4Do3W7G .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-t5x4Do3W7G a {
  font-style: normal;
}
.cid-t5x4Do3W7G .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-t5x4Do3W7G .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-t5x4Do3W7G .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-t5x4Do3W7G .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t5x4Do3W7G .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-t5x4Do3W7G .nav-item:focus,
.cid-t5x4Do3W7G .nav-link:focus {
  outline: none;
}
.cid-t5x4Do3W7G .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t5x4Do3W7G .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t5x4Do3W7G .menu-logo {
  margin-right: auto;
}
.cid-t5x4Do3W7G .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5x4Do3W7G .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t5x4Do3W7G .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-t5x4Do3W7G .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t5x4Do3W7G .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t5x4Do3W7G .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t5x4Do3W7G .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t5x4Do3W7G .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t5x4Do3W7G .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t5x4Do3W7G .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5x4Do3W7G .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t5x4Do3W7G .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t5x4Do3W7G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t5x4Do3W7G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5x4Do3W7G .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t5x4Do3W7G .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5x4Do3W7G .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t5x4Do3W7G .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t5x4Do3W7G .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t5x4Do3W7G .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t5x4Do3W7G .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t5x4Do3W7G .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t5x4Do3W7G .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t5x4Do3W7G button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t5x4Do3W7G button.navbar-toggler:focus {
  outline: none;
}
.cid-t5x4Do3W7G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-t5x4Do3W7G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t5x4Do3W7G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t5x4Do3W7G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t5x4Do3W7G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t5x4Do3W7G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5x4Do3W7G nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t5x4Do3W7G nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t5x4Do3W7G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5x4Do3W7G .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t5x4Do3W7G .collapsed .btn {
  display: -webkit-flex;
}
.cid-t5x4Do3W7G .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t5x4Do3W7G .collapsed .navbar-collapse.collapsing,
.cid-t5x4Do3W7G .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t5x4Do3W7G .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t5x4Do3W7G .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t5x4Do3W7G .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t5x4Do3W7G .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t5x4Do3W7G .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t5x4Do3W7G .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t5x4Do3W7G .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t5x4Do3W7G .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t5x4Do3W7G .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t5x4Do3W7G .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t5x4Do3W7G .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-t5x4Do3W7G .collapsed button.navbar-toggler {
  display: block;
}
.cid-t5x4Do3W7G .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t5x4Do3W7G .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t5x4Do3W7G .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t5x4Do3W7G .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t5x4Do3W7G .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t5x4Do3W7G .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t5x4Do3W7G.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t5x4Do3W7G img {
    height: 3.8rem !important;
  }
  .cid-t5x4Do3W7G .icon-wrap {
    margin-top: 1rem;
  }
  .cid-t5x4Do3W7G .menu-wrap {
    flex-direction: column;
  }
  .cid-t5x4Do3W7G .btn {
    display: -webkit-flex;
  }
  .cid-t5x4Do3W7G button.navbar-toggler {
    display: block;
  }
  .cid-t5x4Do3W7G .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-t5x4Do3W7G .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t5x4Do3W7G .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t5x4Do3W7G .navbar-collapse.collapsing,
  .cid-t5x4Do3W7G .navbar-collapse.show {
    display: block !important;
  }
  .cid-t5x4Do3W7G .navbar-collapse.collapsing .navbar-nav,
  .cid-t5x4Do3W7G .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t5x4Do3W7G .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t5x4Do3W7G .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t5x4Do3W7G .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t5x4Do3W7G .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t5x4Do3W7G .navbar-collapse.collapsing .navbar-buttons,
  .cid-t5x4Do3W7G .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t5x4Do3W7G .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t5x4Do3W7G .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t5x4Do3W7G .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t5x4Do3W7G .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t5x4Do3W7G .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t5x4Do3W7G .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t5x4Do3W7G .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-t5x4Do3W7G .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-t5x4Do3W7G .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-t5x4Do3W7G .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t5x4Do3W7G .nav-link:hover,
.cid-t5x4Do3W7G .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-t5x4Df1ttD {
  background-image: url("../../../assets/images/whatsapp-image-2021-11-13-at-15.08.56-1200x1600.webp");
}
.cid-t5x4Df1ttD .mbr-section-title {
  text-align: right;
  color: #ffcc29;
}
.cid-t5x4Df1ttD .mbr-text,
.cid-t5x4Df1ttD .mbr-section-btn {
  text-align: right;
}
.cid-t5x4Dg057W {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5x4DgjrVb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5x4DgUZf9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5xau1amSa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5xj4IYOpW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5CDgFdUWG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5CFBLCzyE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5CGXM2JKc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5CIMDBhfF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5CJXTzMvi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5CLjIJSd9 {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t5CMYjIolm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t5CMYjIolm [class^="socicon-"]:before,
.cid-t5CMYjIolm [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-t5CMYjIolm .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffcc29;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffcc29;
}
.cid-t5CMYjIolm .btn-social:hover {
  background: #ffcc29;
}
.cid-t5CMYjIolm .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-t5CMYjIolm .mbr-section-title,
.cid-t5CMYjIolm .mbr-social-likes {
  text-align: right;
}
.cid-t5CMorQ8n7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5x4DnpI8e {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-t5x4DnpI8e .content {
    text-align: center;
  }
  .cid-t5x4DnpI8e .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t5x4DnpI8e .img-logo img {
  height: 6rem;
}
.cid-t5x4DnpI8e .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t5x4DnpI8e .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-t5x4DnpI8e .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-t5x4DnpI8e .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-t5x4DnpI8e .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5x4DnpI8e .social-list a:hover {
  opacity: 1;
}
.cid-t5x4DnpI8e .list {
  list-style-type: none;
  padding: 0;
}
.cid-t5x4DnpI8e .list li {
  padding-bottom: .5rem;
}
.cid-t5x4DnpI8e .list li:last-child {
  padding-bottom: 0;
}
.cid-t5x4DnpI8e .mbr-footer-list,
.cid-t5x4DnpI8e .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-t5x4DnpI8e .mbr-footer-list,
  .cid-t5x4DnpI8e .form-text,
  .cid-t5x4DnpI8e .footer-title,
  .cid-t5x4DnpI8e .footer-main-title,
  .cid-t5x4DnpI8e .form-text,
  .cid-t5x4DnpI8e .list {
    text-align: center !important;
  }
  .cid-t5x4DnpI8e .mbr-form,
  .cid-t5x4DnpI8e .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-t5x4DnpI8e .footer-main-title {
  color: #ffcc29;
}
.cid-t5x4DnpI8e .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-szQTu7VCZc .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-szQTu7VCZc .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-szQTu7VCZc a {
  font-style: normal;
}
.cid-szQTu7VCZc .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-szQTu7VCZc .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-szQTu7VCZc .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-szQTu7VCZc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szQTu7VCZc .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szQTu7VCZc .nav-item:focus,
.cid-szQTu7VCZc .nav-link:focus {
  outline: none;
}
.cid-szQTu7VCZc .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szQTu7VCZc .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szQTu7VCZc .menu-logo {
  margin-right: auto;
}
.cid-szQTu7VCZc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szQTu7VCZc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szQTu7VCZc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-szQTu7VCZc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szQTu7VCZc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szQTu7VCZc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szQTu7VCZc .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szQTu7VCZc .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szQTu7VCZc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szQTu7VCZc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szQTu7VCZc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szQTu7VCZc .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szQTu7VCZc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szQTu7VCZc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szQTu7VCZc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szQTu7VCZc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szQTu7VCZc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-szQTu7VCZc .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szQTu7VCZc .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szQTu7VCZc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szQTu7VCZc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szQTu7VCZc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szQTu7VCZc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szQTu7VCZc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szQTu7VCZc button.navbar-toggler:focus {
  outline: none;
}
.cid-szQTu7VCZc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-szQTu7VCZc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szQTu7VCZc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szQTu7VCZc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szQTu7VCZc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szQTu7VCZc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szQTu7VCZc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szQTu7VCZc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szQTu7VCZc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szQTu7VCZc .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szQTu7VCZc .collapsed .btn {
  display: -webkit-flex;
}
.cid-szQTu7VCZc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szQTu7VCZc .collapsed .navbar-collapse.collapsing,
.cid-szQTu7VCZc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szQTu7VCZc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szQTu7VCZc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szQTu7VCZc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szQTu7VCZc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szQTu7VCZc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-szQTu7VCZc .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-szQTu7VCZc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szQTu7VCZc .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szQTu7VCZc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szQTu7VCZc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-szQTu7VCZc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-szQTu7VCZc .collapsed button.navbar-toggler {
  display: block;
}
.cid-szQTu7VCZc .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szQTu7VCZc .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szQTu7VCZc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szQTu7VCZc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szQTu7VCZc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szQTu7VCZc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-szQTu7VCZc.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szQTu7VCZc img {
    height: 3.8rem !important;
  }
  .cid-szQTu7VCZc .icon-wrap {
    margin-top: 1rem;
  }
  .cid-szQTu7VCZc .menu-wrap {
    flex-direction: column;
  }
  .cid-szQTu7VCZc .btn {
    display: -webkit-flex;
  }
  .cid-szQTu7VCZc button.navbar-toggler {
    display: block;
  }
  .cid-szQTu7VCZc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-szQTu7VCZc .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szQTu7VCZc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szQTu7VCZc .navbar-collapse.collapsing,
  .cid-szQTu7VCZc .navbar-collapse.show {
    display: block !important;
  }
  .cid-szQTu7VCZc .navbar-collapse.collapsing .navbar-nav,
  .cid-szQTu7VCZc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szQTu7VCZc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szQTu7VCZc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szQTu7VCZc .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-szQTu7VCZc .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-szQTu7VCZc .navbar-collapse.collapsing .navbar-buttons,
  .cid-szQTu7VCZc .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szQTu7VCZc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szQTu7VCZc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szQTu7VCZc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szQTu7VCZc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szQTu7VCZc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szQTu7VCZc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-szQTu7VCZc .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-szQTu7VCZc .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-szQTu7VCZc .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-szQTu7VCZc .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szQTu7VCZc .nav-link:hover,
.cid-szQTu7VCZc .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-szQTu51mHq {
  background-image: url("../../../assets/images/gopr3573-2000x1500.webp");
}
.cid-szQTu51mHq .mbr-section-title {
  text-align: right;
  color: #ffcc29;
}
.cid-szQTu51mHq .mbr-text,
.cid-szQTu51mHq .mbr-section-btn {
  text-align: right;
}
.cid-szQWznclZa {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-szQW1ZEXfT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szQVGvGAXW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-szQVGvGAXW .text-section-title {
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: left;
}
.cid-szQVGvGAXW .text-section-text {
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: right;
}
.cid-szQVGvGAXW h4 {
  display: flex;
  letter-spacing: 0.03em;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szQVGvGAXW .panel-text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-szQVGvGAXW .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-szQVGvGAXW .mbr-section-subtitle {
  letter-spacing: 0.03em;
}
.cid-szQVGvGAXW .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-szQVGvGAXW .panel-group {
  width: 100%;
}
.cid-szQVGvGAXW .content-block {
  -webkit-flex-basis: auto !important;
  flex-basis: auto !important;
}
.cid-szQVGvGAXW .card {
  border-bottom: 1px solid #ffcc29;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-szQVGvGAXW .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-szQVGvGAXW .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffcc29;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-szQVGvGAXW .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-szQVGvGAXW .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-szQVGvGAXW .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-szQVGvGAXW .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-szQVGvGAXW .card .panel-body {
  background: #ffcc29;
}
.cid-szQVGvGAXW .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-szQVGvGAXW .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-szQVGvGAXW .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-szQVGvGAXW .header-text,
.cid-szQVGvGAXW .sign {
  color: #232323;
}
.cid-szR0qxr4eC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szR0qxr4eC .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-szR0qxr4eC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szR0qxr4eC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szR0qxr4eC .text-wrapper {
    padding: 2rem;
  }
}
.cid-szR0ZmZMSU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szR0ZmZMSU .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-szR0ZmZMSU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szR0ZmZMSU .row {
  flex-direction: row-reverse;
}
.cid-szR0ZmZMSU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szR0ZmZMSU .text-wrapper {
    padding: 2rem;
  }
}
.cid-szRkoVsp1X {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-szRkoVsp1X .content {
    text-align: center;
  }
  .cid-szRkoVsp1X .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-szRkoVsp1X .img-logo img {
  height: 6rem;
}
.cid-szRkoVsp1X .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-szRkoVsp1X .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-szRkoVsp1X .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-szRkoVsp1X .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-szRkoVsp1X .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szRkoVsp1X .social-list a:hover {
  opacity: 1;
}
.cid-szRkoVsp1X .list {
  list-style-type: none;
  padding: 0;
}
.cid-szRkoVsp1X .list li {
  padding-bottom: .5rem;
}
.cid-szRkoVsp1X .list li:last-child {
  padding-bottom: 0;
}
.cid-szRkoVsp1X .mbr-footer-list,
.cid-szRkoVsp1X .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-szRkoVsp1X .mbr-footer-list,
  .cid-szRkoVsp1X .form-text,
  .cid-szRkoVsp1X .footer-title,
  .cid-szRkoVsp1X .footer-main-title,
  .cid-szRkoVsp1X .form-text,
  .cid-szRkoVsp1X .list {
    text-align: center !important;
  }
  .cid-szRkoVsp1X .mbr-form,
  .cid-szRkoVsp1X .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-szRkoVsp1X .footer-main-title {
  color: #ffcc29;
}
.cid-szRkoVsp1X .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-szRsoP3EYo .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-szRsoP3EYo .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-szRsoP3EYo a {
  font-style: normal;
}
.cid-szRsoP3EYo .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-szRsoP3EYo .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-szRsoP3EYo .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-szRsoP3EYo .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szRsoP3EYo .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szRsoP3EYo .nav-item:focus,
.cid-szRsoP3EYo .nav-link:focus {
  outline: none;
}
.cid-szRsoP3EYo .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szRsoP3EYo .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szRsoP3EYo .menu-logo {
  margin-right: auto;
}
.cid-szRsoP3EYo .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szRsoP3EYo .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szRsoP3EYo .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-szRsoP3EYo .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szRsoP3EYo .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szRsoP3EYo .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szRsoP3EYo .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szRsoP3EYo .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szRsoP3EYo .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szRsoP3EYo .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szRsoP3EYo .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szRsoP3EYo .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szRsoP3EYo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szRsoP3EYo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szRsoP3EYo .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szRsoP3EYo .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szRsoP3EYo .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-szRsoP3EYo .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szRsoP3EYo .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szRsoP3EYo .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szRsoP3EYo .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szRsoP3EYo .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szRsoP3EYo .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szRsoP3EYo button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szRsoP3EYo button.navbar-toggler:focus {
  outline: none;
}
.cid-szRsoP3EYo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffcc29;
}
.cid-szRsoP3EYo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szRsoP3EYo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szRsoP3EYo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szRsoP3EYo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szRsoP3EYo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szRsoP3EYo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szRsoP3EYo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szRsoP3EYo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szRsoP3EYo .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szRsoP3EYo .collapsed .btn {
  display: -webkit-flex;
}
.cid-szRsoP3EYo .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szRsoP3EYo .collapsed .navbar-collapse.collapsing,
.cid-szRsoP3EYo .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szRsoP3EYo .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szRsoP3EYo .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szRsoP3EYo .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szRsoP3EYo .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szRsoP3EYo .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-szRsoP3EYo .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-szRsoP3EYo .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szRsoP3EYo .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szRsoP3EYo .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szRsoP3EYo .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-szRsoP3EYo .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-szRsoP3EYo .collapsed button.navbar-toggler {
  display: block;
}
.cid-szRsoP3EYo .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szRsoP3EYo .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szRsoP3EYo .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szRsoP3EYo .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szRsoP3EYo .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szRsoP3EYo .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-szRsoP3EYo.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szRsoP3EYo img {
    height: 3.8rem !important;
  }
  .cid-szRsoP3EYo .icon-wrap {
    margin-top: 1rem;
  }
  .cid-szRsoP3EYo .menu-wrap {
    flex-direction: column;
  }
  .cid-szRsoP3EYo .btn {
    display: -webkit-flex;
  }
  .cid-szRsoP3EYo button.navbar-toggler {
    display: block;
  }
  .cid-szRsoP3EYo .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-szRsoP3EYo .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szRsoP3EYo .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szRsoP3EYo .navbar-collapse.collapsing,
  .cid-szRsoP3EYo .navbar-collapse.show {
    display: block !important;
  }
  .cid-szRsoP3EYo .navbar-collapse.collapsing .navbar-nav,
  .cid-szRsoP3EYo .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szRsoP3EYo .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szRsoP3EYo .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szRsoP3EYo .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-szRsoP3EYo .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-szRsoP3EYo .navbar-collapse.collapsing .navbar-buttons,
  .cid-szRsoP3EYo .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szRsoP3EYo .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szRsoP3EYo .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szRsoP3EYo .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szRsoP3EYo .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szRsoP3EYo .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szRsoP3EYo .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-szRsoP3EYo .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-szRsoP3EYo .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-szRsoP3EYo .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-szRsoP3EYo .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szRsoP3EYo .nav-link:hover,
.cid-szRsoP3EYo .dropdown-item:hover {
  color: #ffcc29 !important;
}
.cid-szRsoLVX6X {
  background-image: url("../../../assets/images/gopr2465-1920x1080.webp");
}
.cid-szRsoLVX6X .mbr-section-title {
  text-align: left;
  color: #ffcc29;
}
.cid-szRsoLVX6X .mbr-text,
.cid-szRsoLVX6X .mbr-section-btn {
  text-align: left;
}
.cid-szRvRhE93G {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szRvRhE93G img,
.cid-szRvRhE93G .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-szRvRhE93G .item:focus,
.cid-szRvRhE93G span:focus {
  outline: none;
}
.cid-szRvRhE93G .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-szRvRhE93G .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-szRvRhE93G .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-szRvRhE93G .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-szRvRhE93G .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-szRvRhE93G .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-szRvRhE93G .mbr-section-btn {
  margin-top: auto !important;
}
.cid-szRvRhE93G .mbr-section-title {
  color: #232323;
}
.cid-szRvRhE93G .mbr-text,
.cid-szRvRhE93G .mbr-section-btn {
  text-align: left;
}
.cid-szRvRhE93G .item-title {
  text-align: left;
}
.cid-szRvRhE93G .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-szRsoOk5WJ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-szRsoOk5WJ .content {
    text-align: center;
  }
  .cid-szRsoOk5WJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-szRsoOk5WJ .img-logo img {
  height: 6rem;
}
.cid-szRsoOk5WJ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-szRsoOk5WJ .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-szRsoOk5WJ .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-szRsoOk5WJ .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-szRsoOk5WJ .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szRsoOk5WJ .social-list a:hover {
  opacity: 1;
}
.cid-szRsoOk5WJ .list {
  list-style-type: none;
  padding: 0;
}
.cid-szRsoOk5WJ .list li {
  padding-bottom: .5rem;
}
.cid-szRsoOk5WJ .list li:last-child {
  padding-bottom: 0;
}
.cid-szRsoOk5WJ .mbr-footer-list,
.cid-szRsoOk5WJ .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-szRsoOk5WJ .mbr-footer-list,
  .cid-szRsoOk5WJ .form-text,
  .cid-szRsoOk5WJ .footer-title,
  .cid-szRsoOk5WJ .footer-main-title,
  .cid-szRsoOk5WJ .form-text,
  .cid-szRsoOk5WJ .list {
    text-align: center !important;
  }
  .cid-szRsoOk5WJ .mbr-form,
  .cid-szRsoOk5WJ .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-szRsoOk5WJ .footer-main-title {
  color: #ffcc29;
}
.cid-szRsoOk5WJ .footer-title {
  color: #ffcc29;
}
.cid-t6injbu0Ap {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
