.btn {
  border-width: 2px;
}
body {
  font-family: 'JetBrains Mono', monospace;
}
.display-1 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3.1rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.875rem;
}
.display-4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.48rem;
    font-size: calc( 1.7349999999999999rem + (3.1 - 1.7349999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7349999999999999rem + (3.1 - 1.7349999999999999) * ((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: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn-white-outline:hover {
  color: #9f1f1f !important;
}
.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: 0.8rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #9f1f1f !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #9f1f1f !important;
  border-color: #9f1f1f !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: #9f1f1f !important;
  border-color: #9f1f1f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9f1f1f !important;
  border-color: #9f1f1f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !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: #232323 !important;
  border-color: #232323 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-primary-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #9f1f1f !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #9f1f1f;
  color: #9f1f1f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9f1f1f;
  background-color: transparent!important;
  border-color: #9f1f1f !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #9f1f1f !important;
  border-color: #9f1f1f !important;
}
.btn-primary-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #9f1f1f;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-primary-outline:hover {
  color: white;
}
.btn-primary-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-secondary-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #ff6666 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff6666;
  background-color: transparent!important;
  border-color: #ff6666 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #ff6666;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-secondary-outline:hover {
  color: white;
}
.btn-secondary-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-info-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #47b5ed !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #47b5ed;
  background-color: transparent!important;
  border-color: #47b5ed !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #47b5ed;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-info-outline:hover {
  color: white;
}
.btn-info-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-success-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #40b0bf !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #40b0bf;
  background-color: transparent!important;
  border-color: #40b0bf !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #40b0bf;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-success-outline:hover {
  color: white;
}
.btn-success-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-warning-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #ffe161 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffe161;
  background-color: transparent!important;
  border-color: #ffe161 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #ffe161;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-warning-outline:hover {
  color: white;
}
.btn-warning-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-danger-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #ff9966 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff9966;
  background-color: transparent!important;
  border-color: #ff9966 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #ff9966;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-danger-outline:hover {
  color: white;
}
.btn-danger-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-black-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #232323 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #232323;
  background-color: transparent!important;
  border-color: #232323 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #232323;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-black-outline:hover {
  color: white;
}
.btn-black-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-white-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #ffffff !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #ffffff;
  background-color: transparent!important;
  border-color: #ffffff !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #ffffff;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-white-outline:hover {
  color: white;
}
.btn-white-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.text-primary {
  color: #9f1f1f !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #9f1f1f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #9f1f1f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #9f1f1f;
  border-color: #9f1f1f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #9f1f1f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e05e5e;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'JetBrains Mono', monospace;
  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: #9f1f1f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #9f1f1f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #9f1f1f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #9f1f1f;
}
.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: #9f1f1f;
  border-bottom-color: #9f1f1f;
}
.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: #9f1f1f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%239f1f1f' %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-sBTRbfXEwz .navbar-dropdown {
  position: relative !important;
}
.cid-sBTRbfXEwz .navbar-dropdown {
  position: absolute !important;
}
.cid-sBTRbfXEwz .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sBTRbfXEwz .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sBTRbfXEwz .nav-link:hover:before {
  width: 100%;
}
.cid-sBTRbfXEwz .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sBTRbfXEwz .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sBTRbfXEwz .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-sBTRbfXEwz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBTRbfXEwz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBTRbfXEwz .dropdown-item:hover,
.cid-sBTRbfXEwz .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sBTRbfXEwz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBTRbfXEwz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBTRbfXEwz .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sBTRbfXEwz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBTRbfXEwz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBTRbfXEwz .dropdown-menu,
.cid-sBTRbfXEwz .navbar.opened {
  background: #932020 !important;
}
.cid-sBTRbfXEwz .nav-item:focus,
.cid-sBTRbfXEwz .nav-link:focus {
  outline: none;
}
.cid-sBTRbfXEwz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBTRbfXEwz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBTRbfXEwz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBTRbfXEwz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBTRbfXEwz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBTRbfXEwz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBTRbfXEwz .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-sBTRbfXEwz .navbar.opened {
  transition: all 0.3s;
}
.cid-sBTRbfXEwz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBTRbfXEwz .navbar .navbar-logo img {
  width: auto;
}
.cid-sBTRbfXEwz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBTRbfXEwz .navbar.collapsed {
  justify-content: center;
}
.cid-sBTRbfXEwz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBTRbfXEwz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sBTRbfXEwz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sBTRbfXEwz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBTRbfXEwz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBTRbfXEwz .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-sBTRbfXEwz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBTRbfXEwz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBTRbfXEwz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBTRbfXEwz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBTRbfXEwz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBTRbfXEwz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBTRbfXEwz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBTRbfXEwz .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-sBTRbfXEwz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBTRbfXEwz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBTRbfXEwz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBTRbfXEwz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBTRbfXEwz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBTRbfXEwz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBTRbfXEwz .navbar.navbar-short {
  min-height: 80px;
}
.cid-sBTRbfXEwz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBTRbfXEwz .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sBTRbfXEwz .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sBTRbfXEwz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBTRbfXEwz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBTRbfXEwz .dropdown-item.active,
.cid-sBTRbfXEwz .dropdown-item:active {
  background-color: transparent;
}
.cid-sBTRbfXEwz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBTRbfXEwz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBTRbfXEwz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBTRbfXEwz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-sBTRbfXEwz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBTRbfXEwz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBTRbfXEwz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBTRbfXEwz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBTRbfXEwz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBTRbfXEwz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-sBTRbfXEwz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBTRbfXEwz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBTRbfXEwz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBTRbfXEwz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBTRbfXEwz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBTRbfXEwz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBTRbfXEwz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBTRbfXEwz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBTRbfXEwz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sBTRbfXEwz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBTRbfXEwz .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-sBTRbfXEwz .navbar {
    height: 70px;
  }
  .cid-sBTRbfXEwz .navbar.opened {
    height: auto;
  }
  .cid-sBTRbfXEwz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBTRbk0udG {
  padding-top: 18rem;
  padding-bottom: 13rem;
  background-image: url("../../../assets/images/soff-igorevich-58942-provence-ancient-wine-traditions-and-the-bb816bef-62bc-4a3a-b3ab-12bb27afb8fc-1-1024x1024.png");
  overflow: hidden;
}
.cid-sBTRbk0udG .svg-top {
  display: none;
}
.cid-sBTRbk0udG .row {
  flex-direction: row-reverse;
}
.cid-sBTRbk0udG svg {
  position: absolute;
  top: 50px;
  width: 1700px;
  right: -80px;
  transform: scaleX(1) scaleY(1.3) rotate(0deg);
  animation: 1.5s ease-in-out infinite alternate svg;
}
.cid-sBTRbk0udG svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sBTRbk0udG svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sBTRbk0udG svg {
    width: 800px;
  }
}
@keyframes svg {
  from {
    transform: scaleX(1.2) scaleY(1.35) rotate(-1deg);
  }
  to {
    transform: scaleX(1) scaleY(1.3) rotate(0deg);
  }
}
.cid-sBTRbk0udG .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sBTRbk0udG .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTRbk0udG .row {
    margin: 0 -2rem;
  }
}
.cid-sBTRbk0udG .mbr-text,
.cid-sBTRbk0udG .mbr-section-btn {
  color: #ffffff;
}
.cid-uHGCJqISG1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-uHGCJqISG1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHGCJqISG1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHGCJqISG1 .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uHGCJqISG1 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uHGCJqISG1 .container {
    padding: 0 20px;
  }
}
.cid-uHGCJqISG1 .container,
.cid-uHGCJqISG1 .container-fluid {
  position: relative;
}
.cid-uHGCJqISG1 .container .blur-wrap,
.cid-uHGCJqISG1 .container-fluid .blur-wrap {
  position: absolute;
  bottom: -3rem;
  right: 25%;
  width: 250px;
  height: 250px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #ffffff 10%, #388282 60%);
  filter: blur(50px);
}
.cid-uHGCJqISG1 .row.blur-row {
  padding: 50px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uHGCJqISG1 .row.blur-row {
    padding: 32px 16px;
  }
}
.cid-uHGCJqISG1 .row.blur-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #595966;
  opacity: .2;
}
.cid-uHGCJqISG1 .mbr-section-title {
  margin-bottom: 50px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uHGCJqISG1 .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uHGCJqISG1 .dragArea.row {
  padding: 0;
  border-radius: 0;
}
.cid-uHGCJqISG1 .dragArea.row::before {
  content: none;
}
.cid-uHGCJqISG1 .dragArea.row .form-group {
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  margin-bottom: 16px !important;
}
.cid-uHGCJqISG1 .dragArea.row .form-group .form-control {
  padding: 0 20px;
  border-radius: 65px;
  border: none;
  min-height: 65px;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-uHGCJqISG1 .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  opacity: .5;
}
.cid-uHGCJqISG1 .dragArea.row .form-group textarea {
  padding: 20px;
}
.cid-uHGCJqISG1 .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9f1f1f;
  border-collapse: #9f1f1f;
}
.cid-uHGCJqISG1 .dragArea.row .mbr-section-btn {
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}
.cid-uHGCJqISG1 .dragArea.row .mbr-section-btn .btn {
  padding: 20px 50px;
  border-radius: 65px;
}
.cid-uHGCJqISG1 .row.forms-row {
  padding: 0;
  border-radius: 0;
}
.cid-uHGCJqISG1 .row.forms-row::before {
  content: none !important;
}
.cid-uHGCJqISG1 .mbr-desc {
  color: #ffffff;
}
.cid-uHGCJqISG1 .mbr-text {
  color: #ffffff;
}
.cid-uHGCJqISG1 label {
  color: #f5fd7b;
}
.cid-sBTSqJR3HN {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-sBTSqJR3HN .mbr-section-title {
  color: #932020;
}
.cid-sBTSqJR3HN .mbr-text {
  color: #932020;
}
.cid-sBTSqJR3HN .mbr-section-subtitle {
  color: #932020;
}
.cid-sBTSqJR3HN .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sBTSqJR3HN .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTSqJR3HN .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTRWKKZg2 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #932020;
}
.cid-sBTRWKKZg2 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sBTRWKKZg2 .team-card:hover {
  transform: translateY(-10px);
}
.cid-sBTRWKKZg2 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sBTRWKKZg2 .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sBTRWKKZg2 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTRWKKZg2 .image-wrap {
  height: 300px;
  padding-bottom: 2rem;
}
.cid-sBTRWKKZg2 .image-wrap img {
  height: 100%;
  object-fit: contain;
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 991px) {
  .cid-sBTRWKKZg2 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sBTRWKKZg2 .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sBTRWKKZg2 .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-sBTRWKKZg2 .card-title,
.cid-sBTRWKKZg2 .social-row {
  color: #1a449a;
}
.cid-sBTRWKKZg2 .mbr-role,
.cid-sBTRWKKZg2 .social-row {
  color: #1a449a;
}
.cid-sBTRWKKZg2 .card-text,
.cid-sBTRWKKZg2 .mbr-section-btn,
.cid-sBTRWKKZg2 .social-row {
  color: #ffffff;
  text-align: left;
}
.cid-sBTRWKKZg2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sBTRWKKZg2 .card-title,
.cid-sBTRWKKZg2 .content-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-sBTRWKKZg2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uHGJiiJspP {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
.cid-uHGJiiJspP .mbr-section-title {
  color: #932020;
}
.cid-uHGJiiJspP .mbr-text {
  color: #932020;
}
.cid-uHGJiiJspP .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHGJiiJspP .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHGJiiJspP .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGJiiJspP .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHGJiiJspP .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTSlAnIDB {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sBTSlAnIDB .row {
  flex-direction: row-reverse;
}
.cid-sBTSlAnIDB .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sBTSlAnIDB .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTSlAnIDB .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTSlAnIDB .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sBTSlAnIDB .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTSlAnIDB .row {
    margin: 0 -2rem;
  }
}
.cid-sBTSlAnIDB .mbr-text,
.cid-sBTSlAnIDB .mbr-section-btn {
  color: #932020;
}
.cid-uHGKi6Senz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #595966;
}
@media (max-width: 991px) {
  .cid-uHGKi6Senz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHGKi6Senz .row {
  flex-direction: row-reverse;
}
.cid-uHGKi6Senz img {
  width: 100%;
}
.cid-uHGKi6Senz .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHGKi6Senz .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGKi6Senz .svg-top .st0 {
  fill: #595966;
}
@media (max-width: 992px) {
  .cid-uHGKi6Senz .svg-top {
    width: 1000px;
  }
}
.cid-uHGKi6Senz .mbr-description {
  color: #ffffff;
}
.cid-sBTSDWgWs3 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-sBTSDWgWs3 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-sBTSDWgWs3 .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTSDWgWs3 .row {
    margin: 0 -2rem;
  }
}
.cid-sBTSDWgWs3 .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-sBTSDWgWs3 .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sBTSDWgWs3 .col-auto {
    margin: auto;
  }
}
.cid-sBTSDWgWs3 .btn {
  min-height: 60px;
}
.cid-sBTSDWgWs3 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sBTSDWgWs3 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTSDWgWs3 .svg-top {
    width: 1000px;
  }
}
.cid-sBTSDWgWs3 .form-row > .col,
.cid-sBTSDWgWs3 .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-sBTSDWgWs3 .form-control,
.cid-sBTSDWgWs3 .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-sBTSDWgWs3 .form-control::-webkit-input-placeholder,
.cid-sBTSDWgWs3 .field-input::-webkit-input-placeholder,
.cid-sBTSDWgWs3 .form-control::-webkit-input-placeholder,
.cid-sBTSDWgWs3 .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-sBTSDWgWs3 .form-control:-moz-placeholder,
.cid-sBTSDWgWs3 .field-input:-moz-placeholder,
.cid-sBTSDWgWs3 .form-control:-moz-placeholder,
.cid-sBTSDWgWs3 .field-input:-moz-placeholder {
  color: #932020;
}
.cid-sBTSDWgWs3 .form-control:hover,
.cid-sBTSDWgWs3 .field-input:hover,
.cid-sBTSDWgWs3 .form-control:focus,
.cid-sBTSDWgWs3 .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-sBTSDWgWs3 .form-control:hover::-webkit-input-placeholder,
.cid-sBTSDWgWs3 .field-input:hover::-webkit-input-placeholder,
.cid-sBTSDWgWs3 .form-control:focus::-webkit-input-placeholder,
.cid-sBTSDWgWs3 .field-input:focus::-webkit-input-placeholder,
.cid-sBTSDWgWs3 .form-control:hover::-webkit-input-placeholder,
.cid-sBTSDWgWs3 .field-input:hover::-webkit-input-placeholder,
.cid-sBTSDWgWs3 .form-control:focus::-webkit-input-placeholder,
.cid-sBTSDWgWs3 .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-sBTSDWgWs3 .form-control:hover:-moz-placeholder,
.cid-sBTSDWgWs3 .field-input:hover:-moz-placeholder,
.cid-sBTSDWgWs3 .form-control:focus:-moz-placeholder,
.cid-sBTSDWgWs3 .field-input:focus:-moz-placeholder,
.cid-sBTSDWgWs3 .form-control:hover:-moz-placeholder,
.cid-sBTSDWgWs3 .field-input:hover:-moz-placeholder,
.cid-sBTSDWgWs3 .form-control:focus:-moz-placeholder,
.cid-sBTSDWgWs3 .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-sBTSDWgWs3 .jq-number__spin:hover,
.cid-sBTSDWgWs3 .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sBTSDWgWs3 .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sBTSDWgWs3 .jq-selectbox li,
.cid-sBTSDWgWs3 .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-sBTSDWgWs3 .jq-selectbox li:hover,
.cid-sBTSDWgWs3 .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-sBTSDWgWs3 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sBTSDWgWs3 .jq-number__spin.minus:hover:after,
.cid-sBTSDWgWs3 .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-sBTSDWgWs3 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sBTSDWgWs3 .jq-number__spin.minus:after,
.cid-sBTSDWgWs3 .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-sBTSDWgWs3 input::-webkit-clear-button {
  display: none;
}
.cid-sBTSDWgWs3 input::-webkit-inner-spin-button {
  display: none;
}
.cid-sBTSDWgWs3 input::-webkit-outer-spin-button {
  display: none;
}
.cid-sBTSDWgWs3 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sBTSDWgWs3 .mbr-text,
.cid-sBTSDWgWs3 .mbr-section-btn {
  color: #932020;
}
.cid-sBTSDWgWs3 .mbr-section-title {
  color: #932020;
}
.cid-uHGDsjZI6m {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHGDsjZI6m svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHGDsjZI6m svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHGDsjZI6m svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHGDsjZI6m .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHGDsjZI6m .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHGDsjZI6m .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHGDsjZI6m .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHGDsjZI6m div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHGDsjZI6m .copyright {
  color: #ffffff;
}
.cid-uHGMWcA3fY .navbar-dropdown {
  position: relative !important;
}
.cid-uHGMWcA3fY .navbar-dropdown {
  position: absolute !important;
}
.cid-uHGMWcA3fY .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHGMWcA3fY .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHGMWcA3fY .nav-link:hover:before {
  width: 100%;
}
.cid-uHGMWcA3fY .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHGMWcA3fY .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHGMWcA3fY .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-uHGMWcA3fY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHGMWcA3fY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHGMWcA3fY .dropdown-item:hover,
.cid-uHGMWcA3fY .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHGMWcA3fY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHGMWcA3fY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHGMWcA3fY .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHGMWcA3fY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHGMWcA3fY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHGMWcA3fY .dropdown-menu,
.cid-uHGMWcA3fY .navbar.opened {
  background: #932020 !important;
}
.cid-uHGMWcA3fY .nav-item:focus,
.cid-uHGMWcA3fY .nav-link:focus {
  outline: none;
}
.cid-uHGMWcA3fY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHGMWcA3fY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHGMWcA3fY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHGMWcA3fY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHGMWcA3fY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHGMWcA3fY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHGMWcA3fY .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHGMWcA3fY .navbar.opened {
  transition: all 0.3s;
}
.cid-uHGMWcA3fY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHGMWcA3fY .navbar .navbar-logo img {
  width: auto;
}
.cid-uHGMWcA3fY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHGMWcA3fY .navbar.collapsed {
  justify-content: center;
}
.cid-uHGMWcA3fY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHGMWcA3fY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHGMWcA3fY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHGMWcA3fY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHGMWcA3fY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHGMWcA3fY .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-uHGMWcA3fY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHGMWcA3fY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHGMWcA3fY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHGMWcA3fY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHGMWcA3fY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHGMWcA3fY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHGMWcA3fY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHGMWcA3fY .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-uHGMWcA3fY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHGMWcA3fY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHGMWcA3fY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHGMWcA3fY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHGMWcA3fY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHGMWcA3fY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHGMWcA3fY .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHGMWcA3fY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHGMWcA3fY .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHGMWcA3fY .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHGMWcA3fY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHGMWcA3fY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHGMWcA3fY .dropdown-item.active,
.cid-uHGMWcA3fY .dropdown-item:active {
  background-color: transparent;
}
.cid-uHGMWcA3fY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHGMWcA3fY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHGMWcA3fY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHGMWcA3fY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHGMWcA3fY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHGMWcA3fY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHGMWcA3fY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHGMWcA3fY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHGMWcA3fY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHGMWcA3fY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHGMWcA3fY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHGMWcA3fY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHGMWcA3fY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHGMWcA3fY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHGMWcA3fY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHGMWcA3fY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHGMWcA3fY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHGMWcA3fY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHGMWcA3fY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHGMWcA3fY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHGMWcA3fY .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-uHGMWcA3fY .navbar {
    height: 70px;
  }
  .cid-uHGMWcA3fY .navbar.opened {
    height: auto;
  }
  .cid-uHGMWcA3fY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHGMWkru91 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: #932020;
}
.cid-uHGMWkru91 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uHGMWkru91 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uHGMWkru91 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGMWkru91 .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHGMWkru91 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHGMWkru91 .image-wrap {
  height: 300px;
  padding-bottom: 2rem;
}
.cid-uHGMWkru91 .image-wrap img {
  height: 100%;
  object-fit: contain;
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 991px) {
  .cid-uHGMWkru91 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uHGMWkru91 .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uHGMWkru91 .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uHGMWkru91 .card-title,
.cid-uHGMWkru91 .social-row {
  color: #1a449a;
}
.cid-uHGMWkru91 .mbr-role,
.cid-uHGMWkru91 .social-row {
  color: #1a449a;
}
.cid-uHGMWkru91 .card-text,
.cid-uHGMWkru91 .mbr-section-btn,
.cid-uHGMWkru91 .social-row {
  color: #ffffff;
  text-align: left;
}
.cid-uHGMWkru91 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHGMWkru91 .card-title,
.cid-uHGMWkru91 .content-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-uHGMWkru91 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uHGNmbmY5o {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #932020;
}
.cid-uHGNmbmY5o .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uHGNmbmY5o .team-card:hover {
  transform: translateY(-10px);
}
.cid-uHGNmbmY5o .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGNmbmY5o .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHGNmbmY5o .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHGNmbmY5o .image-wrap {
  height: 300px;
  padding-bottom: 2rem;
}
.cid-uHGNmbmY5o .image-wrap img {
  height: 100%;
  object-fit: contain;
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 991px) {
  .cid-uHGNmbmY5o .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uHGNmbmY5o .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uHGNmbmY5o .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uHGNmbmY5o .card-title,
.cid-uHGNmbmY5o .social-row {
  color: #1a449a;
}
.cid-uHGNmbmY5o .mbr-role,
.cid-uHGNmbmY5o .social-row {
  color: #1a449a;
}
.cid-uHGNmbmY5o .card-text,
.cid-uHGNmbmY5o .mbr-section-btn,
.cid-uHGNmbmY5o .social-row {
  color: #ffffff;
  text-align: left;
}
.cid-uHGNmbmY5o .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHGNmbmY5o .card-title,
.cid-uHGNmbmY5o .content-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-uHGNmbmY5o .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uHGNmRphW4 {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background: #932020;
}
.cid-uHGNmRphW4 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uHGNmRphW4 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uHGNmRphW4 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGNmRphW4 .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHGNmRphW4 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHGNmRphW4 .image-wrap {
  height: 300px;
  padding-bottom: 2rem;
}
.cid-uHGNmRphW4 .image-wrap img {
  height: 100%;
  object-fit: contain;
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 991px) {
  .cid-uHGNmRphW4 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uHGNmRphW4 .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uHGNmRphW4 .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uHGNmRphW4 .card-title,
.cid-uHGNmRphW4 .social-row {
  color: #1a449a;
}
.cid-uHGNmRphW4 .mbr-role,
.cid-uHGNmRphW4 .social-row {
  color: #1a449a;
}
.cid-uHGNmRphW4 .card-text,
.cid-uHGNmRphW4 .mbr-section-btn,
.cid-uHGNmRphW4 .social-row {
  color: #ffffff;
  text-align: left;
}
.cid-uHGNmRphW4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHGNmRphW4 .card-title,
.cid-uHGNmRphW4 .content-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-uHGNmRphW4 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uHGMWp5nNR {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHGMWp5nNR .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHGMWp5nNR .col-12 {
    padding: 0 2rem;
  }
  .cid-uHGMWp5nNR .row {
    margin: 0 -2rem;
  }
}
.cid-uHGMWp5nNR .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHGMWp5nNR .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHGMWp5nNR .col-auto {
    margin: auto;
  }
}
.cid-uHGMWp5nNR .btn {
  min-height: 60px;
}
.cid-uHGMWp5nNR .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGMWp5nNR .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHGMWp5nNR .svg-top {
    width: 1000px;
  }
}
.cid-uHGMWp5nNR .form-row > .col,
.cid-uHGMWp5nNR .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHGMWp5nNR .form-control,
.cid-uHGMWp5nNR .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHGMWp5nNR .form-control::-webkit-input-placeholder,
.cid-uHGMWp5nNR .field-input::-webkit-input-placeholder,
.cid-uHGMWp5nNR .form-control::-webkit-input-placeholder,
.cid-uHGMWp5nNR .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHGMWp5nNR .form-control:-moz-placeholder,
.cid-uHGMWp5nNR .field-input:-moz-placeholder,
.cid-uHGMWp5nNR .form-control:-moz-placeholder,
.cid-uHGMWp5nNR .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHGMWp5nNR .form-control:hover,
.cid-uHGMWp5nNR .field-input:hover,
.cid-uHGMWp5nNR .form-control:focus,
.cid-uHGMWp5nNR .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHGMWp5nNR .form-control:hover::-webkit-input-placeholder,
.cid-uHGMWp5nNR .field-input:hover::-webkit-input-placeholder,
.cid-uHGMWp5nNR .form-control:focus::-webkit-input-placeholder,
.cid-uHGMWp5nNR .field-input:focus::-webkit-input-placeholder,
.cid-uHGMWp5nNR .form-control:hover::-webkit-input-placeholder,
.cid-uHGMWp5nNR .field-input:hover::-webkit-input-placeholder,
.cid-uHGMWp5nNR .form-control:focus::-webkit-input-placeholder,
.cid-uHGMWp5nNR .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHGMWp5nNR .form-control:hover:-moz-placeholder,
.cid-uHGMWp5nNR .field-input:hover:-moz-placeholder,
.cid-uHGMWp5nNR .form-control:focus:-moz-placeholder,
.cid-uHGMWp5nNR .field-input:focus:-moz-placeholder,
.cid-uHGMWp5nNR .form-control:hover:-moz-placeholder,
.cid-uHGMWp5nNR .field-input:hover:-moz-placeholder,
.cid-uHGMWp5nNR .form-control:focus:-moz-placeholder,
.cid-uHGMWp5nNR .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHGMWp5nNR .jq-number__spin:hover,
.cid-uHGMWp5nNR .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHGMWp5nNR .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHGMWp5nNR .jq-selectbox li,
.cid-uHGMWp5nNR .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHGMWp5nNR .jq-selectbox li:hover,
.cid-uHGMWp5nNR .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHGMWp5nNR .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHGMWp5nNR .jq-number__spin.minus:hover:after,
.cid-uHGMWp5nNR .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHGMWp5nNR .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHGMWp5nNR .jq-number__spin.minus:after,
.cid-uHGMWp5nNR .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHGMWp5nNR input::-webkit-clear-button {
  display: none;
}
.cid-uHGMWp5nNR input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHGMWp5nNR input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHGMWp5nNR input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHGMWp5nNR .mbr-text,
.cid-uHGMWp5nNR .mbr-section-btn {
  color: #932020;
}
.cid-uHGMWp5nNR .mbr-section-title {
  color: #932020;
}
.cid-uHGMWqqtqU {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHGMWqqtqU svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHGMWqqtqU svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHGMWqqtqU svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHGMWqqtqU .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHGMWqqtqU .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHGMWqqtqU .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHGMWqqtqU .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHGMWqqtqU div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHGMWqqtqU .copyright {
  color: #ffffff;
}
.cid-uHGPfTlM3g .navbar-dropdown {
  position: relative !important;
}
.cid-uHGPfTlM3g .navbar-dropdown {
  position: absolute !important;
}
.cid-uHGPfTlM3g .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHGPfTlM3g .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHGPfTlM3g .nav-link:hover:before {
  width: 100%;
}
.cid-uHGPfTlM3g .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHGPfTlM3g .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHGPfTlM3g .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-uHGPfTlM3g .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHGPfTlM3g .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHGPfTlM3g .dropdown-item:hover,
.cid-uHGPfTlM3g .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHGPfTlM3g .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHGPfTlM3g .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHGPfTlM3g .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHGPfTlM3g .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHGPfTlM3g .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHGPfTlM3g .dropdown-menu,
.cid-uHGPfTlM3g .navbar.opened {
  background: #932020 !important;
}
.cid-uHGPfTlM3g .nav-item:focus,
.cid-uHGPfTlM3g .nav-link:focus {
  outline: none;
}
.cid-uHGPfTlM3g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHGPfTlM3g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHGPfTlM3g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHGPfTlM3g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHGPfTlM3g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHGPfTlM3g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHGPfTlM3g .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHGPfTlM3g .navbar.opened {
  transition: all 0.3s;
}
.cid-uHGPfTlM3g .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHGPfTlM3g .navbar .navbar-logo img {
  width: auto;
}
.cid-uHGPfTlM3g .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHGPfTlM3g .navbar.collapsed {
  justify-content: center;
}
.cid-uHGPfTlM3g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHGPfTlM3g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHGPfTlM3g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHGPfTlM3g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHGPfTlM3g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHGPfTlM3g .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-uHGPfTlM3g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHGPfTlM3g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHGPfTlM3g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHGPfTlM3g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHGPfTlM3g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHGPfTlM3g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHGPfTlM3g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHGPfTlM3g .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-uHGPfTlM3g .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHGPfTlM3g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHGPfTlM3g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHGPfTlM3g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHGPfTlM3g .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHGPfTlM3g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHGPfTlM3g .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHGPfTlM3g .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHGPfTlM3g .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHGPfTlM3g .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHGPfTlM3g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHGPfTlM3g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHGPfTlM3g .dropdown-item.active,
.cid-uHGPfTlM3g .dropdown-item:active {
  background-color: transparent;
}
.cid-uHGPfTlM3g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHGPfTlM3g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHGPfTlM3g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHGPfTlM3g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHGPfTlM3g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHGPfTlM3g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHGPfTlM3g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHGPfTlM3g .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHGPfTlM3g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHGPfTlM3g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHGPfTlM3g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHGPfTlM3g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHGPfTlM3g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHGPfTlM3g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHGPfTlM3g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHGPfTlM3g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHGPfTlM3g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHGPfTlM3g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHGPfTlM3g .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHGPfTlM3g a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHGPfTlM3g .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-uHGPfTlM3g .navbar {
    height: 70px;
  }
  .cid-uHGPfTlM3g .navbar.opened {
    height: auto;
  }
  .cid-uHGPfTlM3g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHGVxUgbET {
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/soff-igorevich-58942-languedoc-roussillon-a-transforming-wine-4d7a992b-f4fb-4e77-8eda-5e37bacd516f-1024x1024.png");
}
.cid-uHGVxUgbET .svg-top {
  display: none;
}
.cid-uHGVxUgbET .mbr-section-title {
  color: #ebd3ab;
}
.cid-uHGVxUgbET .mbr-text {
  color: #ebd3ab;
}
.cid-uHGVxUgbET .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHGVxUgbET .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHGVxUgbET .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGVxUgbET .svg-top .st0 {
  fill: "file:///C:/Users/Asus/AppData/Local/Mobirise.com/Mobirise/projects/project-2025-04-07_155219/assets/images/soff_igorevich_58942_languedoc-roussillon_a_transforming_wine_4d7a992b-f4fb-4e77-8eda-5e37bacd516f-1024x1024.png";
}
@media (max-width: 992px) {
  .cid-uHGVxUgbET .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.cid-uHGVxUgbET h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-left: 70px;
}
.cid-uHGVxUgbET h5:before {
  content: '';
  position: absolute;
  left: -65px;
  top: 50%;
  transform-origin: right;
  height: 2px;
  width: 45px;
  background: currentColor;
}
.cid-uHGVxUgbET h5:hover:before {
  animation: 1s ease-in-out alternate line;
}
@media (max-width: 767px) {
  .cid-uHGVxUgbET h5 {
    margin-left: 0px;
  }
  .cid-uHGVxUgbET h5:before {
    bottom: -5px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-uHGVxUgbET h5:hover:before {
    animation: none;
  }
}
.cid-uHGWrOMCVW {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
.cid-uHGWrOMCVW .mbr-section-title {
  color: #932020;
}
.cid-uHGWrOMCVW .mbr-text {
  color: #932020;
}
.cid-uHGWrOMCVW .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHGWrOMCVW .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHGWrOMCVW .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGWrOMCVW .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHGWrOMCVW .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHGWNi3CK7 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-uHGWNi3CK7 .container {
    max-width: 1400px;
  }
}
.cid-uHGWNi3CK7 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHGWNi3CK7 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGWNi3CK7 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHGWNi3CK7 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHGWNi3CK7 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-uHGWNi3CK7 .card-wrapper {
  margin-top: 3rem;
}
.cid-uHGWNi3CK7 .row {
  justify-content: center;
}
.cid-uHGWNi3CK7 .mbr-section-title {
  color: #932020;
}
.cid-uHGWNi3CK7 .card-title,
.cid-uHGWNi3CK7 .iconfont-wrapper {
  color: #1a449a;
}
.cid-uHGWNi3CK7 .card-text {
  color: #932020;
  text-align: left;
}
.cid-uHGWOBHXF4 {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uHGWOBHXF4 .mbr-section-title {
  color: #932020;
}
.cid-uHGWOBHXF4 .mbr-text {
  color: #932020;
}
.cid-uHGWOBHXF4 .mbr-section-subtitle {
  color: #932020;
}
.cid-uHGWOBHXF4 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHGWOBHXF4 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGWOBHXF4 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHGWOBHXF4 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHGPfYVpYB {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHGPfYVpYB .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHGPfYVpYB .col-12 {
    padding: 0 2rem;
  }
  .cid-uHGPfYVpYB .row {
    margin: 0 -2rem;
  }
}
.cid-uHGPfYVpYB .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHGPfYVpYB .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHGPfYVpYB .col-auto {
    margin: auto;
  }
}
.cid-uHGPfYVpYB .btn {
  min-height: 60px;
}
.cid-uHGPfYVpYB .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGPfYVpYB .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHGPfYVpYB .svg-top {
    width: 1000px;
  }
}
.cid-uHGPfYVpYB .form-row > .col,
.cid-uHGPfYVpYB .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHGPfYVpYB .form-control,
.cid-uHGPfYVpYB .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHGPfYVpYB .form-control::-webkit-input-placeholder,
.cid-uHGPfYVpYB .field-input::-webkit-input-placeholder,
.cid-uHGPfYVpYB .form-control::-webkit-input-placeholder,
.cid-uHGPfYVpYB .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHGPfYVpYB .form-control:-moz-placeholder,
.cid-uHGPfYVpYB .field-input:-moz-placeholder,
.cid-uHGPfYVpYB .form-control:-moz-placeholder,
.cid-uHGPfYVpYB .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHGPfYVpYB .form-control:hover,
.cid-uHGPfYVpYB .field-input:hover,
.cid-uHGPfYVpYB .form-control:focus,
.cid-uHGPfYVpYB .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHGPfYVpYB .form-control:hover::-webkit-input-placeholder,
.cid-uHGPfYVpYB .field-input:hover::-webkit-input-placeholder,
.cid-uHGPfYVpYB .form-control:focus::-webkit-input-placeholder,
.cid-uHGPfYVpYB .field-input:focus::-webkit-input-placeholder,
.cid-uHGPfYVpYB .form-control:hover::-webkit-input-placeholder,
.cid-uHGPfYVpYB .field-input:hover::-webkit-input-placeholder,
.cid-uHGPfYVpYB .form-control:focus::-webkit-input-placeholder,
.cid-uHGPfYVpYB .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHGPfYVpYB .form-control:hover:-moz-placeholder,
.cid-uHGPfYVpYB .field-input:hover:-moz-placeholder,
.cid-uHGPfYVpYB .form-control:focus:-moz-placeholder,
.cid-uHGPfYVpYB .field-input:focus:-moz-placeholder,
.cid-uHGPfYVpYB .form-control:hover:-moz-placeholder,
.cid-uHGPfYVpYB .field-input:hover:-moz-placeholder,
.cid-uHGPfYVpYB .form-control:focus:-moz-placeholder,
.cid-uHGPfYVpYB .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHGPfYVpYB .jq-number__spin:hover,
.cid-uHGPfYVpYB .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHGPfYVpYB .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHGPfYVpYB .jq-selectbox li,
.cid-uHGPfYVpYB .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHGPfYVpYB .jq-selectbox li:hover,
.cid-uHGPfYVpYB .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHGPfYVpYB .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHGPfYVpYB .jq-number__spin.minus:hover:after,
.cid-uHGPfYVpYB .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHGPfYVpYB .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHGPfYVpYB .jq-number__spin.minus:after,
.cid-uHGPfYVpYB .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHGPfYVpYB input::-webkit-clear-button {
  display: none;
}
.cid-uHGPfYVpYB input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHGPfYVpYB input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHGPfYVpYB input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHGPfYVpYB .mbr-text,
.cid-uHGPfYVpYB .mbr-section-btn {
  color: #932020;
}
.cid-uHGPfYVpYB .mbr-section-title {
  color: #932020;
}
.cid-uHGPg03Vx1 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHGPg03Vx1 svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHGPg03Vx1 svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHGPg03Vx1 svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHGPg03Vx1 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHGPg03Vx1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHGPg03Vx1 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHGPg03Vx1 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHGPg03Vx1 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHGPg03Vx1 .copyright {
  color: #ffffff;
}
.cid-uHGPxpxBtX .navbar-dropdown {
  position: relative !important;
}
.cid-uHGPxpxBtX .navbar-dropdown {
  position: absolute !important;
}
.cid-uHGPxpxBtX .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHGPxpxBtX .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHGPxpxBtX .nav-link:hover:before {
  width: 100%;
}
.cid-uHGPxpxBtX .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHGPxpxBtX .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHGPxpxBtX .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-uHGPxpxBtX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHGPxpxBtX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHGPxpxBtX .dropdown-item:hover,
.cid-uHGPxpxBtX .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHGPxpxBtX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHGPxpxBtX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHGPxpxBtX .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHGPxpxBtX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHGPxpxBtX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHGPxpxBtX .dropdown-menu,
.cid-uHGPxpxBtX .navbar.opened {
  background: #932020 !important;
}
.cid-uHGPxpxBtX .nav-item:focus,
.cid-uHGPxpxBtX .nav-link:focus {
  outline: none;
}
.cid-uHGPxpxBtX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHGPxpxBtX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHGPxpxBtX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHGPxpxBtX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHGPxpxBtX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHGPxpxBtX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHGPxpxBtX .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHGPxpxBtX .navbar.opened {
  transition: all 0.3s;
}
.cid-uHGPxpxBtX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHGPxpxBtX .navbar .navbar-logo img {
  width: auto;
}
.cid-uHGPxpxBtX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHGPxpxBtX .navbar.collapsed {
  justify-content: center;
}
.cid-uHGPxpxBtX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHGPxpxBtX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHGPxpxBtX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHGPxpxBtX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHGPxpxBtX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHGPxpxBtX .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-uHGPxpxBtX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHGPxpxBtX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHGPxpxBtX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHGPxpxBtX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHGPxpxBtX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHGPxpxBtX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHGPxpxBtX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHGPxpxBtX .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-uHGPxpxBtX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHGPxpxBtX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHGPxpxBtX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHGPxpxBtX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHGPxpxBtX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHGPxpxBtX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHGPxpxBtX .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHGPxpxBtX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHGPxpxBtX .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHGPxpxBtX .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHGPxpxBtX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHGPxpxBtX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHGPxpxBtX .dropdown-item.active,
.cid-uHGPxpxBtX .dropdown-item:active {
  background-color: transparent;
}
.cid-uHGPxpxBtX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHGPxpxBtX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHGPxpxBtX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHGPxpxBtX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHGPxpxBtX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHGPxpxBtX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHGPxpxBtX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHGPxpxBtX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHGPxpxBtX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHGPxpxBtX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHGPxpxBtX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHGPxpxBtX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHGPxpxBtX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHGPxpxBtX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHGPxpxBtX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHGPxpxBtX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHGPxpxBtX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHGPxpxBtX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHGPxpxBtX .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHGPxpxBtX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHGPxpxBtX .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-uHGPxpxBtX .navbar {
    height: 70px;
  }
  .cid-uHGPxpxBtX .navbar.opened {
    height: auto;
  }
  .cid-uHGPxpxBtX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHGPYZ9LmD {
  padding-top: 20rem;
  padding-bottom: 15rem;
  background-color: #ebd3ab;
}
.cid-uHGPYZ9LmD .row {
  flex-direction: row-reverse;
}
.cid-uHGPYZ9LmD .svg-container {
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
  height: 300px;
}
.cid-uHGPYZ9LmD svg {
  position: absolute;
  top: 50px;
  width: 1700px;
  right: -80px;
  transform: scaleX(1) scaleY(1.3) rotate(0deg);
  animation: 1.5s ease-in-out infinite alternate svg;
}
.cid-uHGPYZ9LmD svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHGPYZ9LmD svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uHGPYZ9LmD svg {
    width: 800px;
  }
}
@keyframes svg {
  from {
    transform: scaleX(1.2) scaleY(1.35) rotate(-1deg);
  }
  to {
    transform: scaleX(1) scaleY(1.3) rotate(0deg);
  }
}
.cid-uHGPYZ9LmD .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-uHGPYZ9LmD .col-12 {
    padding: 0 2rem;
  }
  .cid-uHGPYZ9LmD .row {
    margin: 0 -2rem;
  }
}
.cid-uHGPYZ9LmD .mbr-text,
.cid-uHGPYZ9LmD .mbr-section-btn {
  color: #932020;
}
.cid-uHGPxqGbme {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHGPxqGbme .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHGPxqGbme .col-12 {
    padding: 0 2rem;
  }
  .cid-uHGPxqGbme .row {
    margin: 0 -2rem;
  }
}
.cid-uHGPxqGbme .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHGPxqGbme .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHGPxqGbme .col-auto {
    margin: auto;
  }
}
.cid-uHGPxqGbme .btn {
  min-height: 60px;
}
.cid-uHGPxqGbme .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGPxqGbme .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHGPxqGbme .svg-top {
    width: 1000px;
  }
}
.cid-uHGPxqGbme .form-row > .col,
.cid-uHGPxqGbme .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHGPxqGbme .form-control,
.cid-uHGPxqGbme .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHGPxqGbme .form-control::-webkit-input-placeholder,
.cid-uHGPxqGbme .field-input::-webkit-input-placeholder,
.cid-uHGPxqGbme .form-control::-webkit-input-placeholder,
.cid-uHGPxqGbme .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHGPxqGbme .form-control:-moz-placeholder,
.cid-uHGPxqGbme .field-input:-moz-placeholder,
.cid-uHGPxqGbme .form-control:-moz-placeholder,
.cid-uHGPxqGbme .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHGPxqGbme .form-control:hover,
.cid-uHGPxqGbme .field-input:hover,
.cid-uHGPxqGbme .form-control:focus,
.cid-uHGPxqGbme .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHGPxqGbme .form-control:hover::-webkit-input-placeholder,
.cid-uHGPxqGbme .field-input:hover::-webkit-input-placeholder,
.cid-uHGPxqGbme .form-control:focus::-webkit-input-placeholder,
.cid-uHGPxqGbme .field-input:focus::-webkit-input-placeholder,
.cid-uHGPxqGbme .form-control:hover::-webkit-input-placeholder,
.cid-uHGPxqGbme .field-input:hover::-webkit-input-placeholder,
.cid-uHGPxqGbme .form-control:focus::-webkit-input-placeholder,
.cid-uHGPxqGbme .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHGPxqGbme .form-control:hover:-moz-placeholder,
.cid-uHGPxqGbme .field-input:hover:-moz-placeholder,
.cid-uHGPxqGbme .form-control:focus:-moz-placeholder,
.cid-uHGPxqGbme .field-input:focus:-moz-placeholder,
.cid-uHGPxqGbme .form-control:hover:-moz-placeholder,
.cid-uHGPxqGbme .field-input:hover:-moz-placeholder,
.cid-uHGPxqGbme .form-control:focus:-moz-placeholder,
.cid-uHGPxqGbme .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHGPxqGbme .jq-number__spin:hover,
.cid-uHGPxqGbme .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHGPxqGbme .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHGPxqGbme .jq-selectbox li,
.cid-uHGPxqGbme .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHGPxqGbme .jq-selectbox li:hover,
.cid-uHGPxqGbme .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHGPxqGbme .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHGPxqGbme .jq-number__spin.minus:hover:after,
.cid-uHGPxqGbme .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHGPxqGbme .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHGPxqGbme .jq-number__spin.minus:after,
.cid-uHGPxqGbme .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHGPxqGbme input::-webkit-clear-button {
  display: none;
}
.cid-uHGPxqGbme input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHGPxqGbme input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHGPxqGbme input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHGPxqGbme .mbr-text,
.cid-uHGPxqGbme .mbr-section-btn {
  color: #932020;
}
.cid-uHGPxqGbme .mbr-section-title {
  color: #932020;
}
.cid-uHGPxrVkdV {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHGPxrVkdV svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHGPxrVkdV svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHGPxrVkdV svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHGPxrVkdV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHGPxrVkdV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHGPxrVkdV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHGPxrVkdV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHGPxrVkdV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHGPxrVkdV .copyright {
  color: #ffffff;
}
.cid-uHGPG11Lw2 .navbar-dropdown {
  position: relative !important;
}
.cid-uHGPG11Lw2 .navbar-dropdown {
  position: absolute !important;
}
.cid-uHGPG11Lw2 .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHGPG11Lw2 .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHGPG11Lw2 .nav-link:hover:before {
  width: 100%;
}
.cid-uHGPG11Lw2 .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHGPG11Lw2 .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHGPG11Lw2 .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-uHGPG11Lw2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHGPG11Lw2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHGPG11Lw2 .dropdown-item:hover,
.cid-uHGPG11Lw2 .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHGPG11Lw2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHGPG11Lw2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHGPG11Lw2 .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHGPG11Lw2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHGPG11Lw2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHGPG11Lw2 .dropdown-menu,
.cid-uHGPG11Lw2 .navbar.opened {
  background: #932020 !important;
}
.cid-uHGPG11Lw2 .nav-item:focus,
.cid-uHGPG11Lw2 .nav-link:focus {
  outline: none;
}
.cid-uHGPG11Lw2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHGPG11Lw2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHGPG11Lw2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHGPG11Lw2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHGPG11Lw2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHGPG11Lw2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHGPG11Lw2 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHGPG11Lw2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uHGPG11Lw2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHGPG11Lw2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uHGPG11Lw2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHGPG11Lw2 .navbar.collapsed {
  justify-content: center;
}
.cid-uHGPG11Lw2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHGPG11Lw2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHGPG11Lw2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHGPG11Lw2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHGPG11Lw2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHGPG11Lw2 .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-uHGPG11Lw2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHGPG11Lw2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHGPG11Lw2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHGPG11Lw2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHGPG11Lw2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHGPG11Lw2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHGPG11Lw2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHGPG11Lw2 .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-uHGPG11Lw2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHGPG11Lw2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHGPG11Lw2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHGPG11Lw2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHGPG11Lw2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHGPG11Lw2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHGPG11Lw2 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHGPG11Lw2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHGPG11Lw2 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHGPG11Lw2 .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHGPG11Lw2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHGPG11Lw2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHGPG11Lw2 .dropdown-item.active,
.cid-uHGPG11Lw2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uHGPG11Lw2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHGPG11Lw2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHGPG11Lw2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHGPG11Lw2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHGPG11Lw2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHGPG11Lw2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHGPG11Lw2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHGPG11Lw2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHGPG11Lw2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHGPG11Lw2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHGPG11Lw2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHGPG11Lw2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHGPG11Lw2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHGPG11Lw2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHGPG11Lw2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHGPG11Lw2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHGPG11Lw2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHGPG11Lw2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHGPG11Lw2 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHGPG11Lw2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHGPG11Lw2 .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-uHGPG11Lw2 .navbar {
    height: 70px;
  }
  .cid-uHGPG11Lw2 .navbar.opened {
    height: auto;
  }
  .cid-uHGPG11Lw2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHGYyLZK7c {
  padding-top: 12rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHGYyLZK7c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHGYyLZK7c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHGYyLZK7c .container {
    padding: 0 24px;
  }
}
.cid-uHGYyLZK7c .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHGYyLZK7c .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHGYyLZK7c .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHGYyLZK7c .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHGYyLZK7c .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHGYyLZK7c .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHGYyLZK7c .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHGYyLZK7c .mbr-desc {
  color: #202020;
}
.cid-uHGYyLZK7c .mbr-section-title {
  color: #202020;
}
.cid-uHGYyLZK7c .mbr-date {
  color: #202020;
}
.cid-uHGYyLZK7c .mbr-desc,
.cid-uHGYyLZK7c .desc-wrap {
  text-align: right;
}
.cid-uHGY1u7tFr {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHGY1u7tFr .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHGY1u7tFr .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGY1u7tFr .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHGY1u7tFr .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHGY1u7tFr .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-uHGY1u7tFr .col-12 {
    padding: 0 2rem;
  }
  .cid-uHGY1u7tFr .row {
    margin: 0 -2rem;
  }
}
.cid-uHGY1u7tFr .mbr-text,
.cid-uHGY1u7tFr .mbr-section-btn {
  color: #932020;
}
.cid-uHGZLSGuk7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
.cid-uHGZLSGuk7 .mbr-section-title {
  color: #932020;
}
.cid-uHGZLSGuk7 .mbr-text {
  color: #932020;
}
.cid-uHGZLSGuk7 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHGZLSGuk7 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHGZLSGuk7 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGZLSGuk7 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHGZLSGuk7 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHGZuJshQE {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHGZuJshQE .row {
  flex-direction: row-reverse;
}
.cid-uHGZuJshQE .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHGZuJshQE .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGZuJshQE .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHGZuJshQE .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-uHGZuJshQE .col-12 {
    padding: 0 2rem;
  }
  .cid-uHGZuJshQE .row {
    margin: 0 -2rem;
  }
}
.cid-uHGZuJshQE .mbr-text,
.cid-uHGZuJshQE .mbr-section-btn {
  color: #932020;
}
.cid-uHGZuJshQE .mbr-section-title {
  color: #932020;
}
.cid-uHGPG2b2vg {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHGPG2b2vg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHGPG2b2vg .col-12 {
    padding: 0 2rem;
  }
  .cid-uHGPG2b2vg .row {
    margin: 0 -2rem;
  }
}
.cid-uHGPG2b2vg .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHGPG2b2vg .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHGPG2b2vg .col-auto {
    margin: auto;
  }
}
.cid-uHGPG2b2vg .btn {
  min-height: 60px;
}
.cid-uHGPG2b2vg .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHGPG2b2vg .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHGPG2b2vg .svg-top {
    width: 1000px;
  }
}
.cid-uHGPG2b2vg .form-row > .col,
.cid-uHGPG2b2vg .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHGPG2b2vg .form-control,
.cid-uHGPG2b2vg .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHGPG2b2vg .form-control::-webkit-input-placeholder,
.cid-uHGPG2b2vg .field-input::-webkit-input-placeholder,
.cid-uHGPG2b2vg .form-control::-webkit-input-placeholder,
.cid-uHGPG2b2vg .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHGPG2b2vg .form-control:-moz-placeholder,
.cid-uHGPG2b2vg .field-input:-moz-placeholder,
.cid-uHGPG2b2vg .form-control:-moz-placeholder,
.cid-uHGPG2b2vg .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHGPG2b2vg .form-control:hover,
.cid-uHGPG2b2vg .field-input:hover,
.cid-uHGPG2b2vg .form-control:focus,
.cid-uHGPG2b2vg .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHGPG2b2vg .form-control:hover::-webkit-input-placeholder,
.cid-uHGPG2b2vg .field-input:hover::-webkit-input-placeholder,
.cid-uHGPG2b2vg .form-control:focus::-webkit-input-placeholder,
.cid-uHGPG2b2vg .field-input:focus::-webkit-input-placeholder,
.cid-uHGPG2b2vg .form-control:hover::-webkit-input-placeholder,
.cid-uHGPG2b2vg .field-input:hover::-webkit-input-placeholder,
.cid-uHGPG2b2vg .form-control:focus::-webkit-input-placeholder,
.cid-uHGPG2b2vg .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHGPG2b2vg .form-control:hover:-moz-placeholder,
.cid-uHGPG2b2vg .field-input:hover:-moz-placeholder,
.cid-uHGPG2b2vg .form-control:focus:-moz-placeholder,
.cid-uHGPG2b2vg .field-input:focus:-moz-placeholder,
.cid-uHGPG2b2vg .form-control:hover:-moz-placeholder,
.cid-uHGPG2b2vg .field-input:hover:-moz-placeholder,
.cid-uHGPG2b2vg .form-control:focus:-moz-placeholder,
.cid-uHGPG2b2vg .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHGPG2b2vg .jq-number__spin:hover,
.cid-uHGPG2b2vg .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHGPG2b2vg .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHGPG2b2vg .jq-selectbox li,
.cid-uHGPG2b2vg .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHGPG2b2vg .jq-selectbox li:hover,
.cid-uHGPG2b2vg .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHGPG2b2vg .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHGPG2b2vg .jq-number__spin.minus:hover:after,
.cid-uHGPG2b2vg .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHGPG2b2vg .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHGPG2b2vg .jq-number__spin.minus:after,
.cid-uHGPG2b2vg .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHGPG2b2vg input::-webkit-clear-button {
  display: none;
}
.cid-uHGPG2b2vg input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHGPG2b2vg input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHGPG2b2vg input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHGPG2b2vg .mbr-text,
.cid-uHGPG2b2vg .mbr-section-btn {
  color: #932020;
}
.cid-uHGPG2b2vg .mbr-section-title {
  color: #932020;
}
.cid-uHGPG3m5Xi {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHGPG3m5Xi svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHGPG3m5Xi svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHGPG3m5Xi svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHGPG3m5Xi .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHGPG3m5Xi .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHGPG3m5Xi .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHGPG3m5Xi .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHGPG3m5Xi div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHGPG3m5Xi .copyright {
  color: #ffffff;
}
.cid-uHH0lk4iDF .navbar-dropdown {
  position: relative !important;
}
.cid-uHH0lk4iDF .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH0lk4iDF .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH0lk4iDF .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH0lk4iDF .nav-link:hover:before {
  width: 100%;
}
.cid-uHH0lk4iDF .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH0lk4iDF .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH0lk4iDF .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-uHH0lk4iDF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH0lk4iDF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH0lk4iDF .dropdown-item:hover,
.cid-uHH0lk4iDF .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH0lk4iDF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH0lk4iDF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH0lk4iDF .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH0lk4iDF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH0lk4iDF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH0lk4iDF .dropdown-menu,
.cid-uHH0lk4iDF .navbar.opened {
  background: #932020 !important;
}
.cid-uHH0lk4iDF .nav-item:focus,
.cid-uHH0lk4iDF .nav-link:focus {
  outline: none;
}
.cid-uHH0lk4iDF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH0lk4iDF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH0lk4iDF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH0lk4iDF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH0lk4iDF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH0lk4iDF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH0lk4iDF .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH0lk4iDF .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH0lk4iDF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH0lk4iDF .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH0lk4iDF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH0lk4iDF .navbar.collapsed {
  justify-content: center;
}
.cid-uHH0lk4iDF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH0lk4iDF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH0lk4iDF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH0lk4iDF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH0lk4iDF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH0lk4iDF .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-uHH0lk4iDF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH0lk4iDF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH0lk4iDF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH0lk4iDF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH0lk4iDF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH0lk4iDF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH0lk4iDF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH0lk4iDF .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-uHH0lk4iDF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH0lk4iDF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH0lk4iDF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH0lk4iDF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH0lk4iDF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH0lk4iDF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH0lk4iDF .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH0lk4iDF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH0lk4iDF .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH0lk4iDF .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH0lk4iDF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH0lk4iDF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH0lk4iDF .dropdown-item.active,
.cid-uHH0lk4iDF .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH0lk4iDF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH0lk4iDF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH0lk4iDF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH0lk4iDF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH0lk4iDF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH0lk4iDF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH0lk4iDF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH0lk4iDF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH0lk4iDF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH0lk4iDF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH0lk4iDF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH0lk4iDF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH0lk4iDF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH0lk4iDF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH0lk4iDF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH0lk4iDF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH0lk4iDF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH0lk4iDF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH0lk4iDF .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH0lk4iDF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH0lk4iDF .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-uHH0lk4iDF .navbar {
    height: 70px;
  }
  .cid-uHH0lk4iDF .navbar.opened {
    height: auto;
  }
  .cid-uHH0lk4iDF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH0liTqxJ {
  padding-top: 12rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH0liTqxJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH0liTqxJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH0liTqxJ .container {
    padding: 0 24px;
  }
}
.cid-uHH0liTqxJ .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH0liTqxJ .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH0liTqxJ .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH0liTqxJ .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH0liTqxJ .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH0liTqxJ .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH0liTqxJ .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH0liTqxJ .mbr-desc {
  color: #202020;
}
.cid-uHH0liTqxJ .mbr-section-title {
  color: #202020;
}
.cid-uHH0liTqxJ .mbr-date {
  color: #202020;
}
.cid-uHH0liTqxJ .mbr-desc,
.cid-uHH0liTqxJ .desc-wrap {
  text-align: right;
}
.cid-uHH0llkmvf {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH0llkmvf .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH0llkmvf .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH0llkmvf .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH0llkmvf .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH0llkmvf .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-uHH0llkmvf .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH0llkmvf .row {
    margin: 0 -2rem;
  }
}
.cid-uHH0llkmvf .mbr-text,
.cid-uHH0llkmvf .mbr-section-btn {
  color: #932020;
}
.cid-uHH0lml8Ki {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
.cid-uHH0lml8Ki .mbr-section-title {
  color: #932020;
}
.cid-uHH0lml8Ki .mbr-text {
  color: #932020;
}
.cid-uHH0lml8Ki .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH0lml8Ki .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH0lml8Ki .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH0lml8Ki .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH0lml8Ki .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH0lnjY5A {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH0lnjY5A .row {
  flex-direction: row-reverse;
}
.cid-uHH0lnjY5A .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH0lnjY5A .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH0lnjY5A .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH0lnjY5A .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-uHH0lnjY5A .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH0lnjY5A .row {
    margin: 0 -2rem;
  }
}
.cid-uHH0lnjY5A .mbr-text,
.cid-uHH0lnjY5A .mbr-section-btn {
  color: #932020;
}
.cid-uHH0lnjY5A .mbr-section-title {
  color: #932020;
}
.cid-uHH0lo7w0o {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHH0lo7w0o .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHH0lo7w0o .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH0lo7w0o .row {
    margin: 0 -2rem;
  }
}
.cid-uHH0lo7w0o .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHH0lo7w0o .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH0lo7w0o .col-auto {
    margin: auto;
  }
}
.cid-uHH0lo7w0o .btn {
  min-height: 60px;
}
.cid-uHH0lo7w0o .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH0lo7w0o .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH0lo7w0o .svg-top {
    width: 1000px;
  }
}
.cid-uHH0lo7w0o .form-row > .col,
.cid-uHH0lo7w0o .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHH0lo7w0o .form-control,
.cid-uHH0lo7w0o .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHH0lo7w0o .form-control::-webkit-input-placeholder,
.cid-uHH0lo7w0o .field-input::-webkit-input-placeholder,
.cid-uHH0lo7w0o .form-control::-webkit-input-placeholder,
.cid-uHH0lo7w0o .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH0lo7w0o .form-control:-moz-placeholder,
.cid-uHH0lo7w0o .field-input:-moz-placeholder,
.cid-uHH0lo7w0o .form-control:-moz-placeholder,
.cid-uHH0lo7w0o .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHH0lo7w0o .form-control:hover,
.cid-uHH0lo7w0o .field-input:hover,
.cid-uHH0lo7w0o .form-control:focus,
.cid-uHH0lo7w0o .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHH0lo7w0o .form-control:hover::-webkit-input-placeholder,
.cid-uHH0lo7w0o .field-input:hover::-webkit-input-placeholder,
.cid-uHH0lo7w0o .form-control:focus::-webkit-input-placeholder,
.cid-uHH0lo7w0o .field-input:focus::-webkit-input-placeholder,
.cid-uHH0lo7w0o .form-control:hover::-webkit-input-placeholder,
.cid-uHH0lo7w0o .field-input:hover::-webkit-input-placeholder,
.cid-uHH0lo7w0o .form-control:focus::-webkit-input-placeholder,
.cid-uHH0lo7w0o .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH0lo7w0o .form-control:hover:-moz-placeholder,
.cid-uHH0lo7w0o .field-input:hover:-moz-placeholder,
.cid-uHH0lo7w0o .form-control:focus:-moz-placeholder,
.cid-uHH0lo7w0o .field-input:focus:-moz-placeholder,
.cid-uHH0lo7w0o .form-control:hover:-moz-placeholder,
.cid-uHH0lo7w0o .field-input:hover:-moz-placeholder,
.cid-uHH0lo7w0o .form-control:focus:-moz-placeholder,
.cid-uHH0lo7w0o .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHH0lo7w0o .jq-number__spin:hover,
.cid-uHH0lo7w0o .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHH0lo7w0o .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHH0lo7w0o .jq-selectbox li,
.cid-uHH0lo7w0o .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH0lo7w0o .jq-selectbox li:hover,
.cid-uHH0lo7w0o .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH0lo7w0o .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHH0lo7w0o .jq-number__spin.minus:hover:after,
.cid-uHH0lo7w0o .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH0lo7w0o .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHH0lo7w0o .jq-number__spin.minus:after,
.cid-uHH0lo7w0o .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH0lo7w0o input::-webkit-clear-button {
  display: none;
}
.cid-uHH0lo7w0o input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHH0lo7w0o input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHH0lo7w0o input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHH0lo7w0o .mbr-text,
.cid-uHH0lo7w0o .mbr-section-btn {
  color: #932020;
}
.cid-uHH0lo7w0o .mbr-section-title {
  color: #932020;
}
.cid-uHH0lp3hGU {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH0lp3hGU svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH0lp3hGU svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH0lp3hGU svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH0lp3hGU .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH0lp3hGU .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH0lp3hGU .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH0lp3hGU .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH0lp3hGU div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH0lp3hGU .copyright {
  color: #ffffff;
}
.cid-uHH0V2qOtc .navbar-dropdown {
  position: relative !important;
}
.cid-uHH0V2qOtc .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH0V2qOtc .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH0V2qOtc .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH0V2qOtc .nav-link:hover:before {
  width: 100%;
}
.cid-uHH0V2qOtc .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH0V2qOtc .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH0V2qOtc .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-uHH0V2qOtc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH0V2qOtc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH0V2qOtc .dropdown-item:hover,
.cid-uHH0V2qOtc .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH0V2qOtc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH0V2qOtc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH0V2qOtc .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH0V2qOtc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH0V2qOtc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH0V2qOtc .dropdown-menu,
.cid-uHH0V2qOtc .navbar.opened {
  background: #932020 !important;
}
.cid-uHH0V2qOtc .nav-item:focus,
.cid-uHH0V2qOtc .nav-link:focus {
  outline: none;
}
.cid-uHH0V2qOtc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH0V2qOtc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH0V2qOtc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH0V2qOtc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH0V2qOtc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH0V2qOtc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH0V2qOtc .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH0V2qOtc .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH0V2qOtc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH0V2qOtc .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH0V2qOtc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH0V2qOtc .navbar.collapsed {
  justify-content: center;
}
.cid-uHH0V2qOtc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH0V2qOtc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH0V2qOtc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH0V2qOtc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH0V2qOtc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH0V2qOtc .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-uHH0V2qOtc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH0V2qOtc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH0V2qOtc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH0V2qOtc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH0V2qOtc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH0V2qOtc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH0V2qOtc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH0V2qOtc .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-uHH0V2qOtc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH0V2qOtc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH0V2qOtc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH0V2qOtc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH0V2qOtc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH0V2qOtc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH0V2qOtc .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH0V2qOtc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH0V2qOtc .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH0V2qOtc .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH0V2qOtc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH0V2qOtc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH0V2qOtc .dropdown-item.active,
.cid-uHH0V2qOtc .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH0V2qOtc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH0V2qOtc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH0V2qOtc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH0V2qOtc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH0V2qOtc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH0V2qOtc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH0V2qOtc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH0V2qOtc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH0V2qOtc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH0V2qOtc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH0V2qOtc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH0V2qOtc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH0V2qOtc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH0V2qOtc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH0V2qOtc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH0V2qOtc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH0V2qOtc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH0V2qOtc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH0V2qOtc .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH0V2qOtc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH0V2qOtc .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-uHH0V2qOtc .navbar {
    height: 70px;
  }
  .cid-uHH0V2qOtc .navbar.opened {
    height: auto;
  }
  .cid-uHH0V2qOtc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH0V1gFRJ {
  padding-top: 12rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH0V1gFRJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH0V1gFRJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH0V1gFRJ .container {
    padding: 0 24px;
  }
}
.cid-uHH0V1gFRJ .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH0V1gFRJ .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH0V1gFRJ .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH0V1gFRJ .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH0V1gFRJ .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH0V1gFRJ .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH0V1gFRJ .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH0V1gFRJ .mbr-desc {
  color: #202020;
}
.cid-uHH0V1gFRJ .mbr-section-title {
  color: #202020;
}
.cid-uHH0V1gFRJ .mbr-date {
  color: #202020;
}
.cid-uHH0V1gFRJ .mbr-desc,
.cid-uHH0V1gFRJ .desc-wrap {
  text-align: right;
}
.cid-uHH0V51nPY {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH0V51nPY .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH0V51nPY .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH0V51nPY .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH0V51nPY .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH0V51nPY .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-uHH0V51nPY .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH0V51nPY .row {
    margin: 0 -2rem;
  }
}
.cid-uHH0V51nPY .mbr-text,
.cid-uHH0V51nPY .mbr-section-btn {
  color: #932020;
}
.cid-uHH0V5TElU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
.cid-uHH0V5TElU .mbr-section-title {
  color: #932020;
}
.cid-uHH0V5TElU .mbr-text {
  color: #932020;
}
.cid-uHH0V5TElU .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH0V5TElU .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH0V5TElU .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH0V5TElU .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH0V5TElU .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH0V6HDmm {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH0V6HDmm .row {
  flex-direction: row-reverse;
}
.cid-uHH0V6HDmm .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH0V6HDmm .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH0V6HDmm .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH0V6HDmm .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-uHH0V6HDmm .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH0V6HDmm .row {
    margin: 0 -2rem;
  }
}
.cid-uHH0V6HDmm .mbr-text,
.cid-uHH0V6HDmm .mbr-section-btn {
  color: #932020;
}
.cid-uHH0V6HDmm .mbr-section-title {
  color: #932020;
}
.cid-uHH0V7wQ2p {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHH0V7wQ2p .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHH0V7wQ2p .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH0V7wQ2p .row {
    margin: 0 -2rem;
  }
}
.cid-uHH0V7wQ2p .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHH0V7wQ2p .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH0V7wQ2p .col-auto {
    margin: auto;
  }
}
.cid-uHH0V7wQ2p .btn {
  min-height: 60px;
}
.cid-uHH0V7wQ2p .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH0V7wQ2p .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH0V7wQ2p .svg-top {
    width: 1000px;
  }
}
.cid-uHH0V7wQ2p .form-row > .col,
.cid-uHH0V7wQ2p .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHH0V7wQ2p .form-control,
.cid-uHH0V7wQ2p .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHH0V7wQ2p .form-control::-webkit-input-placeholder,
.cid-uHH0V7wQ2p .field-input::-webkit-input-placeholder,
.cid-uHH0V7wQ2p .form-control::-webkit-input-placeholder,
.cid-uHH0V7wQ2p .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH0V7wQ2p .form-control:-moz-placeholder,
.cid-uHH0V7wQ2p .field-input:-moz-placeholder,
.cid-uHH0V7wQ2p .form-control:-moz-placeholder,
.cid-uHH0V7wQ2p .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHH0V7wQ2p .form-control:hover,
.cid-uHH0V7wQ2p .field-input:hover,
.cid-uHH0V7wQ2p .form-control:focus,
.cid-uHH0V7wQ2p .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHH0V7wQ2p .form-control:hover::-webkit-input-placeholder,
.cid-uHH0V7wQ2p .field-input:hover::-webkit-input-placeholder,
.cid-uHH0V7wQ2p .form-control:focus::-webkit-input-placeholder,
.cid-uHH0V7wQ2p .field-input:focus::-webkit-input-placeholder,
.cid-uHH0V7wQ2p .form-control:hover::-webkit-input-placeholder,
.cid-uHH0V7wQ2p .field-input:hover::-webkit-input-placeholder,
.cid-uHH0V7wQ2p .form-control:focus::-webkit-input-placeholder,
.cid-uHH0V7wQ2p .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH0V7wQ2p .form-control:hover:-moz-placeholder,
.cid-uHH0V7wQ2p .field-input:hover:-moz-placeholder,
.cid-uHH0V7wQ2p .form-control:focus:-moz-placeholder,
.cid-uHH0V7wQ2p .field-input:focus:-moz-placeholder,
.cid-uHH0V7wQ2p .form-control:hover:-moz-placeholder,
.cid-uHH0V7wQ2p .field-input:hover:-moz-placeholder,
.cid-uHH0V7wQ2p .form-control:focus:-moz-placeholder,
.cid-uHH0V7wQ2p .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHH0V7wQ2p .jq-number__spin:hover,
.cid-uHH0V7wQ2p .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHH0V7wQ2p .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHH0V7wQ2p .jq-selectbox li,
.cid-uHH0V7wQ2p .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH0V7wQ2p .jq-selectbox li:hover,
.cid-uHH0V7wQ2p .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH0V7wQ2p .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHH0V7wQ2p .jq-number__spin.minus:hover:after,
.cid-uHH0V7wQ2p .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH0V7wQ2p .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHH0V7wQ2p .jq-number__spin.minus:after,
.cid-uHH0V7wQ2p .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH0V7wQ2p input::-webkit-clear-button {
  display: none;
}
.cid-uHH0V7wQ2p input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHH0V7wQ2p input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHH0V7wQ2p input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHH0V7wQ2p .mbr-text,
.cid-uHH0V7wQ2p .mbr-section-btn {
  color: #932020;
}
.cid-uHH0V7wQ2p .mbr-section-title {
  color: #932020;
}
.cid-uHH0V8FU8M {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH0V8FU8M svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH0V8FU8M svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH0V8FU8M svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH0V8FU8M .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH0V8FU8M .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH0V8FU8M .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH0V8FU8M .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH0V8FU8M div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH0V8FU8M .copyright {
  color: #ffffff;
}
.cid-uHH1M3y3ek .navbar-dropdown {
  position: relative !important;
}
.cid-uHH1M3y3ek .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH1M3y3ek .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH1M3y3ek .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH1M3y3ek .nav-link:hover:before {
  width: 100%;
}
.cid-uHH1M3y3ek .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH1M3y3ek .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH1M3y3ek .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-uHH1M3y3ek .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH1M3y3ek .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH1M3y3ek .dropdown-item:hover,
.cid-uHH1M3y3ek .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH1M3y3ek .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH1M3y3ek .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH1M3y3ek .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH1M3y3ek .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH1M3y3ek .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH1M3y3ek .dropdown-menu,
.cid-uHH1M3y3ek .navbar.opened {
  background: #932020 !important;
}
.cid-uHH1M3y3ek .nav-item:focus,
.cid-uHH1M3y3ek .nav-link:focus {
  outline: none;
}
.cid-uHH1M3y3ek .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH1M3y3ek .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH1M3y3ek .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH1M3y3ek .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH1M3y3ek .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH1M3y3ek .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH1M3y3ek .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH1M3y3ek .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH1M3y3ek .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH1M3y3ek .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH1M3y3ek .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH1M3y3ek .navbar.collapsed {
  justify-content: center;
}
.cid-uHH1M3y3ek .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH1M3y3ek .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH1M3y3ek .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH1M3y3ek .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH1M3y3ek .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH1M3y3ek .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-uHH1M3y3ek .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH1M3y3ek .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH1M3y3ek .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH1M3y3ek .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH1M3y3ek .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH1M3y3ek .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH1M3y3ek .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH1M3y3ek .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-uHH1M3y3ek .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH1M3y3ek .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH1M3y3ek .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH1M3y3ek .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH1M3y3ek .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH1M3y3ek .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH1M3y3ek .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH1M3y3ek .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH1M3y3ek .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH1M3y3ek .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH1M3y3ek .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH1M3y3ek .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH1M3y3ek .dropdown-item.active,
.cid-uHH1M3y3ek .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH1M3y3ek .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH1M3y3ek .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH1M3y3ek .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH1M3y3ek .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH1M3y3ek .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH1M3y3ek .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH1M3y3ek ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH1M3y3ek .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH1M3y3ek button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH1M3y3ek button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH1M3y3ek button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH1M3y3ek button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH1M3y3ek button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH1M3y3ek button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH1M3y3ek nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH1M3y3ek nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH1M3y3ek nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH1M3y3ek nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH1M3y3ek .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH1M3y3ek a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH1M3y3ek .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-uHH1M3y3ek .navbar {
    height: 70px;
  }
  .cid-uHH1M3y3ek .navbar.opened {
    height: auto;
  }
  .cid-uHH1M3y3ek .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH1M2FoSs {
  padding-top: 12rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH1M2FoSs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH1M2FoSs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH1M2FoSs .container {
    padding: 0 24px;
  }
}
.cid-uHH1M2FoSs .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH1M2FoSs .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH1M2FoSs .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH1M2FoSs .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH1M2FoSs .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH1M2FoSs .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH1M2FoSs .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH1M2FoSs .mbr-desc {
  color: #202020;
}
.cid-uHH1M2FoSs .mbr-section-title {
  color: #202020;
}
.cid-uHH1M2FoSs .mbr-date {
  color: #202020;
}
.cid-uHH1M2FoSs .mbr-desc,
.cid-uHH1M2FoSs .desc-wrap {
  text-align: right;
}
.cid-uHH1M5n0Az {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH1M5n0Az .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH1M5n0Az .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH1M5n0Az .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH1M5n0Az .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH1M5n0Az .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-uHH1M5n0Az .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH1M5n0Az .row {
    margin: 0 -2rem;
  }
}
.cid-uHH1M5n0Az .mbr-text,
.cid-uHH1M5n0Az .mbr-section-btn {
  color: #932020;
}
.cid-uHH1M6nWA3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
.cid-uHH1M6nWA3 .mbr-section-title {
  color: #932020;
}
.cid-uHH1M6nWA3 .mbr-text {
  color: #932020;
}
.cid-uHH1M6nWA3 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH1M6nWA3 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH1M6nWA3 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH1M6nWA3 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH1M6nWA3 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH1M7ffZR {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH1M7ffZR .row {
  flex-direction: row-reverse;
}
.cid-uHH1M7ffZR .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH1M7ffZR .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH1M7ffZR .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH1M7ffZR .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-uHH1M7ffZR .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH1M7ffZR .row {
    margin: 0 -2rem;
  }
}
.cid-uHH1M7ffZR .mbr-text,
.cid-uHH1M7ffZR .mbr-section-btn {
  color: #932020;
}
.cid-uHH1M7ffZR .mbr-section-title {
  color: #932020;
}
.cid-uHH1M8a4PR {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHH1M8a4PR .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHH1M8a4PR .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH1M8a4PR .row {
    margin: 0 -2rem;
  }
}
.cid-uHH1M8a4PR .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHH1M8a4PR .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH1M8a4PR .col-auto {
    margin: auto;
  }
}
.cid-uHH1M8a4PR .btn {
  min-height: 60px;
}
.cid-uHH1M8a4PR .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH1M8a4PR .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH1M8a4PR .svg-top {
    width: 1000px;
  }
}
.cid-uHH1M8a4PR .form-row > .col,
.cid-uHH1M8a4PR .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHH1M8a4PR .form-control,
.cid-uHH1M8a4PR .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHH1M8a4PR .form-control::-webkit-input-placeholder,
.cid-uHH1M8a4PR .field-input::-webkit-input-placeholder,
.cid-uHH1M8a4PR .form-control::-webkit-input-placeholder,
.cid-uHH1M8a4PR .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH1M8a4PR .form-control:-moz-placeholder,
.cid-uHH1M8a4PR .field-input:-moz-placeholder,
.cid-uHH1M8a4PR .form-control:-moz-placeholder,
.cid-uHH1M8a4PR .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHH1M8a4PR .form-control:hover,
.cid-uHH1M8a4PR .field-input:hover,
.cid-uHH1M8a4PR .form-control:focus,
.cid-uHH1M8a4PR .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHH1M8a4PR .form-control:hover::-webkit-input-placeholder,
.cid-uHH1M8a4PR .field-input:hover::-webkit-input-placeholder,
.cid-uHH1M8a4PR .form-control:focus::-webkit-input-placeholder,
.cid-uHH1M8a4PR .field-input:focus::-webkit-input-placeholder,
.cid-uHH1M8a4PR .form-control:hover::-webkit-input-placeholder,
.cid-uHH1M8a4PR .field-input:hover::-webkit-input-placeholder,
.cid-uHH1M8a4PR .form-control:focus::-webkit-input-placeholder,
.cid-uHH1M8a4PR .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH1M8a4PR .form-control:hover:-moz-placeholder,
.cid-uHH1M8a4PR .field-input:hover:-moz-placeholder,
.cid-uHH1M8a4PR .form-control:focus:-moz-placeholder,
.cid-uHH1M8a4PR .field-input:focus:-moz-placeholder,
.cid-uHH1M8a4PR .form-control:hover:-moz-placeholder,
.cid-uHH1M8a4PR .field-input:hover:-moz-placeholder,
.cid-uHH1M8a4PR .form-control:focus:-moz-placeholder,
.cid-uHH1M8a4PR .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHH1M8a4PR .jq-number__spin:hover,
.cid-uHH1M8a4PR .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHH1M8a4PR .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHH1M8a4PR .jq-selectbox li,
.cid-uHH1M8a4PR .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH1M8a4PR .jq-selectbox li:hover,
.cid-uHH1M8a4PR .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH1M8a4PR .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHH1M8a4PR .jq-number__spin.minus:hover:after,
.cid-uHH1M8a4PR .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH1M8a4PR .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHH1M8a4PR .jq-number__spin.minus:after,
.cid-uHH1M8a4PR .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH1M8a4PR input::-webkit-clear-button {
  display: none;
}
.cid-uHH1M8a4PR input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHH1M8a4PR input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHH1M8a4PR input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHH1M8a4PR .mbr-text,
.cid-uHH1M8a4PR .mbr-section-btn {
  color: #932020;
}
.cid-uHH1M8a4PR .mbr-section-title {
  color: #932020;
}
.cid-uHH1M98xOM {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH1M98xOM svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH1M98xOM svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH1M98xOM svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH1M98xOM .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH1M98xOM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH1M98xOM .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH1M98xOM .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH1M98xOM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH1M98xOM .copyright {
  color: #ffffff;
}
.cid-uHH2xVeP8e .navbar-dropdown {
  position: relative !important;
}
.cid-uHH2xVeP8e .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH2xVeP8e .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH2xVeP8e .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH2xVeP8e .nav-link:hover:before {
  width: 100%;
}
.cid-uHH2xVeP8e .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH2xVeP8e .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH2xVeP8e .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-uHH2xVeP8e .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH2xVeP8e .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH2xVeP8e .dropdown-item:hover,
.cid-uHH2xVeP8e .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH2xVeP8e .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH2xVeP8e .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH2xVeP8e .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH2xVeP8e .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH2xVeP8e .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH2xVeP8e .dropdown-menu,
.cid-uHH2xVeP8e .navbar.opened {
  background: #932020 !important;
}
.cid-uHH2xVeP8e .nav-item:focus,
.cid-uHH2xVeP8e .nav-link:focus {
  outline: none;
}
.cid-uHH2xVeP8e .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH2xVeP8e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH2xVeP8e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH2xVeP8e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH2xVeP8e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH2xVeP8e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH2xVeP8e .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH2xVeP8e .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH2xVeP8e .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH2xVeP8e .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH2xVeP8e .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH2xVeP8e .navbar.collapsed {
  justify-content: center;
}
.cid-uHH2xVeP8e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH2xVeP8e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH2xVeP8e .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH2xVeP8e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH2xVeP8e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH2xVeP8e .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-uHH2xVeP8e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH2xVeP8e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH2xVeP8e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH2xVeP8e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH2xVeP8e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH2xVeP8e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH2xVeP8e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH2xVeP8e .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-uHH2xVeP8e .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH2xVeP8e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH2xVeP8e .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH2xVeP8e .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH2xVeP8e .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH2xVeP8e .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH2xVeP8e .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH2xVeP8e .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH2xVeP8e .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH2xVeP8e .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH2xVeP8e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH2xVeP8e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH2xVeP8e .dropdown-item.active,
.cid-uHH2xVeP8e .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH2xVeP8e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH2xVeP8e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH2xVeP8e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH2xVeP8e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH2xVeP8e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH2xVeP8e .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH2xVeP8e ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH2xVeP8e .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH2xVeP8e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH2xVeP8e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH2xVeP8e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH2xVeP8e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH2xVeP8e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH2xVeP8e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH2xVeP8e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH2xVeP8e nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH2xVeP8e nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH2xVeP8e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH2xVeP8e .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH2xVeP8e a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH2xVeP8e .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-uHH2xVeP8e .navbar {
    height: 70px;
  }
  .cid-uHH2xVeP8e .navbar.opened {
    height: auto;
  }
  .cid-uHH2xVeP8e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH2xUm81F {
  padding-top: 12rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH2xUm81F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH2xUm81F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH2xUm81F .container {
    padding: 0 24px;
  }
}
.cid-uHH2xUm81F .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH2xUm81F .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH2xUm81F .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH2xUm81F .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH2xUm81F .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH2xUm81F .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH2xUm81F .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH2xUm81F .mbr-desc {
  color: #202020;
}
.cid-uHH2xUm81F .mbr-section-title {
  color: #202020;
}
.cid-uHH2xUm81F .mbr-date {
  color: #202020;
}
.cid-uHH2xUm81F .mbr-desc,
.cid-uHH2xUm81F .desc-wrap {
  text-align: right;
}
.cid-uHH2xWjHUZ {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH2xWjHUZ .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH2xWjHUZ .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH2xWjHUZ .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH2xWjHUZ .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH2xWjHUZ .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-uHH2xWjHUZ .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH2xWjHUZ .row {
    margin: 0 -2rem;
  }
}
.cid-uHH2xWjHUZ .mbr-text,
.cid-uHH2xWjHUZ .mbr-section-btn {
  color: #932020;
}
.cid-uHH2xX300n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
.cid-uHH2xX300n .mbr-section-title {
  color: #932020;
}
.cid-uHH2xX300n .mbr-text {
  color: #932020;
}
.cid-uHH2xX300n .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH2xX300n .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH2xX300n .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH2xX300n .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH2xX300n .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH2xXJGo0 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH2xXJGo0 .row {
  flex-direction: row-reverse;
}
.cid-uHH2xXJGo0 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH2xXJGo0 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH2xXJGo0 .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH2xXJGo0 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-uHH2xXJGo0 .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH2xXJGo0 .row {
    margin: 0 -2rem;
  }
}
.cid-uHH2xXJGo0 .mbr-text,
.cid-uHH2xXJGo0 .mbr-section-btn {
  color: #932020;
}
.cid-uHH2xXJGo0 .mbr-section-title {
  color: #932020;
}
.cid-uHH2xYW031 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHH2xYW031 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHH2xYW031 .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH2xYW031 .row {
    margin: 0 -2rem;
  }
}
.cid-uHH2xYW031 .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHH2xYW031 .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH2xYW031 .col-auto {
    margin: auto;
  }
}
.cid-uHH2xYW031 .btn {
  min-height: 60px;
}
.cid-uHH2xYW031 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH2xYW031 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH2xYW031 .svg-top {
    width: 1000px;
  }
}
.cid-uHH2xYW031 .form-row > .col,
.cid-uHH2xYW031 .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHH2xYW031 .form-control,
.cid-uHH2xYW031 .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHH2xYW031 .form-control::-webkit-input-placeholder,
.cid-uHH2xYW031 .field-input::-webkit-input-placeholder,
.cid-uHH2xYW031 .form-control::-webkit-input-placeholder,
.cid-uHH2xYW031 .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH2xYW031 .form-control:-moz-placeholder,
.cid-uHH2xYW031 .field-input:-moz-placeholder,
.cid-uHH2xYW031 .form-control:-moz-placeholder,
.cid-uHH2xYW031 .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHH2xYW031 .form-control:hover,
.cid-uHH2xYW031 .field-input:hover,
.cid-uHH2xYW031 .form-control:focus,
.cid-uHH2xYW031 .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHH2xYW031 .form-control:hover::-webkit-input-placeholder,
.cid-uHH2xYW031 .field-input:hover::-webkit-input-placeholder,
.cid-uHH2xYW031 .form-control:focus::-webkit-input-placeholder,
.cid-uHH2xYW031 .field-input:focus::-webkit-input-placeholder,
.cid-uHH2xYW031 .form-control:hover::-webkit-input-placeholder,
.cid-uHH2xYW031 .field-input:hover::-webkit-input-placeholder,
.cid-uHH2xYW031 .form-control:focus::-webkit-input-placeholder,
.cid-uHH2xYW031 .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH2xYW031 .form-control:hover:-moz-placeholder,
.cid-uHH2xYW031 .field-input:hover:-moz-placeholder,
.cid-uHH2xYW031 .form-control:focus:-moz-placeholder,
.cid-uHH2xYW031 .field-input:focus:-moz-placeholder,
.cid-uHH2xYW031 .form-control:hover:-moz-placeholder,
.cid-uHH2xYW031 .field-input:hover:-moz-placeholder,
.cid-uHH2xYW031 .form-control:focus:-moz-placeholder,
.cid-uHH2xYW031 .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHH2xYW031 .jq-number__spin:hover,
.cid-uHH2xYW031 .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHH2xYW031 .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHH2xYW031 .jq-selectbox li,
.cid-uHH2xYW031 .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH2xYW031 .jq-selectbox li:hover,
.cid-uHH2xYW031 .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH2xYW031 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHH2xYW031 .jq-number__spin.minus:hover:after,
.cid-uHH2xYW031 .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH2xYW031 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHH2xYW031 .jq-number__spin.minus:after,
.cid-uHH2xYW031 .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH2xYW031 input::-webkit-clear-button {
  display: none;
}
.cid-uHH2xYW031 input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHH2xYW031 input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHH2xYW031 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHH2xYW031 .mbr-text,
.cid-uHH2xYW031 .mbr-section-btn {
  color: #932020;
}
.cid-uHH2xYW031 .mbr-section-title {
  color: #932020;
}
.cid-uHH2y0jlVY {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH2y0jlVY svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH2y0jlVY svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH2y0jlVY svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH2y0jlVY .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH2y0jlVY .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH2y0jlVY .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH2y0jlVY .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH2y0jlVY div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH2y0jlVY .copyright {
  color: #ffffff;
}
.cid-uHH3cROuDS .navbar-dropdown {
  position: relative !important;
}
.cid-uHH3cROuDS .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH3cROuDS .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH3cROuDS .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH3cROuDS .nav-link:hover:before {
  width: 100%;
}
.cid-uHH3cROuDS .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH3cROuDS .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH3cROuDS .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-uHH3cROuDS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH3cROuDS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH3cROuDS .dropdown-item:hover,
.cid-uHH3cROuDS .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH3cROuDS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH3cROuDS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH3cROuDS .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH3cROuDS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH3cROuDS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH3cROuDS .dropdown-menu,
.cid-uHH3cROuDS .navbar.opened {
  background: #932020 !important;
}
.cid-uHH3cROuDS .nav-item:focus,
.cid-uHH3cROuDS .nav-link:focus {
  outline: none;
}
.cid-uHH3cROuDS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH3cROuDS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH3cROuDS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH3cROuDS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH3cROuDS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH3cROuDS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH3cROuDS .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH3cROuDS .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH3cROuDS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH3cROuDS .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH3cROuDS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH3cROuDS .navbar.collapsed {
  justify-content: center;
}
.cid-uHH3cROuDS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH3cROuDS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH3cROuDS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH3cROuDS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH3cROuDS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH3cROuDS .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-uHH3cROuDS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH3cROuDS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH3cROuDS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH3cROuDS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH3cROuDS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH3cROuDS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH3cROuDS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH3cROuDS .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-uHH3cROuDS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH3cROuDS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH3cROuDS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH3cROuDS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH3cROuDS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH3cROuDS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH3cROuDS .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH3cROuDS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH3cROuDS .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH3cROuDS .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH3cROuDS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH3cROuDS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH3cROuDS .dropdown-item.active,
.cid-uHH3cROuDS .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH3cROuDS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH3cROuDS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH3cROuDS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH3cROuDS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH3cROuDS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH3cROuDS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH3cROuDS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH3cROuDS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH3cROuDS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH3cROuDS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH3cROuDS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH3cROuDS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH3cROuDS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH3cROuDS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH3cROuDS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH3cROuDS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH3cROuDS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH3cROuDS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH3cROuDS .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH3cROuDS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH3cROuDS .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-uHH3cROuDS .navbar {
    height: 70px;
  }
  .cid-uHH3cROuDS .navbar.opened {
    height: auto;
  }
  .cid-uHH3cROuDS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH3cQVXKi {
  padding-top: 12rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH3cQVXKi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH3cQVXKi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH3cQVXKi .container {
    padding: 0 24px;
  }
}
.cid-uHH3cQVXKi .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH3cQVXKi .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH3cQVXKi .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH3cQVXKi .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH3cQVXKi .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH3cQVXKi .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH3cQVXKi .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH3cQVXKi .mbr-desc {
  color: #202020;
}
.cid-uHH3cQVXKi .mbr-section-title {
  color: #202020;
}
.cid-uHH3cQVXKi .mbr-date {
  color: #202020;
}
.cid-uHH3cQVXKi .mbr-desc,
.cid-uHH3cQVXKi .desc-wrap {
  text-align: right;
}
.cid-uHH3cTgDCN {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH3cTgDCN .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH3cTgDCN .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH3cTgDCN .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH3cTgDCN .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH3cTgDCN .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-uHH3cTgDCN .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH3cTgDCN .row {
    margin: 0 -2rem;
  }
}
.cid-uHH3cTgDCN .mbr-text,
.cid-uHH3cTgDCN .mbr-section-btn {
  color: #932020;
}
.cid-uHH3cU94yX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
.cid-uHH3cU94yX .mbr-section-title {
  color: #932020;
}
.cid-uHH3cU94yX .mbr-text {
  color: #932020;
}
.cid-uHH3cU94yX .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH3cU94yX .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH3cU94yX .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH3cU94yX .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH3cU94yX .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH3cViEQu {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH3cViEQu .row {
  flex-direction: row-reverse;
}
.cid-uHH3cViEQu .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH3cViEQu .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH3cViEQu .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH3cViEQu .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-uHH3cViEQu .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH3cViEQu .row {
    margin: 0 -2rem;
  }
}
.cid-uHH3cViEQu .mbr-text,
.cid-uHH3cViEQu .mbr-section-btn {
  color: #932020;
}
.cid-uHH3cViEQu .mbr-section-title {
  color: #932020;
}
.cid-uHH3cW4bqc {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHH3cW4bqc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHH3cW4bqc .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH3cW4bqc .row {
    margin: 0 -2rem;
  }
}
.cid-uHH3cW4bqc .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHH3cW4bqc .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH3cW4bqc .col-auto {
    margin: auto;
  }
}
.cid-uHH3cW4bqc .btn {
  min-height: 60px;
}
.cid-uHH3cW4bqc .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH3cW4bqc .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH3cW4bqc .svg-top {
    width: 1000px;
  }
}
.cid-uHH3cW4bqc .form-row > .col,
.cid-uHH3cW4bqc .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHH3cW4bqc .form-control,
.cid-uHH3cW4bqc .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHH3cW4bqc .form-control::-webkit-input-placeholder,
.cid-uHH3cW4bqc .field-input::-webkit-input-placeholder,
.cid-uHH3cW4bqc .form-control::-webkit-input-placeholder,
.cid-uHH3cW4bqc .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH3cW4bqc .form-control:-moz-placeholder,
.cid-uHH3cW4bqc .field-input:-moz-placeholder,
.cid-uHH3cW4bqc .form-control:-moz-placeholder,
.cid-uHH3cW4bqc .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHH3cW4bqc .form-control:hover,
.cid-uHH3cW4bqc .field-input:hover,
.cid-uHH3cW4bqc .form-control:focus,
.cid-uHH3cW4bqc .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHH3cW4bqc .form-control:hover::-webkit-input-placeholder,
.cid-uHH3cW4bqc .field-input:hover::-webkit-input-placeholder,
.cid-uHH3cW4bqc .form-control:focus::-webkit-input-placeholder,
.cid-uHH3cW4bqc .field-input:focus::-webkit-input-placeholder,
.cid-uHH3cW4bqc .form-control:hover::-webkit-input-placeholder,
.cid-uHH3cW4bqc .field-input:hover::-webkit-input-placeholder,
.cid-uHH3cW4bqc .form-control:focus::-webkit-input-placeholder,
.cid-uHH3cW4bqc .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH3cW4bqc .form-control:hover:-moz-placeholder,
.cid-uHH3cW4bqc .field-input:hover:-moz-placeholder,
.cid-uHH3cW4bqc .form-control:focus:-moz-placeholder,
.cid-uHH3cW4bqc .field-input:focus:-moz-placeholder,
.cid-uHH3cW4bqc .form-control:hover:-moz-placeholder,
.cid-uHH3cW4bqc .field-input:hover:-moz-placeholder,
.cid-uHH3cW4bqc .form-control:focus:-moz-placeholder,
.cid-uHH3cW4bqc .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHH3cW4bqc .jq-number__spin:hover,
.cid-uHH3cW4bqc .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHH3cW4bqc .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHH3cW4bqc .jq-selectbox li,
.cid-uHH3cW4bqc .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH3cW4bqc .jq-selectbox li:hover,
.cid-uHH3cW4bqc .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH3cW4bqc .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHH3cW4bqc .jq-number__spin.minus:hover:after,
.cid-uHH3cW4bqc .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH3cW4bqc .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHH3cW4bqc .jq-number__spin.minus:after,
.cid-uHH3cW4bqc .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH3cW4bqc input::-webkit-clear-button {
  display: none;
}
.cid-uHH3cW4bqc input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHH3cW4bqc input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHH3cW4bqc input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHH3cW4bqc .mbr-text,
.cid-uHH3cW4bqc .mbr-section-btn {
  color: #932020;
}
.cid-uHH3cW4bqc .mbr-section-title {
  color: #932020;
}
.cid-uHH3cWYXLh {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH3cWYXLh svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH3cWYXLh svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH3cWYXLh svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH3cWYXLh .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH3cWYXLh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH3cWYXLh .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH3cWYXLh .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH3cWYXLh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH3cWYXLh .copyright {
  color: #ffffff;
}
.cid-uHH3LTDdCj .navbar-dropdown {
  position: relative !important;
}
.cid-uHH3LTDdCj .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH3LTDdCj .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH3LTDdCj .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH3LTDdCj .nav-link:hover:before {
  width: 100%;
}
.cid-uHH3LTDdCj .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH3LTDdCj .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH3LTDdCj .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-uHH3LTDdCj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH3LTDdCj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH3LTDdCj .dropdown-item:hover,
.cid-uHH3LTDdCj .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH3LTDdCj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH3LTDdCj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH3LTDdCj .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH3LTDdCj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH3LTDdCj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH3LTDdCj .dropdown-menu,
.cid-uHH3LTDdCj .navbar.opened {
  background: #932020 !important;
}
.cid-uHH3LTDdCj .nav-item:focus,
.cid-uHH3LTDdCj .nav-link:focus {
  outline: none;
}
.cid-uHH3LTDdCj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH3LTDdCj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH3LTDdCj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH3LTDdCj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH3LTDdCj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH3LTDdCj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH3LTDdCj .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH3LTDdCj .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH3LTDdCj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH3LTDdCj .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH3LTDdCj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH3LTDdCj .navbar.collapsed {
  justify-content: center;
}
.cid-uHH3LTDdCj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH3LTDdCj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH3LTDdCj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH3LTDdCj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH3LTDdCj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH3LTDdCj .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-uHH3LTDdCj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH3LTDdCj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH3LTDdCj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH3LTDdCj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH3LTDdCj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH3LTDdCj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH3LTDdCj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH3LTDdCj .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-uHH3LTDdCj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH3LTDdCj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH3LTDdCj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH3LTDdCj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH3LTDdCj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH3LTDdCj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH3LTDdCj .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH3LTDdCj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH3LTDdCj .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH3LTDdCj .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH3LTDdCj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH3LTDdCj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH3LTDdCj .dropdown-item.active,
.cid-uHH3LTDdCj .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH3LTDdCj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH3LTDdCj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH3LTDdCj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH3LTDdCj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH3LTDdCj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH3LTDdCj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH3LTDdCj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH3LTDdCj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH3LTDdCj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH3LTDdCj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH3LTDdCj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH3LTDdCj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH3LTDdCj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH3LTDdCj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH3LTDdCj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH3LTDdCj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH3LTDdCj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH3LTDdCj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH3LTDdCj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH3LTDdCj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH3LTDdCj .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-uHH3LTDdCj .navbar {
    height: 70px;
  }
  .cid-uHH3LTDdCj .navbar.opened {
    height: auto;
  }
  .cid-uHH3LTDdCj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH3LSMYhr {
  padding-top: 12rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH3LSMYhr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH3LSMYhr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH3LSMYhr .container {
    padding: 0 24px;
  }
}
.cid-uHH3LSMYhr .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH3LSMYhr .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH3LSMYhr .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH3LSMYhr .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH3LSMYhr .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH3LSMYhr .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH3LSMYhr .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH3LSMYhr .mbr-desc {
  color: #202020;
}
.cid-uHH3LSMYhr .mbr-section-title {
  color: #202020;
}
.cid-uHH3LSMYhr .mbr-date {
  color: #202020;
}
.cid-uHH3LSMYhr .mbr-desc,
.cid-uHH3LSMYhr .desc-wrap {
  text-align: right;
}
.cid-uHH3LVkb7U {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH3LVkb7U .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH3LVkb7U .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH3LVkb7U .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH3LVkb7U .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH3LVkb7U .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-uHH3LVkb7U .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH3LVkb7U .row {
    margin: 0 -2rem;
  }
}
.cid-uHH3LVkb7U .mbr-text,
.cid-uHH3LVkb7U .mbr-section-btn {
  color: #932020;
}
.cid-uHH3LWqxYT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
.cid-uHH3LWqxYT .mbr-section-title {
  color: #932020;
}
.cid-uHH3LWqxYT .mbr-text {
  color: #932020;
}
.cid-uHH3LWqxYT .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH3LWqxYT .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH3LWqxYT .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH3LWqxYT .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH3LWqxYT .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH3LXcsCD {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH3LXcsCD .row {
  flex-direction: row-reverse;
}
.cid-uHH3LXcsCD .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH3LXcsCD .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH3LXcsCD .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH3LXcsCD .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-uHH3LXcsCD .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH3LXcsCD .row {
    margin: 0 -2rem;
  }
}
.cid-uHH3LXcsCD .mbr-text,
.cid-uHH3LXcsCD .mbr-section-btn {
  color: #932020;
}
.cid-uHH3LXcsCD .mbr-section-title {
  color: #932020;
}
.cid-uHH3LXZWPp {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHH3LXZWPp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHH3LXZWPp .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH3LXZWPp .row {
    margin: 0 -2rem;
  }
}
.cid-uHH3LXZWPp .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHH3LXZWPp .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH3LXZWPp .col-auto {
    margin: auto;
  }
}
.cid-uHH3LXZWPp .btn {
  min-height: 60px;
}
.cid-uHH3LXZWPp .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH3LXZWPp .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH3LXZWPp .svg-top {
    width: 1000px;
  }
}
.cid-uHH3LXZWPp .form-row > .col,
.cid-uHH3LXZWPp .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHH3LXZWPp .form-control,
.cid-uHH3LXZWPp .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHH3LXZWPp .form-control::-webkit-input-placeholder,
.cid-uHH3LXZWPp .field-input::-webkit-input-placeholder,
.cid-uHH3LXZWPp .form-control::-webkit-input-placeholder,
.cid-uHH3LXZWPp .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH3LXZWPp .form-control:-moz-placeholder,
.cid-uHH3LXZWPp .field-input:-moz-placeholder,
.cid-uHH3LXZWPp .form-control:-moz-placeholder,
.cid-uHH3LXZWPp .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHH3LXZWPp .form-control:hover,
.cid-uHH3LXZWPp .field-input:hover,
.cid-uHH3LXZWPp .form-control:focus,
.cid-uHH3LXZWPp .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHH3LXZWPp .form-control:hover::-webkit-input-placeholder,
.cid-uHH3LXZWPp .field-input:hover::-webkit-input-placeholder,
.cid-uHH3LXZWPp .form-control:focus::-webkit-input-placeholder,
.cid-uHH3LXZWPp .field-input:focus::-webkit-input-placeholder,
.cid-uHH3LXZWPp .form-control:hover::-webkit-input-placeholder,
.cid-uHH3LXZWPp .field-input:hover::-webkit-input-placeholder,
.cid-uHH3LXZWPp .form-control:focus::-webkit-input-placeholder,
.cid-uHH3LXZWPp .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH3LXZWPp .form-control:hover:-moz-placeholder,
.cid-uHH3LXZWPp .field-input:hover:-moz-placeholder,
.cid-uHH3LXZWPp .form-control:focus:-moz-placeholder,
.cid-uHH3LXZWPp .field-input:focus:-moz-placeholder,
.cid-uHH3LXZWPp .form-control:hover:-moz-placeholder,
.cid-uHH3LXZWPp .field-input:hover:-moz-placeholder,
.cid-uHH3LXZWPp .form-control:focus:-moz-placeholder,
.cid-uHH3LXZWPp .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHH3LXZWPp .jq-number__spin:hover,
.cid-uHH3LXZWPp .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHH3LXZWPp .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHH3LXZWPp .jq-selectbox li,
.cid-uHH3LXZWPp .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH3LXZWPp .jq-selectbox li:hover,
.cid-uHH3LXZWPp .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH3LXZWPp .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHH3LXZWPp .jq-number__spin.minus:hover:after,
.cid-uHH3LXZWPp .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH3LXZWPp .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHH3LXZWPp .jq-number__spin.minus:after,
.cid-uHH3LXZWPp .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH3LXZWPp input::-webkit-clear-button {
  display: none;
}
.cid-uHH3LXZWPp input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHH3LXZWPp input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHH3LXZWPp input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHH3LXZWPp .mbr-text,
.cid-uHH3LXZWPp .mbr-section-btn {
  color: #932020;
}
.cid-uHH3LXZWPp .mbr-section-title {
  color: #932020;
}
.cid-uHH3LYX37N {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH3LYX37N svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH3LYX37N svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH3LYX37N svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH3LYX37N .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH3LYX37N .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH3LYX37N .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH3LYX37N .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH3LYX37N div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH3LYX37N .copyright {
  color: #ffffff;
}
.cid-uHH4pPHMjV .navbar-dropdown {
  position: relative !important;
}
.cid-uHH4pPHMjV .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH4pPHMjV .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH4pPHMjV .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH4pPHMjV .nav-link:hover:before {
  width: 100%;
}
.cid-uHH4pPHMjV .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH4pPHMjV .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH4pPHMjV .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-uHH4pPHMjV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH4pPHMjV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH4pPHMjV .dropdown-item:hover,
.cid-uHH4pPHMjV .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH4pPHMjV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH4pPHMjV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH4pPHMjV .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH4pPHMjV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH4pPHMjV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH4pPHMjV .dropdown-menu,
.cid-uHH4pPHMjV .navbar.opened {
  background: #932020 !important;
}
.cid-uHH4pPHMjV .nav-item:focus,
.cid-uHH4pPHMjV .nav-link:focus {
  outline: none;
}
.cid-uHH4pPHMjV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH4pPHMjV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH4pPHMjV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH4pPHMjV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH4pPHMjV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH4pPHMjV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH4pPHMjV .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH4pPHMjV .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH4pPHMjV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH4pPHMjV .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH4pPHMjV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH4pPHMjV .navbar.collapsed {
  justify-content: center;
}
.cid-uHH4pPHMjV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH4pPHMjV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH4pPHMjV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH4pPHMjV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH4pPHMjV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH4pPHMjV .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-uHH4pPHMjV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH4pPHMjV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH4pPHMjV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH4pPHMjV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH4pPHMjV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH4pPHMjV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH4pPHMjV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH4pPHMjV .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-uHH4pPHMjV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH4pPHMjV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH4pPHMjV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH4pPHMjV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH4pPHMjV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH4pPHMjV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH4pPHMjV .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH4pPHMjV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH4pPHMjV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH4pPHMjV .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH4pPHMjV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH4pPHMjV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH4pPHMjV .dropdown-item.active,
.cid-uHH4pPHMjV .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH4pPHMjV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH4pPHMjV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH4pPHMjV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH4pPHMjV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH4pPHMjV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH4pPHMjV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH4pPHMjV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH4pPHMjV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH4pPHMjV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH4pPHMjV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH4pPHMjV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH4pPHMjV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH4pPHMjV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH4pPHMjV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH4pPHMjV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH4pPHMjV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH4pPHMjV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH4pPHMjV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH4pPHMjV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH4pPHMjV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH4pPHMjV .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-uHH4pPHMjV .navbar {
    height: 70px;
  }
  .cid-uHH4pPHMjV .navbar.opened {
    height: auto;
  }
  .cid-uHH4pPHMjV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH4pON75b {
  padding-top: 12rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH4pON75b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH4pON75b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH4pON75b .container {
    padding: 0 24px;
  }
}
.cid-uHH4pON75b .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH4pON75b .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH4pON75b .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH4pON75b .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH4pON75b .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH4pON75b .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH4pON75b .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH4pON75b .mbr-desc {
  color: #202020;
}
.cid-uHH4pON75b .mbr-section-title {
  color: #202020;
}
.cid-uHH4pON75b .mbr-date {
  color: #202020;
}
.cid-uHH4pON75b .mbr-desc,
.cid-uHH4pON75b .desc-wrap {
  text-align: right;
}
.cid-uHH4pR3Svy {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH4pR3Svy .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH4pR3Svy .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH4pR3Svy .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH4pR3Svy .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH4pR3Svy .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-uHH4pR3Svy .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH4pR3Svy .row {
    margin: 0 -2rem;
  }
}
.cid-uHH4pR3Svy .mbr-text,
.cid-uHH4pR3Svy .mbr-section-btn {
  color: #932020;
}
.cid-uHH4pRQ3Xy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
.cid-uHH4pRQ3Xy .mbr-section-title {
  color: #932020;
}
.cid-uHH4pRQ3Xy .mbr-text {
  color: #932020;
}
.cid-uHH4pRQ3Xy .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH4pRQ3Xy .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH4pRQ3Xy .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH4pRQ3Xy .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH4pRQ3Xy .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH4pSzE7t {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH4pSzE7t .row {
  flex-direction: row-reverse;
}
.cid-uHH4pSzE7t .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH4pSzE7t .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH4pSzE7t .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH4pSzE7t .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-uHH4pSzE7t .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH4pSzE7t .row {
    margin: 0 -2rem;
  }
}
.cid-uHH4pSzE7t .mbr-text,
.cid-uHH4pSzE7t .mbr-section-btn {
  color: #932020;
}
.cid-uHH4pSzE7t .mbr-section-title {
  color: #932020;
}
.cid-uHH4pTNxed {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHH4pTNxed .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHH4pTNxed .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH4pTNxed .row {
    margin: 0 -2rem;
  }
}
.cid-uHH4pTNxed .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHH4pTNxed .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH4pTNxed .col-auto {
    margin: auto;
  }
}
.cid-uHH4pTNxed .btn {
  min-height: 60px;
}
.cid-uHH4pTNxed .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH4pTNxed .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH4pTNxed .svg-top {
    width: 1000px;
  }
}
.cid-uHH4pTNxed .form-row > .col,
.cid-uHH4pTNxed .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHH4pTNxed .form-control,
.cid-uHH4pTNxed .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHH4pTNxed .form-control::-webkit-input-placeholder,
.cid-uHH4pTNxed .field-input::-webkit-input-placeholder,
.cid-uHH4pTNxed .form-control::-webkit-input-placeholder,
.cid-uHH4pTNxed .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH4pTNxed .form-control:-moz-placeholder,
.cid-uHH4pTNxed .field-input:-moz-placeholder,
.cid-uHH4pTNxed .form-control:-moz-placeholder,
.cid-uHH4pTNxed .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHH4pTNxed .form-control:hover,
.cid-uHH4pTNxed .field-input:hover,
.cid-uHH4pTNxed .form-control:focus,
.cid-uHH4pTNxed .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHH4pTNxed .form-control:hover::-webkit-input-placeholder,
.cid-uHH4pTNxed .field-input:hover::-webkit-input-placeholder,
.cid-uHH4pTNxed .form-control:focus::-webkit-input-placeholder,
.cid-uHH4pTNxed .field-input:focus::-webkit-input-placeholder,
.cid-uHH4pTNxed .form-control:hover::-webkit-input-placeholder,
.cid-uHH4pTNxed .field-input:hover::-webkit-input-placeholder,
.cid-uHH4pTNxed .form-control:focus::-webkit-input-placeholder,
.cid-uHH4pTNxed .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH4pTNxed .form-control:hover:-moz-placeholder,
.cid-uHH4pTNxed .field-input:hover:-moz-placeholder,
.cid-uHH4pTNxed .form-control:focus:-moz-placeholder,
.cid-uHH4pTNxed .field-input:focus:-moz-placeholder,
.cid-uHH4pTNxed .form-control:hover:-moz-placeholder,
.cid-uHH4pTNxed .field-input:hover:-moz-placeholder,
.cid-uHH4pTNxed .form-control:focus:-moz-placeholder,
.cid-uHH4pTNxed .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHH4pTNxed .jq-number__spin:hover,
.cid-uHH4pTNxed .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHH4pTNxed .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHH4pTNxed .jq-selectbox li,
.cid-uHH4pTNxed .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH4pTNxed .jq-selectbox li:hover,
.cid-uHH4pTNxed .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH4pTNxed .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHH4pTNxed .jq-number__spin.minus:hover:after,
.cid-uHH4pTNxed .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH4pTNxed .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHH4pTNxed .jq-number__spin.minus:after,
.cid-uHH4pTNxed .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH4pTNxed input::-webkit-clear-button {
  display: none;
}
.cid-uHH4pTNxed input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHH4pTNxed input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHH4pTNxed input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHH4pTNxed .mbr-text,
.cid-uHH4pTNxed .mbr-section-btn {
  color: #932020;
}
.cid-uHH4pTNxed .mbr-section-title {
  color: #932020;
}
.cid-uHH4pUTSX1 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH4pUTSX1 svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH4pUTSX1 svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH4pUTSX1 svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH4pUTSX1 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH4pUTSX1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH4pUTSX1 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH4pUTSX1 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH4pUTSX1 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH4pUTSX1 .copyright {
  color: #ffffff;
}
.cid-uHH5fWJstO .navbar-dropdown {
  position: relative !important;
}
.cid-uHH5fWJstO .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH5fWJstO .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH5fWJstO .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH5fWJstO .nav-link:hover:before {
  width: 100%;
}
.cid-uHH5fWJstO .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH5fWJstO .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH5fWJstO .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-uHH5fWJstO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH5fWJstO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH5fWJstO .dropdown-item:hover,
.cid-uHH5fWJstO .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH5fWJstO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH5fWJstO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH5fWJstO .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH5fWJstO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH5fWJstO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH5fWJstO .dropdown-menu,
.cid-uHH5fWJstO .navbar.opened {
  background: #932020 !important;
}
.cid-uHH5fWJstO .nav-item:focus,
.cid-uHH5fWJstO .nav-link:focus {
  outline: none;
}
.cid-uHH5fWJstO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH5fWJstO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH5fWJstO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH5fWJstO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH5fWJstO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH5fWJstO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH5fWJstO .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH5fWJstO .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH5fWJstO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH5fWJstO .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH5fWJstO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH5fWJstO .navbar.collapsed {
  justify-content: center;
}
.cid-uHH5fWJstO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH5fWJstO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH5fWJstO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH5fWJstO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH5fWJstO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH5fWJstO .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-uHH5fWJstO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH5fWJstO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH5fWJstO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH5fWJstO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH5fWJstO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH5fWJstO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH5fWJstO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH5fWJstO .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-uHH5fWJstO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH5fWJstO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH5fWJstO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH5fWJstO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH5fWJstO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH5fWJstO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH5fWJstO .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH5fWJstO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH5fWJstO .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH5fWJstO .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH5fWJstO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH5fWJstO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH5fWJstO .dropdown-item.active,
.cid-uHH5fWJstO .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH5fWJstO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH5fWJstO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH5fWJstO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH5fWJstO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH5fWJstO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH5fWJstO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH5fWJstO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH5fWJstO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH5fWJstO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH5fWJstO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH5fWJstO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH5fWJstO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH5fWJstO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH5fWJstO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH5fWJstO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH5fWJstO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH5fWJstO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH5fWJstO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH5fWJstO .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH5fWJstO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH5fWJstO .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-uHH5fWJstO .navbar {
    height: 70px;
  }
  .cid-uHH5fWJstO .navbar.opened {
    height: auto;
  }
  .cid-uHH5fWJstO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH5fVTZSk {
  padding-top: 12rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH5fVTZSk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH5fVTZSk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH5fVTZSk .container {
    padding: 0 24px;
  }
}
.cid-uHH5fVTZSk .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH5fVTZSk .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH5fVTZSk .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH5fVTZSk .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH5fVTZSk .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH5fVTZSk .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH5fVTZSk .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH5fVTZSk .mbr-desc {
  color: #202020;
}
.cid-uHH5fVTZSk .mbr-section-title {
  color: #202020;
}
.cid-uHH5fVTZSk .mbr-date {
  color: #202020;
}
.cid-uHH5fVTZSk .mbr-desc,
.cid-uHH5fVTZSk .desc-wrap {
  text-align: right;
}
.cid-uHH5fY9igT {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH5fY9igT .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH5fY9igT .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH5fY9igT .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH5fY9igT .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH5fY9igT .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-uHH5fY9igT .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH5fY9igT .row {
    margin: 0 -2rem;
  }
}
.cid-uHH5fY9igT .mbr-text,
.cid-uHH5fY9igT .mbr-section-btn {
  color: #932020;
}
.cid-uHH5fZlgrl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
.cid-uHH5fZlgrl .mbr-section-title {
  color: #932020;
}
.cid-uHH5fZlgrl .mbr-text {
  color: #932020;
}
.cid-uHH5fZlgrl .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH5fZlgrl .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH5fZlgrl .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH5fZlgrl .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH5fZlgrl .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH5g0bF0s {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ebd3ab;
}
.cid-uHH5g0bF0s .row {
  flex-direction: row-reverse;
}
.cid-uHH5g0bF0s .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH5g0bF0s .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH5g0bF0s .svg-top .st0 {
  fill: #ebd3ab;
}
@media (max-width: 992px) {
  .cid-uHH5g0bF0s .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-uHH5g0bF0s .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH5g0bF0s .row {
    margin: 0 -2rem;
  }
}
.cid-uHH5g0bF0s .mbr-text,
.cid-uHH5g0bF0s .mbr-section-btn {
  color: #932020;
}
.cid-uHH5g0bF0s .mbr-section-title {
  color: #932020;
}
.cid-uHH5g13ocI {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-uHH5g13ocI .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 1400px) {
  .cid-uHH5g13ocI .col-12 {
    padding: 0 2rem;
  }
  .cid-uHH5g13ocI .row {
    margin: 0 -2rem;
  }
}
.cid-uHH5g13ocI .wrapper {
  border: 2px solid #9f1f1f;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-uHH5g13ocI .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH5g13ocI .col-auto {
    margin: auto;
  }
}
.cid-uHH5g13ocI .btn {
  min-height: 60px;
}
.cid-uHH5g13ocI .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH5g13ocI .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH5g13ocI .svg-top {
    width: 1000px;
  }
}
.cid-uHH5g13ocI .form-row > .col,
.cid-uHH5g13ocI .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-uHH5g13ocI .form-control,
.cid-uHH5g13ocI .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #932020 !important;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-uHH5g13ocI .form-control::-webkit-input-placeholder,
.cid-uHH5g13ocI .field-input::-webkit-input-placeholder,
.cid-uHH5g13ocI .form-control::-webkit-input-placeholder,
.cid-uHH5g13ocI .field-input::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH5g13ocI .form-control:-moz-placeholder,
.cid-uHH5g13ocI .field-input:-moz-placeholder,
.cid-uHH5g13ocI .form-control:-moz-placeholder,
.cid-uHH5g13ocI .field-input:-moz-placeholder {
  color: #932020;
}
.cid-uHH5g13ocI .form-control:hover,
.cid-uHH5g13ocI .field-input:hover,
.cid-uHH5g13ocI .form-control:focus,
.cid-uHH5g13ocI .field-input:focus {
  background-color: #f8f8f8;
  border-color: #932020;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHH5g13ocI .form-control:hover::-webkit-input-placeholder,
.cid-uHH5g13ocI .field-input:hover::-webkit-input-placeholder,
.cid-uHH5g13ocI .form-control:focus::-webkit-input-placeholder,
.cid-uHH5g13ocI .field-input:focus::-webkit-input-placeholder,
.cid-uHH5g13ocI .form-control:hover::-webkit-input-placeholder,
.cid-uHH5g13ocI .field-input:hover::-webkit-input-placeholder,
.cid-uHH5g13ocI .form-control:focus::-webkit-input-placeholder,
.cid-uHH5g13ocI .field-input:focus::-webkit-input-placeholder {
  color: #932020;
}
.cid-uHH5g13ocI .form-control:hover:-moz-placeholder,
.cid-uHH5g13ocI .field-input:hover:-moz-placeholder,
.cid-uHH5g13ocI .form-control:focus:-moz-placeholder,
.cid-uHH5g13ocI .field-input:focus:-moz-placeholder,
.cid-uHH5g13ocI .form-control:hover:-moz-placeholder,
.cid-uHH5g13ocI .field-input:hover:-moz-placeholder,
.cid-uHH5g13ocI .form-control:focus:-moz-placeholder,
.cid-uHH5g13ocI .field-input:focus:-moz-placeholder {
  color: #932020;
}
.cid-uHH5g13ocI .jq-number__spin:hover,
.cid-uHH5g13ocI .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHH5g13ocI .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #932020 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHH5g13ocI .jq-selectbox li,
.cid-uHH5g13ocI .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH5g13ocI .jq-selectbox li:hover,
.cid-uHH5g13ocI .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-uHH5g13ocI .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHH5g13ocI .jq-number__spin.minus:hover:after,
.cid-uHH5g13ocI .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH5g13ocI .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHH5g13ocI .jq-number__spin.minus:after,
.cid-uHH5g13ocI .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-uHH5g13ocI input::-webkit-clear-button {
  display: none;
}
.cid-uHH5g13ocI input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHH5g13ocI input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHH5g13ocI input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uHH5g13ocI .mbr-text,
.cid-uHH5g13ocI .mbr-section-btn {
  color: #932020;
}
.cid-uHH5g13ocI .mbr-section-title {
  color: #932020;
}
.cid-uHH5g20SwQ {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH5g20SwQ svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH5g20SwQ svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH5g20SwQ svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH5g20SwQ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH5g20SwQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH5g20SwQ .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH5g20SwQ .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH5g20SwQ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH5g20SwQ .copyright {
  color: #ffffff;
}
.cid-uHH5fWJstO .navbar-dropdown {
  position: relative !important;
}
.cid-uHH5fWJstO .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH5fWJstO .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH5fWJstO .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH5fWJstO .nav-link:hover:before {
  width: 100%;
}
.cid-uHH5fWJstO .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH5fWJstO .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH5fWJstO .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-uHH5fWJstO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH5fWJstO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH5fWJstO .dropdown-item:hover,
.cid-uHH5fWJstO .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH5fWJstO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH5fWJstO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH5fWJstO .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH5fWJstO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH5fWJstO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH5fWJstO .dropdown-menu,
.cid-uHH5fWJstO .navbar.opened {
  background: #932020 !important;
}
.cid-uHH5fWJstO .nav-item:focus,
.cid-uHH5fWJstO .nav-link:focus {
  outline: none;
}
.cid-uHH5fWJstO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH5fWJstO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH5fWJstO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH5fWJstO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH5fWJstO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH5fWJstO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH5fWJstO .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH5fWJstO .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH5fWJstO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH5fWJstO .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH5fWJstO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH5fWJstO .navbar.collapsed {
  justify-content: center;
}
.cid-uHH5fWJstO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH5fWJstO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH5fWJstO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH5fWJstO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH5fWJstO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH5fWJstO .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-uHH5fWJstO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH5fWJstO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH5fWJstO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH5fWJstO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH5fWJstO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH5fWJstO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH5fWJstO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH5fWJstO .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-uHH5fWJstO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH5fWJstO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH5fWJstO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH5fWJstO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH5fWJstO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH5fWJstO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH5fWJstO .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH5fWJstO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH5fWJstO .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH5fWJstO .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH5fWJstO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH5fWJstO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH5fWJstO .dropdown-item.active,
.cid-uHH5fWJstO .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH5fWJstO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH5fWJstO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH5fWJstO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH5fWJstO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH5fWJstO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH5fWJstO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH5fWJstO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH5fWJstO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH5fWJstO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH5fWJstO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH5fWJstO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH5fWJstO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH5fWJstO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH5fWJstO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH5fWJstO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH5fWJstO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH5fWJstO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH5fWJstO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH5fWJstO .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH5fWJstO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH5fWJstO .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-uHH5fWJstO .navbar {
    height: 70px;
  }
  .cid-uHH5fWJstO .navbar.opened {
    height: auto;
  }
  .cid-uHH5fWJstO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH6qQWeoj {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH6qQWeoj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH6qQWeoj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH6qQWeoj .container {
    padding: 0 24px;
  }
}
.cid-uHH6qQWeoj .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH6qQWeoj .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH6qQWeoj .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH6qQWeoj .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH6qQWeoj .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH6qQWeoj .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH6qQWeoj .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH6qQWeoj .mbr-desc {
  color: #202020;
}
.cid-uHH6qQWeoj .mbr-section-title {
  color: #202020;
}
.cid-uHH6qQWeoj .mbr-date {
  color: #202020;
}
.cid-uHH6qQWeoj .mbr-desc,
.cid-uHH6qQWeoj .desc-wrap {
  text-align: right;
}
.cid-uHH6pJoQQa {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uHH6pJoQQa .mbr-section-title {
  color: #932020;
}
.cid-uHH6pJoQQa .mbr-text {
  color: #000000;
}
.cid-uHH6pJoQQa .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH6pJoQQa .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH6pJoQQa .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH6pJoQQa .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH6pJoQQa .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH5g20SwQ {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH5g20SwQ svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH5g20SwQ svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH5g20SwQ svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH5g20SwQ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH5g20SwQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH5g20SwQ .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH5g20SwQ .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH5g20SwQ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH5g20SwQ .copyright {
  color: #ffffff;
}
.cid-uHH6z3AnCe .navbar-dropdown {
  position: relative !important;
}
.cid-uHH6z3AnCe .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH6z3AnCe .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH6z3AnCe .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH6z3AnCe .nav-link:hover:before {
  width: 100%;
}
.cid-uHH6z3AnCe .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH6z3AnCe .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH6z3AnCe .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-uHH6z3AnCe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH6z3AnCe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH6z3AnCe .dropdown-item:hover,
.cid-uHH6z3AnCe .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH6z3AnCe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH6z3AnCe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH6z3AnCe .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH6z3AnCe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH6z3AnCe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH6z3AnCe .dropdown-menu,
.cid-uHH6z3AnCe .navbar.opened {
  background: #932020 !important;
}
.cid-uHH6z3AnCe .nav-item:focus,
.cid-uHH6z3AnCe .nav-link:focus {
  outline: none;
}
.cid-uHH6z3AnCe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH6z3AnCe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH6z3AnCe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH6z3AnCe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH6z3AnCe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH6z3AnCe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH6z3AnCe .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH6z3AnCe .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH6z3AnCe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH6z3AnCe .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH6z3AnCe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH6z3AnCe .navbar.collapsed {
  justify-content: center;
}
.cid-uHH6z3AnCe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH6z3AnCe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH6z3AnCe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH6z3AnCe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH6z3AnCe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH6z3AnCe .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-uHH6z3AnCe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH6z3AnCe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH6z3AnCe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH6z3AnCe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH6z3AnCe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH6z3AnCe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH6z3AnCe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH6z3AnCe .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-uHH6z3AnCe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH6z3AnCe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH6z3AnCe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH6z3AnCe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH6z3AnCe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH6z3AnCe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH6z3AnCe .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH6z3AnCe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH6z3AnCe .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH6z3AnCe .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH6z3AnCe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH6z3AnCe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH6z3AnCe .dropdown-item.active,
.cid-uHH6z3AnCe .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH6z3AnCe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH6z3AnCe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH6z3AnCe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH6z3AnCe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH6z3AnCe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH6z3AnCe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH6z3AnCe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH6z3AnCe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH6z3AnCe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH6z3AnCe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH6z3AnCe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH6z3AnCe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH6z3AnCe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH6z3AnCe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH6z3AnCe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH6z3AnCe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH6z3AnCe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH6z3AnCe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH6z3AnCe .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH6z3AnCe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH6z3AnCe .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-uHH6z3AnCe .navbar {
    height: 70px;
  }
  .cid-uHH6z3AnCe .navbar.opened {
    height: auto;
  }
  .cid-uHH6z3AnCe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH6z1It4J {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH6z1It4J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH6z1It4J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH6z1It4J .container {
    padding: 0 24px;
  }
}
.cid-uHH6z1It4J .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH6z1It4J .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH6z1It4J .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH6z1It4J .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH6z1It4J .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH6z1It4J .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH6z1It4J .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH6z1It4J .mbr-desc {
  color: #202020;
}
.cid-uHH6z1It4J .mbr-section-title {
  color: #202020;
}
.cid-uHH6z1It4J .mbr-date {
  color: #202020;
}
.cid-uHH6z1It4J .mbr-desc,
.cid-uHH6z1It4J .desc-wrap {
  text-align: right;
}
.cid-uHH6z4Znzb {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uHH6z4Znzb .mbr-section-title {
  color: #932020;
}
.cid-uHH6z4Znzb .mbr-text {
  color: #000000;
}
.cid-uHH6z4Znzb .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH6z4Znzb .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH6z4Znzb .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH6z4Znzb .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH6z4Znzb .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH6z5NSxJ {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH6z5NSxJ svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH6z5NSxJ svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH6z5NSxJ svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH6z5NSxJ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH6z5NSxJ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH6z5NSxJ .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH6z5NSxJ .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH6z5NSxJ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH6z5NSxJ .copyright {
  color: #ffffff;
}
.cid-uHH6GGvukp .navbar-dropdown {
  position: relative !important;
}
.cid-uHH6GGvukp .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH6GGvukp .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH6GGvukp .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH6GGvukp .nav-link:hover:before {
  width: 100%;
}
.cid-uHH6GGvukp .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH6GGvukp .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH6GGvukp .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-uHH6GGvukp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH6GGvukp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH6GGvukp .dropdown-item:hover,
.cid-uHH6GGvukp .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH6GGvukp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH6GGvukp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH6GGvukp .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH6GGvukp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH6GGvukp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH6GGvukp .dropdown-menu,
.cid-uHH6GGvukp .navbar.opened {
  background: #932020 !important;
}
.cid-uHH6GGvukp .nav-item:focus,
.cid-uHH6GGvukp .nav-link:focus {
  outline: none;
}
.cid-uHH6GGvukp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH6GGvukp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH6GGvukp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH6GGvukp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH6GGvukp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH6GGvukp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH6GGvukp .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH6GGvukp .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH6GGvukp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH6GGvukp .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH6GGvukp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH6GGvukp .navbar.collapsed {
  justify-content: center;
}
.cid-uHH6GGvukp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH6GGvukp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH6GGvukp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH6GGvukp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH6GGvukp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH6GGvukp .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-uHH6GGvukp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH6GGvukp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH6GGvukp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH6GGvukp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH6GGvukp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH6GGvukp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH6GGvukp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH6GGvukp .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-uHH6GGvukp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH6GGvukp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH6GGvukp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH6GGvukp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH6GGvukp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH6GGvukp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH6GGvukp .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH6GGvukp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH6GGvukp .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH6GGvukp .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH6GGvukp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH6GGvukp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH6GGvukp .dropdown-item.active,
.cid-uHH6GGvukp .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH6GGvukp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH6GGvukp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH6GGvukp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH6GGvukp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH6GGvukp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH6GGvukp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH6GGvukp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH6GGvukp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH6GGvukp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH6GGvukp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH6GGvukp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH6GGvukp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH6GGvukp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH6GGvukp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH6GGvukp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH6GGvukp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH6GGvukp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH6GGvukp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH6GGvukp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH6GGvukp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH6GGvukp .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-uHH6GGvukp .navbar {
    height: 70px;
  }
  .cid-uHH6GGvukp .navbar.opened {
    height: auto;
  }
  .cid-uHH6GGvukp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH6GFKfs5 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH6GFKfs5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH6GFKfs5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH6GFKfs5 .container {
    padding: 0 24px;
  }
}
.cid-uHH6GFKfs5 .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH6GFKfs5 .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH6GFKfs5 .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH6GFKfs5 .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH6GFKfs5 .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH6GFKfs5 .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH6GFKfs5 .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH6GFKfs5 .mbr-desc {
  color: #202020;
}
.cid-uHH6GFKfs5 .mbr-section-title {
  color: #202020;
}
.cid-uHH6GFKfs5 .mbr-date {
  color: #202020;
}
.cid-uHH6GFKfs5 .mbr-desc,
.cid-uHH6GFKfs5 .desc-wrap {
  text-align: right;
}
.cid-uHH6GHL3rc {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uHH6GHL3rc .mbr-section-title {
  color: #932020;
}
.cid-uHH6GHL3rc .mbr-text {
  color: #000000;
}
.cid-uHH6GHL3rc .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH6GHL3rc .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH6GHL3rc .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH6GHL3rc .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH6GHL3rc .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH6GIFc1t {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH6GIFc1t svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH6GIFc1t svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH6GIFc1t svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH6GIFc1t .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH6GIFc1t .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH6GIFc1t .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH6GIFc1t .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH6GIFc1t div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH6GIFc1t .copyright {
  color: #ffffff;
}
.cid-uHH6PtvPc8 .navbar-dropdown {
  position: relative !important;
}
.cid-uHH6PtvPc8 .navbar-dropdown {
  position: absolute !important;
}
.cid-uHH6PtvPc8 .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uHH6PtvPc8 .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uHH6PtvPc8 .nav-link:hover:before {
  width: 100%;
}
.cid-uHH6PtvPc8 .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uHH6PtvPc8 .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uHH6PtvPc8 .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-uHH6PtvPc8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHH6PtvPc8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHH6PtvPc8 .dropdown-item:hover,
.cid-uHH6PtvPc8 .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-uHH6PtvPc8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHH6PtvPc8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHH6PtvPc8 .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uHH6PtvPc8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHH6PtvPc8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHH6PtvPc8 .dropdown-menu,
.cid-uHH6PtvPc8 .navbar.opened {
  background: #932020 !important;
}
.cid-uHH6PtvPc8 .nav-item:focus,
.cid-uHH6PtvPc8 .nav-link:focus {
  outline: none;
}
.cid-uHH6PtvPc8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHH6PtvPc8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHH6PtvPc8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHH6PtvPc8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHH6PtvPc8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHH6PtvPc8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHH6PtvPc8 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(147, 32, 32, 0);
}
.cid-uHH6PtvPc8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uHH6PtvPc8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHH6PtvPc8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uHH6PtvPc8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHH6PtvPc8 .navbar.collapsed {
  justify-content: center;
}
.cid-uHH6PtvPc8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHH6PtvPc8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHH6PtvPc8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uHH6PtvPc8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHH6PtvPc8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHH6PtvPc8 .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-uHH6PtvPc8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHH6PtvPc8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHH6PtvPc8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHH6PtvPc8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHH6PtvPc8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHH6PtvPc8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHH6PtvPc8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHH6PtvPc8 .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-uHH6PtvPc8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHH6PtvPc8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHH6PtvPc8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHH6PtvPc8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHH6PtvPc8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHH6PtvPc8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uHH6PtvPc8 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uHH6PtvPc8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHH6PtvPc8 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uHH6PtvPc8 .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHH6PtvPc8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHH6PtvPc8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHH6PtvPc8 .dropdown-item.active,
.cid-uHH6PtvPc8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uHH6PtvPc8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHH6PtvPc8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHH6PtvPc8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHH6PtvPc8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #932020;
}
.cid-uHH6PtvPc8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHH6PtvPc8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHH6PtvPc8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHH6PtvPc8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHH6PtvPc8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHH6PtvPc8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #932020;
}
.cid-uHH6PtvPc8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHH6PtvPc8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH6PtvPc8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHH6PtvPc8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHH6PtvPc8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH6PtvPc8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHH6PtvPc8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHH6PtvPc8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHH6PtvPc8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHH6PtvPc8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHH6PtvPc8 .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-uHH6PtvPc8 .navbar {
    height: 70px;
  }
  .cid-uHH6PtvPc8 .navbar.opened {
    height: auto;
  }
  .cid-uHH6PtvPc8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHH6PsJXNd {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #932020;
}
.cid-uHH6PsJXNd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHH6PsJXNd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHH6PsJXNd .container {
    padding: 0 24px;
  }
}
.cid-uHH6PsJXNd .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH6PsJXNd .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uHH6PsJXNd .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uHH6PsJXNd .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uHH6PsJXNd .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uHH6PsJXNd .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uHH6PsJXNd .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uHH6PsJXNd .mbr-desc {
  color: #202020;
}
.cid-uHH6PsJXNd .mbr-section-title {
  color: #202020;
}
.cid-uHH6PsJXNd .mbr-date {
  color: #202020;
}
.cid-uHH6PsJXNd .mbr-desc,
.cid-uHH6PsJXNd .desc-wrap {
  text-align: right;
}
.cid-uHH6PuEeJ7 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uHH6PuEeJ7 .mbr-section-title {
  color: #932020;
}
.cid-uHH6PuEeJ7 .mbr-text {
  color: #000000;
}
.cid-uHH6PuEeJ7 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uHH6PuEeJ7 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHH6PuEeJ7 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-uHH6PuEeJ7 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHH6PuEeJ7 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uHH6PvkA4E {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #932020;
}
.cid-uHH6PvkA4E svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uHH6PvkA4E svg .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-uHH6PvkA4E svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uHH6PvkA4E .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHH6PvkA4E .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHH6PvkA4E .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHH6PvkA4E .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uHH6PvkA4E div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHH6PvkA4E .copyright {
  color: #ffffff;
}
