@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #0c2340 !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #c99700 !important;
  border-color: #c99700 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #7d5e00 !important;
  border-color: #7d5e00 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #7d5e00 !important;
  border-color: #7d5e00 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #0c2340 !important;
  border-color: #0c2340 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #634a00;
  color: #634a00 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #c99700;
  border-color: #c99700;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c99700 !important;
  border-color: #c99700 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #0c2340;
  border-color: #0c2340;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0c2340 !important;
  border-color: #0c2340 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #c99700 !important;
}
.text-success {
  color: #0c2340 !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #634a00 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #0c2340;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #5391df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
}
blockquote {
  border-color: #ffffff;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #c99700 !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%;
}
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='%23ffffff' %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;
}
.cid-rLA9cDA7H4 {
  padding-top: 180px;
  background-image: url("../../../assets/images/logo-copy-1368x987.png");
}
.cid-rLA9cDA7H4 .container {
  margin-bottom: 15%;
}
.cid-rLA9cDA7H4 .content-container .btn-bgr {
  z-index: 0;
}
.cid-rLA9cDA7H4 .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #d3ccc3;
}
.cid-rLA9cDA7H4 .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-rLA9cDA7H4 .box-item:first-child {
  background-color: #c99700;
  margin-top: -200px;
}
.cid-rLA9cDA7H4 .box-item:nth-child(2) {
  background-color: #0c2340;
}
.cid-rLA9cDA7H4 .box-item:last-child {
  background-color: #c99700;
}
.cid-rLA9cDA7H4 .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rLA9cDA7H4 .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-rLA9cDA7H4 .box-list li:last-child {
  border-bottom: none;
}
.cid-rLA9cDA7H4 .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-rLA9cDA7H4 .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-rLA9cDA7H4 .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-rLA9cDA7H4 .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-rLA9cDA7H4 .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-rLA9cDA7H4 .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-rLA9cDA7H4 .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-rLA9cDA7H4 .mbr-text,
.cid-rLA9cDA7H4 .mbr-section-btn {
  color: #232323;
}
.cid-rLA9cDA7H4 H1 {
  color: #232323;
}
.cid-rLA9cDA7H4 UL {
  text-align: left;
}
.cid-rLA9cDA7H4 .box-item-text {
  text-align: center;
}
.cid-rLA9cDA7H4 .icon-block-top,
.cid-rLA9cDA7H4 .box-item-title {
  text-align: center;
}
.cid-soEyJEb7bs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d3ccc3;
}
.cid-soEyJEb7bs .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-soEyJEb7bs .row-element,
.cid-soEyJEb7bs .image-element {
  padding: 0;
}
.cid-soEyJEb7bs .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-soEyJEb7bs .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-soEyJEb7bs .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-soEyJEb7bs .text-content {
    padding: 2rem 1rem;
  }
  .cid-soEyJEb7bs .mbr-title,
  .cid-soEyJEb7bs .underline,
  .cid-soEyJEb7bs .mbr-text,
  .cid-soEyJEb7bs .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-soEyJEb7bs .mbr-title {
  color: #0c2340;
}
.cid-soEyJEb7bs .mbr-text,
.cid-soEyJEb7bs .mbr-section-btn {
  color: #0c2340;
}
.cid-soEvOeQ6B8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d3ccc3;
}
.cid-soEvOeQ6B8 .card-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .cid-soEvOeQ6B8 .card-wrapper {
    padding: 5rem;
  }
}
@media (max-width: 991px) {
  .cid-soEvOeQ6B8 .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-soEvOeQ6B8 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-soEvOeQ6B8 .row {
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .cid-soEvOeQ6B8 .row .row {
    flex-direction: column-reverse;
  }
  .cid-soEvOeQ6B8 .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-soEvOeQ6B8 span {
  color: #fafafa;
}
.cid-soEvOeQ6B8 .card {
  padding: 0;
}
.cid-soEvOeQ6B8 .card1 {
  background: #0c2340;
  position: relative;
  overflow: visible;
}
.cid-soEvOeQ6B8 .card1:before {
  position: absolute;
  left: 100%;
  top: 0;
  background: #0c2340;
  width: 0%;
  height: 100%;
  transition: all 0.3s;
  transition-delay: 0.3s;
  content: '';
  z-index: 5;
}
.cid-soEvOeQ6B8 .card1:hover:before {
  width: 100%;
  transition-delay: 0s;
}
.cid-soEvOeQ6B8 .card1:hover span {
  opacity: 1;
  transition-delay: 0.3s;
  visibility: visible;
}
.cid-soEvOeQ6B8 .card1 span {
  position: absolute;
  top: 50%;
  right: -50%;
  z-index: 6;
  transition: all 0.3s;
  font-size: 8rem;
  transform: translate(50%, -50%);
  opacity: 0;
  visibility: hidden;
}
.cid-soEvOeQ6B8 .card2 {
  background: #c99700;
  position: relative;
  overflow: visible;
}
.cid-soEvOeQ6B8 .card2:before {
  position: absolute;
  right: 100%;
  top: 0;
  background: #c99700;
  width: 0%;
  height: 100%;
  transition: all 0.3s;
  transition-delay: 0.3s;
  content: '';
  z-index: 5;
}
.cid-soEvOeQ6B8 .card2:hover:before {
  width: 100%;
  transition-delay: 0s;
}
.cid-soEvOeQ6B8 .card2:hover span {
  opacity: 1;
  transition-delay: 0.3s;
  visibility: visible;
}
.cid-soEvOeQ6B8 .card2 span {
  position: absolute;
  top: 50%;
  left: -50%;
  z-index: 6;
  transition: all 0.3s;
  font-size: 8rem;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}
.cid-soEvOeQ6B8 .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-soEvOeQ6B8 .card-subtitle {
  color: #0095ff;
}
.cid-soEvOeQ6B8 .mbr-text {
  color: #555555;
}
.cid-soEvOeQ6B8 .card-title1 {
  color: #ffffff;
}
.cid-soEvOeQ6B8 .card-title2 {
  color: #ffffff;
}
.cid-soEvOeQ6B8 .mbr-text2 {
  color: #ffffff;
}
.cid-soEvOeQ6B8 .card-subtitle2 {
  color: #ffffff;
}
.cid-soEvOeQ6B8 .mbr-text1 {
  color: #ffffff;
}
.cid-soEvOeQ6B8 .card-subtitle1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-soEvOeQ6B8 .card1:before,
  .cid-soEvOeQ6B8 .card2:before {
    content: none;
  }
  .cid-soEvOeQ6B8 span {
    display: none;
  }
}
.cid-soEwHZHFAi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #040402;
}
.cid-soEwHZHFAi .mbr-text1 {
  color: #999999;
}
.cid-soEwHZHFAi .mbr-text2 {
  color: #999999;
}
.cid-soEwHZHFAi p {
  margin: 0;
}
.cid-soEuurgRBb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-soEuurgRBb nav.navbar {
  position: fixed;
}
.cid-soEuurgRBb .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-soEuurgRBb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-soEuurgRBb .dropdown-item:hover,
.cid-soEuurgRBb .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-soEuurgRBb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-soEuurgRBb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-soEuurgRBb .nav-dropdown .link {
  margin: 0.667em 1em !important;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-soEuurgRBb .nav-link {
  position: relative;
  padding: 0!important;
}
.cid-soEuurgRBb .nav-link:before {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  bottom: 0px;
  left: 0;
  background: #c99700;
  opacity: 0;
  transition: all 0.3s;
}
.cid-soEuurgRBb .nav-link:hover:before {
  opacity: 1;
}
.cid-soEuurgRBb .container {
  display: flex;
  margin: auto;
}
.cid-soEuurgRBb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-soEuurgRBb .dropdown-menu,
.cid-soEuurgRBb .navbar.opened {
  background: #0c2340 !important;
}
.cid-soEuurgRBb .nav-item:focus,
.cid-soEuurgRBb .nav-link:focus {
  outline: none;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-soEuurgRBb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-soEuurgRBb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-soEuurgRBb .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #0c2340;
}
.cid-soEuurgRBb .navbar.opened {
  transition: all 0.3s;
}
.cid-soEuurgRBb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-soEuurgRBb .navbar .navbar-logo img {
  width: auto;
}
.cid-soEuurgRBb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soEuurgRBb .navbar.collapsed {
  justify-content: center;
}
.cid-soEuurgRBb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-soEuurgRBb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soEuurgRBb .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-soEuurgRBb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-soEuurgRBb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-soEuurgRBb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-soEuurgRBb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soEuurgRBb .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-soEuurgRBb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-soEuurgRBb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-soEuurgRBb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-soEuurgRBb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-soEuurgRBb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-soEuurgRBb .navbar.navbar-short {
  min-height: 60px;
}
.cid-soEuurgRBb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-soEuurgRBb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-soEuurgRBb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-soEuurgRBb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soEuurgRBb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soEuurgRBb .dropdown-item.active,
.cid-soEuurgRBb .dropdown-item:active {
  background-color: transparent;
}
.cid-soEuurgRBb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soEuurgRBb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c2340;
}
.cid-soEuurgRBb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-soEuurgRBb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soEuurgRBb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-soEuurgRBb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-soEuurgRBb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soEuurgRBb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-soEuurgRBb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-soEuurgRBb .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-soEuurgRBb .navbar {
    height: 70px;
  }
  .cid-soEuurgRBb .navbar.opened {
    height: auto;
  }
  .cid-soEuurgRBb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLAxLICgPx {
  padding-top: 180px;
  background-image: url("../../../assets/images/logo-copy-1368x987.png");
}
.cid-rLAxLICgPx .container {
  margin-bottom: 15%;
}
.cid-rLAxLICgPx .content-container .btn-bgr {
  z-index: 0;
}
.cid-rLAxLICgPx .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #d3ccc3;
}
.cid-rLAxLICgPx .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-rLAxLICgPx .box-item:first-child {
  background-color: #c99700;
  margin-top: -200px;
}
.cid-rLAxLICgPx .box-item:nth-child(2) {
  background-color: #0c2340;
}
.cid-rLAxLICgPx .box-item:last-child {
  background-color: #c99700;
}
.cid-rLAxLICgPx .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rLAxLICgPx .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-rLAxLICgPx .box-list li:last-child {
  border-bottom: none;
}
.cid-rLAxLICgPx .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-rLAxLICgPx .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-rLAxLICgPx .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-rLAxLICgPx .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-rLAxLICgPx .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-rLAxLICgPx .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-rLAxLICgPx .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-rLAxLICgPx .mbr-text,
.cid-rLAxLICgPx .mbr-section-btn {
  color: #232323;
}
.cid-rLAxLICgPx H1 {
  color: #232323;
}
.cid-rLAxLICgPx .box-item-text {
  text-align: center;
}
.cid-rLAxLICgPx UL {
  text-align: center;
}
.cid-rLAxLICgPx .icon-block-top,
.cid-rLAxLICgPx .box-item-title {
  text-align: center;
}
.cid-soIw6r8aVD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d3ccc3;
}
.cid-soIw6r8aVD .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-soIw6r8aVD .row-element,
.cid-soIw6r8aVD .image-element {
  padding: 0;
}
.cid-soIw6r8aVD .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-soIw6r8aVD .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-soIw6r8aVD .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-soIw6r8aVD .text-content {
    padding: 2rem 1rem;
  }
  .cid-soIw6r8aVD .mbr-title,
  .cid-soIw6r8aVD .underline,
  .cid-soIw6r8aVD .mbr-text,
  .cid-soIw6r8aVD .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-soIw6r8aVD .mbr-title {
  color: #0c2340;
}
.cid-soIw6r8aVD .mbr-text,
.cid-soIw6r8aVD .mbr-section-btn {
  color: #0c2340;
}
.cid-rLAxCcIXTe {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #d3ccc3;
}
.cid-rLAxCcIXTe .list-group-item {
  padding: .75rem 4rem;
  background-color: transparent;
}
.cid-rLAxCcIXTe .plan {
  word-break: break-word;
  position: relative;
  z-index: 1;
  max-width: 400px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-rLAxCcIXTe .plan:after {
  content: '';
  position: absolute;
  transition: all 0.3s;
  border-radius: 100%;
  z-index: -1;
  bottom: 1rem;
  left: 50%;
  right: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 40px;
  box-shadow: 0 35px 30px 0 rgba(0, 0, 0, 0.35);
}
.cid-rLAxCcIXTe .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-rLAxCcIXTe .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-rLAxCcIXTe .plan .list-group-item:last-child::after {
  display: none;
}
.cid-rLAxCcIXTe .plan:hover:after {
  opacity: 1;
}
.cid-rLAxCcIXTe .card1 {
  background: #c99700;
}
.cid-rLAxCcIXTe .card2 {
  background: #00843d;
}
.cid-rLAxCcIXTe .card3 {
  background: #c99700;
}
.cid-rLAxCcIXTe .card4 {
  background: #eaf4f8;
}
.cid-rLAxCcIXTe .card1,
.cid-rLAxCcIXTe .card2,
.cid-rLAxCcIXTe .card3,
.cid-rLAxCcIXTe .card4 {
  height: calc(98%);
  margin: 1rem;
}
.cid-rLAxCcIXTe .plan-header {
  padding-top: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rLAxCcIXTe .plan-body {
  padding-bottom: 5rem;
}
.cid-rLAxCcIXTe .price-figure {
  font-weight: 700;
  color: #3d626c;
}
.cid-rLAxCcIXTe .price-value {
  font-weight: 700;
  vertical-align: top;
  color: #3d626c;
}
@media (max-width: 767px) {
  .cid-rLAxCcIXTe .price-figure {
    font-size: 4.25rem;
  }
  .cid-rLAxCcIXTe .list-group-item {
    padding: .75rem 2rem;
  }
}
.cid-rLAxCcIXTe .plan-title,
.cid-rLAxCcIXTe .plan-text {
  color: #3d626c;
}
.cid-rLAxCcIXTe UL {
  color: #0c2340;
}
.cid-rLAxCcIXTe .plan-title {
  color: #0c2340;
}
.cid-rLAxCcIXTe .plan-price,
.cid-rLAxCcIXTe .price-figure {
  color: #0c2340;
  text-align: center;
}
.cid-rLAxCcIXTe .plan-text {
  color: #0c2340;
}
.cid-rLAxCcIXTe .plan-price,
.cid-rLAxCcIXTe .price-value {
  color: #0c2340;
}
.cid-soEuurgRBb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-soEuurgRBb nav.navbar {
  position: fixed;
}
.cid-soEuurgRBb .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-soEuurgRBb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-soEuurgRBb .dropdown-item:hover,
.cid-soEuurgRBb .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-soEuurgRBb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-soEuurgRBb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-soEuurgRBb .nav-dropdown .link {
  margin: 0.667em 1em !important;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-soEuurgRBb .nav-link {
  position: relative;
  padding: 0!important;
}
.cid-soEuurgRBb .nav-link:before {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  bottom: 0px;
  left: 0;
  background: #c99700;
  opacity: 0;
  transition: all 0.3s;
}
.cid-soEuurgRBb .nav-link:hover:before {
  opacity: 1;
}
.cid-soEuurgRBb .container {
  display: flex;
  margin: auto;
}
.cid-soEuurgRBb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-soEuurgRBb .dropdown-menu,
.cid-soEuurgRBb .navbar.opened {
  background: #0c2340 !important;
}
.cid-soEuurgRBb .nav-item:focus,
.cid-soEuurgRBb .nav-link:focus {
  outline: none;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-soEuurgRBb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-soEuurgRBb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-soEuurgRBb .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #0c2340;
}
.cid-soEuurgRBb .navbar.opened {
  transition: all 0.3s;
}
.cid-soEuurgRBb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-soEuurgRBb .navbar .navbar-logo img {
  width: auto;
}
.cid-soEuurgRBb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soEuurgRBb .navbar.collapsed {
  justify-content: center;
}
.cid-soEuurgRBb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-soEuurgRBb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soEuurgRBb .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-soEuurgRBb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-soEuurgRBb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-soEuurgRBb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-soEuurgRBb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soEuurgRBb .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-soEuurgRBb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-soEuurgRBb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-soEuurgRBb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-soEuurgRBb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-soEuurgRBb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-soEuurgRBb .navbar.navbar-short {
  min-height: 60px;
}
.cid-soEuurgRBb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-soEuurgRBb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-soEuurgRBb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-soEuurgRBb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soEuurgRBb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soEuurgRBb .dropdown-item.active,
.cid-soEuurgRBb .dropdown-item:active {
  background-color: transparent;
}
.cid-soEuurgRBb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soEuurgRBb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c2340;
}
.cid-soEuurgRBb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-soEuurgRBb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soEuurgRBb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-soEuurgRBb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-soEuurgRBb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soEuurgRBb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-soEuurgRBb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-soEuurgRBb .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-soEuurgRBb .navbar {
    height: 70px;
  }
  .cid-soEuurgRBb .navbar.opened {
    height: auto;
  }
  .cid-soEuurgRBb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-soEwHZHFAi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #040402;
}
.cid-soEwHZHFAi .mbr-text1 {
  color: #999999;
}
.cid-soEwHZHFAi .mbr-text2 {
  color: #999999;
}
.cid-soEwHZHFAi p {
  margin: 0;
}
.cid-rLAtzhpv2r {
  padding-top: 180px;
  background-image: url("../../../assets/images/logo-copy-1368x987.png");
}
.cid-rLAtzhpv2r .container {
  margin-bottom: 15%;
}
.cid-rLAtzhpv2r .content-container .btn-bgr {
  z-index: 0;
}
.cid-rLAtzhpv2r .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #d3ccc3;
}
.cid-rLAtzhpv2r .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-rLAtzhpv2r .box-item:first-child {
  background-color: #c99700;
  margin-top: -200px;
}
.cid-rLAtzhpv2r .box-item:nth-child(2) {
  background-color: #0c2340;
}
.cid-rLAtzhpv2r .box-item:last-child {
  background-color: #c99700;
}
.cid-rLAtzhpv2r .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rLAtzhpv2r .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-rLAtzhpv2r .box-list li:last-child {
  border-bottom: none;
}
.cid-rLAtzhpv2r .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-rLAtzhpv2r .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-rLAtzhpv2r .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-rLAtzhpv2r .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-rLAtzhpv2r .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-rLAtzhpv2r .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-rLAtzhpv2r .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-rLAtzhpv2r .mbr-text,
.cid-rLAtzhpv2r .mbr-section-btn {
  color: #232323;
}
.cid-rLAtzhpv2r H1 {
  color: #232323;
}
.cid-rLAtzhpv2r H5 {
  text-align: center;
}
.cid-rLAtzhpv2r UL {
  text-align: center;
}
.cid-rLAtzhpv2r .icon-block-top,
.cid-rLAtzhpv2r .box-item-title {
  text-align: center;
}
.cid-rLAtzhpv2r .box-item-text {
  text-align: center;
}
.cid-rLAuFvd6lq {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #d3ccc3;
}
.cid-rLAuFvd6lq .mbr-overlay {
  background: #efefef;
}
.cid-rLAuFvd6lq .wrap-img {
  padding-bottom: 1rem;
}
.cid-rLAuFvd6lq .wrap-img img {
  max-width: 100%;
}
.cid-rLAuFvd6lq .card-box p {
  color: #ffffff;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-rLAuFvd6lq .client-wrapper {
  opacity: 0.5;
}
.cid-rLAuFvd6lq .client-wrapper:hover {
  opacity: 1;
  transition: 0.5s all;
}
.cid-rLAuFvd6lq h2 {
  font-size: 2.6rem;
  padding-left: 12rem;
  position: relative;
  display: inline-block;
}
.cid-rLAuFvd6lq h2:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 46%;
  left: calc(20%);
  width: 46px;
  height: 2px;
}
.cid-rLAuFvd6lq .client-name {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rLAuFvd6lq .title {
    text-align: center;
  }
  .cid-rLAuFvd6lq h2:before {
    top: 47%;
  }
}
@media (max-width: 767px) {
  .cid-rLAuFvd6lq h2 {
    padding-left: 0;
  }
  .cid-rLAuFvd6lq h2:before {
    display: none;
  }
}
.cid-rLAuFvd6lq .mbr-section-title {
  color: #0c2340;
}
.cid-soIx0PYbbr {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #d3ccc3;
}
.cid-soIx0PYbbr .fb-page,
.cid-soIx0PYbbr span,
.cid-soIx0PYbbr iframe {
  width: 500px;
  height: 570px;
}
.cid-soIx0PYbbr blockquote {
  display: none;
}
.cid-soIx0PYbbr .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-soIx0PYbbr .mbr-section-title {
  color: #0c2340;
}
.cid-soIx0PYbbr .mbr-section-subtitle {
  color: #0c2340;
}
.cid-soEuurgRBb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-soEuurgRBb nav.navbar {
  position: fixed;
}
.cid-soEuurgRBb .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-soEuurgRBb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-soEuurgRBb .dropdown-item:hover,
.cid-soEuurgRBb .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-soEuurgRBb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-soEuurgRBb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-soEuurgRBb .nav-dropdown .link {
  margin: 0.667em 1em !important;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-soEuurgRBb .nav-link {
  position: relative;
  padding: 0!important;
}
.cid-soEuurgRBb .nav-link:before {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  bottom: 0px;
  left: 0;
  background: #c99700;
  opacity: 0;
  transition: all 0.3s;
}
.cid-soEuurgRBb .nav-link:hover:before {
  opacity: 1;
}
.cid-soEuurgRBb .container {
  display: flex;
  margin: auto;
}
.cid-soEuurgRBb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-soEuurgRBb .dropdown-menu,
.cid-soEuurgRBb .navbar.opened {
  background: #0c2340 !important;
}
.cid-soEuurgRBb .nav-item:focus,
.cid-soEuurgRBb .nav-link:focus {
  outline: none;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-soEuurgRBb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-soEuurgRBb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-soEuurgRBb .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #0c2340;
}
.cid-soEuurgRBb .navbar.opened {
  transition: all 0.3s;
}
.cid-soEuurgRBb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-soEuurgRBb .navbar .navbar-logo img {
  width: auto;
}
.cid-soEuurgRBb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soEuurgRBb .navbar.collapsed {
  justify-content: center;
}
.cid-soEuurgRBb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-soEuurgRBb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soEuurgRBb .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-soEuurgRBb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-soEuurgRBb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-soEuurgRBb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-soEuurgRBb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soEuurgRBb .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-soEuurgRBb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-soEuurgRBb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-soEuurgRBb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-soEuurgRBb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-soEuurgRBb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-soEuurgRBb .navbar.navbar-short {
  min-height: 60px;
}
.cid-soEuurgRBb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-soEuurgRBb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-soEuurgRBb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-soEuurgRBb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soEuurgRBb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soEuurgRBb .dropdown-item.active,
.cid-soEuurgRBb .dropdown-item:active {
  background-color: transparent;
}
.cid-soEuurgRBb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soEuurgRBb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c2340;
}
.cid-soEuurgRBb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-soEuurgRBb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soEuurgRBb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-soEuurgRBb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-soEuurgRBb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soEuurgRBb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-soEuurgRBb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-soEuurgRBb .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-soEuurgRBb .navbar {
    height: 70px;
  }
  .cid-soEuurgRBb .navbar.opened {
    height: auto;
  }
  .cid-soEuurgRBb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-soEwHZHFAi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #040402;
}
.cid-soEwHZHFAi .mbr-text1 {
  color: #999999;
}
.cid-soEwHZHFAi .mbr-text2 {
  color: #999999;
}
.cid-soEwHZHFAi p {
  margin: 0;
}
.cid-rLAroJopks {
  padding-top: 180px;
  background-image: url("../../../assets/images/logo-copy-1368x987.png");
}
.cid-rLAroJopks .container {
  margin-bottom: 15%;
}
.cid-rLAroJopks .content-container .btn-bgr {
  z-index: 0;
}
.cid-rLAroJopks .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #d3ccc3;
}
.cid-rLAroJopks .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-rLAroJopks .box-item:first-child {
  background-color: #c99700;
  margin-top: -200px;
}
.cid-rLAroJopks .box-item:nth-child(2) {
  background-color: #0c2340;
}
.cid-rLAroJopks .box-item:last-child {
  background-color: #c99700;
}
.cid-rLAroJopks .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rLAroJopks .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-rLAroJopks .box-list li:last-child {
  border-bottom: none;
}
.cid-rLAroJopks .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-rLAroJopks .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-rLAroJopks .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-rLAroJopks .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-rLAroJopks .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-rLAroJopks .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-rLAroJopks .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-rLAroJopks .mbr-text,
.cid-rLAroJopks .mbr-section-btn {
  color: #232323;
}
.cid-rLAroJopks H1 {
  color: #232323;
}
.cid-rLAroJopks .box-item-text {
  text-align: center;
}
.cid-rLAroJopks .icon-block-top,
.cid-rLAroJopks .box-item-title {
  text-align: center;
}
.cid-rLAroJopks H5 {
  text-align: center;
}
.cid-rLAr73oeR7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #d3ccc3;
}
.cid-rLAr73oeR7 .form-control,
.cid-rLAr73oeR7 .form-control:focus {
  color: #0c2340 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #0c2340;
}
.cid-rLAr73oeR7 .form-control:focus,
.cid-rLAr73oeR7 .form-control:focus:focus {
  outline: none;
}
.cid-rLAr73oeR7 input::-webkit-input-placeholder {
  color: #0c2340;
}
.cid-rLAr73oeR7 input::-moz-placeholder {
  color: #0c2340;
}
.cid-rLAr73oeR7 textarea::-webkit-input-placeholder {
  color: #0c2340;
}
.cid-rLAr73oeR7 textarea::-moz-placeholder {
  color: #0c2340;
}
.cid-rLAr73oeR7 .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rLAr73oeR7 .form-control {
  margin-bottom: 15px;
}
.cid-rLAr73oeR7 .map {
  width: 100%;
  height: 30rem;
}
.cid-rLAr73oeR7 .map iframe {
  width: inherit;
  height: 100%;
}
.cid-rLAr73oeR7 .mbr-text {
  color: #767676;
}
.cid-rLAr73oeR7 .input-group-btn {
  display: block;
}
.cid-rLAr73oeR7 .google-map {
  height: 25rem;
  position: relative;
}
.cid-rLAr73oeR7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rLAr73oeR7 .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-rLAr73oeR7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rLAr73oeR7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-rLAr73oeR7 .mbr-section-subtitle,
  .cid-rLAr73oeR7 .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rLAr73oeR7 .mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-soEuurgRBb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-soEuurgRBb nav.navbar {
  position: fixed;
}
.cid-soEuurgRBb .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-soEuurgRBb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-soEuurgRBb .dropdown-item:hover,
.cid-soEuurgRBb .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-soEuurgRBb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-soEuurgRBb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-soEuurgRBb .nav-dropdown .link {
  margin: 0.667em 1em !important;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-soEuurgRBb .nav-link {
  position: relative;
  padding: 0!important;
}
.cid-soEuurgRBb .nav-link:before {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  bottom: 0px;
  left: 0;
  background: #c99700;
  opacity: 0;
  transition: all 0.3s;
}
.cid-soEuurgRBb .nav-link:hover:before {
  opacity: 1;
}
.cid-soEuurgRBb .container {
  display: flex;
  margin: auto;
}
.cid-soEuurgRBb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-soEuurgRBb .dropdown-menu,
.cid-soEuurgRBb .navbar.opened {
  background: #0c2340 !important;
}
.cid-soEuurgRBb .nav-item:focus,
.cid-soEuurgRBb .nav-link:focus {
  outline: none;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-soEuurgRBb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-soEuurgRBb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-soEuurgRBb .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #0c2340;
}
.cid-soEuurgRBb .navbar.opened {
  transition: all 0.3s;
}
.cid-soEuurgRBb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-soEuurgRBb .navbar .navbar-logo img {
  width: auto;
}
.cid-soEuurgRBb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soEuurgRBb .navbar.collapsed {
  justify-content: center;
}
.cid-soEuurgRBb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-soEuurgRBb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soEuurgRBb .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-soEuurgRBb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-soEuurgRBb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-soEuurgRBb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-soEuurgRBb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soEuurgRBb .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-soEuurgRBb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-soEuurgRBb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-soEuurgRBb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-soEuurgRBb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-soEuurgRBb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-soEuurgRBb .navbar.navbar-short {
  min-height: 60px;
}
.cid-soEuurgRBb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-soEuurgRBb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-soEuurgRBb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-soEuurgRBb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soEuurgRBb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soEuurgRBb .dropdown-item.active,
.cid-soEuurgRBb .dropdown-item:active {
  background-color: transparent;
}
.cid-soEuurgRBb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soEuurgRBb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c2340;
}
.cid-soEuurgRBb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-soEuurgRBb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soEuurgRBb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-soEuurgRBb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-soEuurgRBb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soEuurgRBb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-soEuurgRBb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-soEuurgRBb .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-soEuurgRBb .navbar {
    height: 70px;
  }
  .cid-soEuurgRBb .navbar.opened {
    height: auto;
  }
  .cid-soEuurgRBb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-soEwHZHFAi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #040402;
}
.cid-soEwHZHFAi .mbr-text1 {
  color: #999999;
}
.cid-soEwHZHFAi .mbr-text2 {
  color: #999999;
}
.cid-soEwHZHFAi p {
  margin: 0;
}
.cid-soICu9iylK {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #d3ccc3;
}
.cid-soICu9iylK .mbr-section-title {
  text-align: center;
}
.cid-soICu9iylK .mbr-section-subtitle {
  text-align: center;
  color: #0c2340;
}
.cid-soICu9iylK .mbr-section-title,
.cid-soICu9iylK .mbr-section-btn {
  color: #0c2340;
}
.cid-soICzXyiDl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/istock-1197646065-1274x823.jpg");
}
.cid-soICzXyiDl .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-soICzXyiDl .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-soICzXyiDl .mbr-section-subtitle {
  color: #767676;
}
.cid-soICzXyiDl .panel-group {
  width: 100%;
}
.cid-soICzXyiDl .panel-text {
  color: #ffffff;
}
.cid-soICzXyiDl .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-soICzXyiDl .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-soICzXyiDl .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #0c2340;
  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-soICzXyiDl .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-soICzXyiDl .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-soICzXyiDl .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-soICzXyiDl .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-soICzXyiDl .card .panel-body {
  background: #0c2340;
}
.cid-soIR5ufqh7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #d3ccc3;
}
.cid-soIR5ufqh7 .main-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-soIR5ufqh7 .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-soIR5ufqh7 .content-panel {
  padding: 2rem;
  background-color: #0c2340;
  border-radius: .25rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-soIR5ufqh7 .content-block {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-soIR5ufqh7 .form-group,
  .cid-soIR5ufqh7 .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-soIR5ufqh7 .form-control {
  border-radius: .25rem !important;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-soIR5ufqh7 textarea.form-control {
  min-height: 170px;
}
@media (max-width: 768px) {
  .cid-soIR5ufqh7 .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-soIR5ufqh7 .text-block {
    margin-bottom: 2rem;
  }
}
.cid-soEwHZHFAi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #040402;
}
.cid-soEwHZHFAi .mbr-text1 {
  color: #999999;
}
.cid-soEwHZHFAi .mbr-text2 {
  color: #999999;
}
.cid-soEwHZHFAi p {
  margin: 0;
}
.cid-soEuurgRBb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-soEuurgRBb nav.navbar {
  position: fixed;
}
.cid-soEuurgRBb .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-soEuurgRBb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-soEuurgRBb .dropdown-item:hover,
.cid-soEuurgRBb .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-soEuurgRBb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-soEuurgRBb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-soEuurgRBb .nav-dropdown .link {
  margin: 0.667em 1em !important;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-soEuurgRBb .nav-link {
  position: relative;
  padding: 0!important;
}
.cid-soEuurgRBb .nav-link:before {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  bottom: 0px;
  left: 0;
  background: #c99700;
  opacity: 0;
  transition: all 0.3s;
}
.cid-soEuurgRBb .nav-link:hover:before {
  opacity: 1;
}
.cid-soEuurgRBb .container {
  display: flex;
  margin: auto;
}
.cid-soEuurgRBb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-soEuurgRBb .dropdown-menu,
.cid-soEuurgRBb .navbar.opened {
  background: #0c2340 !important;
}
.cid-soEuurgRBb .nav-item:focus,
.cid-soEuurgRBb .nav-link:focus {
  outline: none;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-soEuurgRBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-soEuurgRBb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-soEuurgRBb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-soEuurgRBb .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #0c2340;
}
.cid-soEuurgRBb .navbar.opened {
  transition: all 0.3s;
}
.cid-soEuurgRBb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-soEuurgRBb .navbar .navbar-logo img {
  width: auto;
}
.cid-soEuurgRBb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soEuurgRBb .navbar.collapsed {
  justify-content: center;
}
.cid-soEuurgRBb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-soEuurgRBb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soEuurgRBb .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-soEuurgRBb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soEuurgRBb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-soEuurgRBb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-soEuurgRBb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-soEuurgRBb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soEuurgRBb .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-soEuurgRBb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-soEuurgRBb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soEuurgRBb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-soEuurgRBb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-soEuurgRBb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-soEuurgRBb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-soEuurgRBb .navbar.navbar-short {
  min-height: 60px;
}
.cid-soEuurgRBb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-soEuurgRBb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-soEuurgRBb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-soEuurgRBb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soEuurgRBb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soEuurgRBb .dropdown-item.active,
.cid-soEuurgRBb .dropdown-item:active {
  background-color: transparent;
}
.cid-soEuurgRBb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soEuurgRBb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soEuurgRBb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c2340;
}
.cid-soEuurgRBb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-soEuurgRBb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soEuurgRBb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-soEuurgRBb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-soEuurgRBb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soEuurgRBb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-soEuurgRBb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soEuurgRBb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-soEuurgRBb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-soEuurgRBb .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-soEuurgRBb .navbar {
    height: 70px;
  }
  .cid-soEuurgRBb .navbar.opened {
    height: auto;
  }
  .cid-soEuurgRBb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
