.btn {
  border-width: 2px;
}
body {
  font-family: 'JetBrains Mono', monospace;
}
.display-1 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Dancing Script', handwriting;
  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: 'Acme', sans-serif;
  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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.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: #bc2626 !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: #bc2626 !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: #bc2626 !important;
  border-color: #bc2626 !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: #bc2626 !important;
  border-color: #bc2626 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #bc2626 !important;
  border-color: #bc2626 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #b72929 !important;
  border-color: #b72929 !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: #b72929 !important;
  border-color: #b72929 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b72929 !important;
  border-color: #b72929 !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 #bc2626 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #bc2626;
  color: #bc2626;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #bc2626;
  background-color: transparent!important;
  border-color: #bc2626 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bc2626 !important;
  border-color: #bc2626 !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: #bc2626;
  -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 #b72929 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #b72929;
  color: #b72929;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b72929;
  background-color: transparent!important;
  border-color: #b72929 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #b72929 !important;
  border-color: #b72929 !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: #b72929;
  -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: #bc2626 !important;
}
.text-secondary {
  color: #b72929 !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: #bc2626 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #641616 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bc2626;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bc2626;
  border-color: #bc2626;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #bc2626;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e57d7d;
}
.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: #bc2626 !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: #bc2626;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bc2626;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bc2626;
}
.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: #bc2626;
  border-bottom-color: #bc2626;
}
.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: #bc2626 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #b72929 !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='%23bc2626' %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-sMaJQCJVR9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-sMaJQCJVR9 .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sMaJQCJVR9 .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sMaJQCJVR9 .nav-link:hover:before {
  width: 100%;
}
.cid-sMaJQCJVR9 .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sMaJQCJVR9 nav.navbar {
  position: fixed;
}
.cid-sMaJQCJVR9 .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sMaJQCJVR9 .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-sMaJQCJVR9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMaJQCJVR9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMaJQCJVR9 .dropdown-item:hover,
.cid-sMaJQCJVR9 .dropdown-item:focus {
  background: #bc2626 !important;
  color: white !important;
}
.cid-sMaJQCJVR9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMaJQCJVR9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMaJQCJVR9 .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sMaJQCJVR9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMaJQCJVR9 .iconfont-wrapper {
  color: #b72929 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMaJQCJVR9 .dropdown-menu,
.cid-sMaJQCJVR9 .navbar.opened {
  background: #ffffff !important;
}
.cid-sMaJQCJVR9 .nav-item:focus,
.cid-sMaJQCJVR9 .nav-link:focus {
  outline: none;
}
.cid-sMaJQCJVR9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMaJQCJVR9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMaJQCJVR9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMaJQCJVR9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMaJQCJVR9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMaJQCJVR9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMaJQCJVR9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sMaJQCJVR9 .navbar.opened {
  transition: all 0.3s;
}
.cid-sMaJQCJVR9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMaJQCJVR9 .navbar .navbar-logo img {
  width: auto;
}
.cid-sMaJQCJVR9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMaJQCJVR9 .navbar.collapsed {
  justify-content: center;
}
.cid-sMaJQCJVR9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMaJQCJVR9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMaJQCJVR9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sMaJQCJVR9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMaJQCJVR9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMaJQCJVR9 .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-sMaJQCJVR9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMaJQCJVR9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMaJQCJVR9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMaJQCJVR9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMaJQCJVR9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMaJQCJVR9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMaJQCJVR9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMaJQCJVR9 .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-sMaJQCJVR9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMaJQCJVR9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMaJQCJVR9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMaJQCJVR9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMaJQCJVR9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMaJQCJVR9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMaJQCJVR9 .navbar.navbar-short {
  min-height: 80px;
}
.cid-sMaJQCJVR9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMaJQCJVR9 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sMaJQCJVR9 .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-sMaJQCJVR9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMaJQCJVR9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMaJQCJVR9 .dropdown-item.active,
.cid-sMaJQCJVR9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sMaJQCJVR9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMaJQCJVR9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMaJQCJVR9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMaJQCJVR9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sMaJQCJVR9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMaJQCJVR9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMaJQCJVR9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMaJQCJVR9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMaJQCJVR9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMaJQCJVR9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b72929;
}
.cid-sMaJQCJVR9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMaJQCJVR9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMaJQCJVR9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMaJQCJVR9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMaJQCJVR9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMaJQCJVR9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMaJQCJVR9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMaJQCJVR9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMaJQCJVR9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMaJQCJVR9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMaJQCJVR9 .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-sMaJQCJVR9 .navbar {
    height: 70px;
  }
  .cid-sMaJQCJVR9 .navbar.opened {
    height: auto;
  }
  .cid-sMaJQCJVR9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMaJQDyoFo {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #bc2626;
}
.cid-sMaJQDyoFo .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: #bc2626;
}
.cid-sMaJQDyoFo .svg-top .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sMaJQDyoFo .svg-top {
    width: 1000px;
  }
}
@media (max-width: 768px) {
  .cid-sMaJQDyoFo .text-content {
    max-width: none;
  }
}
.cid-sMaJQDyoFo .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sMaJQDyoFo .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sMaJQDyoFo .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-sMaJQDyoFo .icons {
    justify-content: center !important;
  }
  .cid-sMaJQDyoFo .text-content * {
    text-align: center;
  }
}
.cid-sMaJQDyoFo P {
  color: #ffffff;
}
.cid-sMaJQDyoFo .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tkeqTqJi12 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tkeqTqJi12 .wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tkeqTqJi12 .wrapper .left-col {
    flex: 1 0 50%;
    padding-right: 12px;
  }
  .cid-tkeqTqJi12 .wrapper .right-col {
    flex: 1 0 50%;
    padding-left: 12px;
  }
}
.cid-tkeqTqJi12 .card {
  padding: 0;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-tkeqTqJi12 .card-img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: 20px;
}
.cid-tkeqTqJi12 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkeqTqJi12 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sMiS7WbNwp {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #f8f8f8;
}
.cid-sMiS7WbNwp .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sMiS7WbNwp .team-card:hover {
  transform: translateY(-10px);
}
.cid-sMiS7WbNwp .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-sMiS7WbNwp .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-sMiS7WbNwp .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-sMiS7WbNwp .image-wrap:hover .read,
.cid-sMiS7WbNwp .image-wrap:focus-within .read,
.cid-sMiS7WbNwp .image-wrap:hover .img-svg,
.cid-sMiS7WbNwp .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-sMiS7WbNwp .image-wrap:hover .more,
.cid-sMiS7WbNwp .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-sMiS7WbNwp .image-wrap .read,
  .cid-sMiS7WbNwp .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-sMiS7WbNwp .image-wrap .more {
    transform: scale(1);
  }
}
.cid-sMiS7WbNwp .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-sMiS7WbNwp .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #bc2626;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-sMiS7WbNwp .img-svg path {
  fill: #bc2626;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-sMiS7WbNwp .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: #bc2626;
}
.cid-sMiS7WbNwp .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sMiS7WbNwp .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-sMiS7WbNwp h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-sMiS7WbNwp h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-sMiS7WbNwp .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sMiS7WbNwp .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sMiS7WbNwp .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-sMiS7WbNwp .card-title,
.cid-sMiS7WbNwp .social-row {
  color: #1a449a;
}
.cid-sMiS7WbNwp .mbr-role,
.cid-sMiS7WbNwp .social-row {
  color: #1a449a;
}
.cid-sMiS7WbNwp .card-text,
.cid-sMiS7WbNwp .mbr-section-btn,
.cid-sMiS7WbNwp .social-row {
  color: #1a449a;
}
.cid-sMiS7WbNwp .mbr-section-title {
  color: #b72929;
}
.cid-sMiTQbyaWI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #f8f8f8;
}
.cid-sMiTQbyaWI .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sMiTQbyaWI .team-card:hover {
  transform: translateY(-10px);
}
.cid-sMiTQbyaWI .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-sMiTQbyaWI .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-sMiTQbyaWI .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-sMiTQbyaWI .image-wrap:hover .read,
.cid-sMiTQbyaWI .image-wrap:focus-within .read,
.cid-sMiTQbyaWI .image-wrap:hover .img-svg,
.cid-sMiTQbyaWI .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-sMiTQbyaWI .image-wrap:hover .more,
.cid-sMiTQbyaWI .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-sMiTQbyaWI .image-wrap .read,
  .cid-sMiTQbyaWI .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-sMiTQbyaWI .image-wrap .more {
    transform: scale(1);
  }
}
.cid-sMiTQbyaWI .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-sMiTQbyaWI .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #bc2626;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-sMiTQbyaWI .img-svg path {
  fill: #bc2626;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-sMiTQbyaWI .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: #bc2626;
}
.cid-sMiTQbyaWI .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sMiTQbyaWI .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-sMiTQbyaWI h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-sMiTQbyaWI h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-sMiTQbyaWI .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sMiTQbyaWI .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sMiTQbyaWI .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-sMiTQbyaWI .card-title,
.cid-sMiTQbyaWI .social-row {
  color: #1a449a;
}
.cid-sMiTQbyaWI .mbr-role,
.cid-sMiTQbyaWI .social-row {
  color: #1a449a;
}
.cid-sMiTQbyaWI .card-text,
.cid-sMiTQbyaWI .mbr-section-btn,
.cid-sMiTQbyaWI .social-row {
  color: #1a449a;
}
.cid-sMiTQbyaWI .mbr-section-title {
  color: #b72929;
}
.cid-sMj3M5viCq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #f8f8f8;
}
.cid-sMj3M5viCq .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sMj3M5viCq .team-card:hover {
  transform: translateY(-10px);
}
.cid-sMj3M5viCq .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-sMj3M5viCq .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-sMj3M5viCq .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-sMj3M5viCq .image-wrap:hover .read,
.cid-sMj3M5viCq .image-wrap:focus-within .read,
.cid-sMj3M5viCq .image-wrap:hover .img-svg,
.cid-sMj3M5viCq .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-sMj3M5viCq .image-wrap:hover .more,
.cid-sMj3M5viCq .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-sMj3M5viCq .image-wrap .read,
  .cid-sMj3M5viCq .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-sMj3M5viCq .image-wrap .more {
    transform: scale(1);
  }
}
.cid-sMj3M5viCq .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-sMj3M5viCq .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #bc2626;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-sMj3M5viCq .img-svg path {
  fill: #bc2626;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-sMj3M5viCq .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: #bc2626;
}
.cid-sMj3M5viCq .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sMj3M5viCq .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-sMj3M5viCq h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-sMj3M5viCq h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-sMj3M5viCq .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sMj3M5viCq .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sMj3M5viCq .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-sMj3M5viCq .card-title,
.cid-sMj3M5viCq .social-row {
  color: #1a449a;
}
.cid-sMj3M5viCq .mbr-role,
.cid-sMj3M5viCq .social-row {
  color: #1a449a;
}
.cid-sMj3M5viCq .card-text,
.cid-sMj3M5viCq .mbr-section-btn,
.cid-sMj3M5viCq .social-row {
  color: #1a449a;
}
.cid-sMj3M5viCq .mbr-section-title {
  color: #b72929;
}
.cid-sMiTQTTmPE {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background: #f8f8f8;
}
.cid-sMiTQTTmPE .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sMiTQTTmPE .team-card:hover {
  transform: translateY(-10px);
}
.cid-sMiTQTTmPE .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-sMiTQTTmPE .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-sMiTQTTmPE .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-sMiTQTTmPE .image-wrap:hover .read,
.cid-sMiTQTTmPE .image-wrap:focus-within .read,
.cid-sMiTQTTmPE .image-wrap:hover .img-svg,
.cid-sMiTQTTmPE .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-sMiTQTTmPE .image-wrap:hover .more,
.cid-sMiTQTTmPE .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-sMiTQTTmPE .image-wrap .read,
  .cid-sMiTQTTmPE .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-sMiTQTTmPE .image-wrap .more {
    transform: scale(1);
  }
}
.cid-sMiTQTTmPE .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-sMiTQTTmPE .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #bc2626;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-sMiTQTTmPE .img-svg path {
  fill: #bc2626;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-sMiTQTTmPE .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: #bc2626;
}
.cid-sMiTQTTmPE .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sMiTQTTmPE .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-sMiTQTTmPE h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-sMiTQTTmPE h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-sMiTQTTmPE .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sMiTQTTmPE .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sMiTQTTmPE .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-sMiTQTTmPE .card-title,
.cid-sMiTQTTmPE .social-row {
  color: #1a449a;
}
.cid-sMiTQTTmPE .mbr-role,
.cid-sMiTQTTmPE .social-row {
  color: #1a449a;
}
.cid-sMiTQTTmPE .card-text,
.cid-sMiTQTTmPE .mbr-section-btn,
.cid-sMiTQTTmPE .social-row {
  color: #1a449a;
}
.cid-sMiTQTTmPE .mbr-section-title {
  color: #b72929;
}
.cid-sMaJQFWqIc {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #bc2626;
}
.cid-sMaJQFWqIc svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-sMaJQFWqIc svg .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sMaJQFWqIc svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-sMaJQFWqIc .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMaJQFWqIc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sMaJQFWqIc .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sMaJQFWqIc .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sMaJQFWqIc div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sMaJQFWqIc .copyright {
  color: #ffffff;
}
.cid-sMaLlV4p5h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-sMaLlV4p5h .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sMaLlV4p5h .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sMaLlV4p5h .nav-link:hover:before {
  width: 100%;
}
.cid-sMaLlV4p5h .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sMaLlV4p5h nav.navbar {
  position: fixed;
}
.cid-sMaLlV4p5h .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sMaLlV4p5h .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-sMaLlV4p5h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMaLlV4p5h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMaLlV4p5h .dropdown-item:hover,
.cid-sMaLlV4p5h .dropdown-item:focus {
  background: #bc2626 !important;
  color: white !important;
}
.cid-sMaLlV4p5h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMaLlV4p5h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMaLlV4p5h .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sMaLlV4p5h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMaLlV4p5h .iconfont-wrapper {
  color: #b72929 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMaLlV4p5h .dropdown-menu,
.cid-sMaLlV4p5h .navbar.opened {
  background: #ffffff !important;
}
.cid-sMaLlV4p5h .nav-item:focus,
.cid-sMaLlV4p5h .nav-link:focus {
  outline: none;
}
.cid-sMaLlV4p5h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMaLlV4p5h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMaLlV4p5h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMaLlV4p5h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMaLlV4p5h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMaLlV4p5h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMaLlV4p5h .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sMaLlV4p5h .navbar.opened {
  transition: all 0.3s;
}
.cid-sMaLlV4p5h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMaLlV4p5h .navbar .navbar-logo img {
  width: auto;
}
.cid-sMaLlV4p5h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMaLlV4p5h .navbar.collapsed {
  justify-content: center;
}
.cid-sMaLlV4p5h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMaLlV4p5h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMaLlV4p5h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sMaLlV4p5h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMaLlV4p5h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMaLlV4p5h .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-sMaLlV4p5h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMaLlV4p5h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMaLlV4p5h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMaLlV4p5h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMaLlV4p5h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMaLlV4p5h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMaLlV4p5h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMaLlV4p5h .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-sMaLlV4p5h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMaLlV4p5h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMaLlV4p5h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMaLlV4p5h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMaLlV4p5h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMaLlV4p5h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMaLlV4p5h .navbar.navbar-short {
  min-height: 80px;
}
.cid-sMaLlV4p5h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMaLlV4p5h .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sMaLlV4p5h .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-sMaLlV4p5h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMaLlV4p5h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMaLlV4p5h .dropdown-item.active,
.cid-sMaLlV4p5h .dropdown-item:active {
  background-color: transparent;
}
.cid-sMaLlV4p5h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMaLlV4p5h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMaLlV4p5h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMaLlV4p5h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sMaLlV4p5h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMaLlV4p5h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMaLlV4p5h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMaLlV4p5h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMaLlV4p5h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMaLlV4p5h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b72929;
}
.cid-sMaLlV4p5h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMaLlV4p5h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMaLlV4p5h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMaLlV4p5h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMaLlV4p5h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMaLlV4p5h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMaLlV4p5h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMaLlV4p5h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMaLlV4p5h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMaLlV4p5h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMaLlV4p5h .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-sMaLlV4p5h .navbar {
    height: 70px;
  }
  .cid-sMaLlV4p5h .navbar.opened {
    height: auto;
  }
  .cid-sMaLlV4p5h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMgJDXFdro {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #bc2626;
}
.cid-sMgJDXFdro .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: #bc2626;
}
.cid-sMgJDXFdro .svg-top .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sMgJDXFdro .svg-top {
    width: 1000px;
  }
}
@media (max-width: 768px) {
  .cid-sMgJDXFdro .text-content {
    max-width: none;
  }
}
.cid-sMgJDXFdro .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sMgJDXFdro .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sMgJDXFdro .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-sMgJDXFdro .icons {
    justify-content: center !important;
  }
  .cid-sMgJDXFdro .text-content * {
    text-align: center;
  }
}
.cid-sMgJDXFdro P {
  color: #ffffff;
}
.cid-sMgJDXFdro .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sMaLlZKTCy {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sMaLlZKTCy .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sMaLlZKTCy .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sMaLlZKTCy .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sMaLlZKTCy P {
  color: #000000;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-sMaLlZKTCy img {
  margin-top: 32px;
}
.cid-sMaLlZKTCy img {
  margin-top: 16px;
}
@media (max-width: 990px) {
  .cid-sMaLlZKTCy .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-sMaLlZKTCy .top,
  .cid-sMaLlZKTCy .top-2 {
    margin-top: 0;
  }
}
.cid-sMaLm0NtQY {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #bc2626;
}
.cid-sMaLm0NtQY svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-sMaLm0NtQY svg .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sMaLm0NtQY svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-sMaLm0NtQY .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMaLm0NtQY .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sMaLm0NtQY .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sMaLm0NtQY .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sMaLm0NtQY div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sMaLm0NtQY .copyright {
  color: #ffffff;
}
.cid-sBTN7PNF8A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-sBTN7PNF8A .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sBTN7PNF8A .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sBTN7PNF8A .nav-link:hover:before {
  width: 100%;
}
.cid-sBTN7PNF8A .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sBTN7PNF8A nav.navbar {
  position: fixed;
}
.cid-sBTN7PNF8A .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sBTN7PNF8A .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-sBTN7PNF8A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBTN7PNF8A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBTN7PNF8A .dropdown-item:hover,
.cid-sBTN7PNF8A .dropdown-item:focus {
  background: #bc2626 !important;
  color: white !important;
}
.cid-sBTN7PNF8A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBTN7PNF8A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBTN7PNF8A .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sBTN7PNF8A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBTN7PNF8A .iconfont-wrapper {
  color: #b72929 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBTN7PNF8A .dropdown-menu,
.cid-sBTN7PNF8A .navbar.opened {
  background: #ffffff !important;
}
.cid-sBTN7PNF8A .nav-item:focus,
.cid-sBTN7PNF8A .nav-link:focus {
  outline: none;
}
.cid-sBTN7PNF8A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBTN7PNF8A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBTN7PNF8A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBTN7PNF8A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBTN7PNF8A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBTN7PNF8A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBTN7PNF8A .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBTN7PNF8A .navbar.opened {
  transition: all 0.3s;
}
.cid-sBTN7PNF8A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBTN7PNF8A .navbar .navbar-logo img {
  width: auto;
}
.cid-sBTN7PNF8A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBTN7PNF8A .navbar.collapsed {
  justify-content: center;
}
.cid-sBTN7PNF8A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBTN7PNF8A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sBTN7PNF8A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sBTN7PNF8A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBTN7PNF8A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBTN7PNF8A .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-sBTN7PNF8A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBTN7PNF8A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBTN7PNF8A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBTN7PNF8A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBTN7PNF8A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBTN7PNF8A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBTN7PNF8A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBTN7PNF8A .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-sBTN7PNF8A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBTN7PNF8A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBTN7PNF8A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBTN7PNF8A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBTN7PNF8A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBTN7PNF8A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBTN7PNF8A .navbar.navbar-short {
  min-height: 80px;
}
.cid-sBTN7PNF8A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBTN7PNF8A .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sBTN7PNF8A .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-sBTN7PNF8A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBTN7PNF8A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBTN7PNF8A .dropdown-item.active,
.cid-sBTN7PNF8A .dropdown-item:active {
  background-color: transparent;
}
.cid-sBTN7PNF8A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBTN7PNF8A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBTN7PNF8A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBTN7PNF8A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBTN7PNF8A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBTN7PNF8A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBTN7PNF8A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBTN7PNF8A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBTN7PNF8A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBTN7PNF8A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b72929;
}
.cid-sBTN7PNF8A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBTN7PNF8A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBTN7PNF8A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBTN7PNF8A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBTN7PNF8A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBTN7PNF8A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBTN7PNF8A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBTN7PNF8A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBTN7PNF8A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBTN7PNF8A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBTN7PNF8A .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-sBTN7PNF8A .navbar {
    height: 70px;
  }
  .cid-sBTN7PNF8A .navbar.opened {
    height: auto;
  }
  .cid-sBTN7PNF8A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBTN7vbAnD {
  background-image: url("../../../assets/images/ii9b9954-1749x1166.jpg");
  overflow: hidden;
}
.cid-sBTN7vbAnD .svg-top {
  display: none;
}
.cid-sBTN7vbAnD .row {
  flex-direction: row-reverse;
}
.cid-sBTN7vbAnD 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-sBTN7vbAnD svg path {
  fill: #e43f3f;
}
@media (max-width: 992px) {
  .cid-sBTN7vbAnD svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sBTN7vbAnD 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-sBTN7vbAnD .mbr-section-title {
  color: #e43f3f;
}
@media (min-width: 1400px) {
  .cid-sBTN7vbAnD .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTN7vbAnD .row {
    margin: 0 -2rem;
  }
}
.cid-sBTN7vbAnD .mbr-text,
.cid-sBTN7vbAnD .mbr-section-btn {
  color: #000000;
}
.cid-uHZ5FAliOO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e43f3f;
}
@media (max-width: 991px) {
  .cid-uHZ5FAliOO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHZ5FAliOO .row {
  flex-direction: row-reverse;
}
.cid-uHZ5FAliOO img {
  width: 100%;
}
.cid-uHZ5FAliOO .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHZ5FAliOO .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: #bc2626;
}
.cid-uHZ5FAliOO .svg-top .st0 {
  fill: #e43f3f;
}
@media (max-width: 992px) {
  .cid-uHZ5FAliOO .svg-top {
    width: 1000px;
  }
}
.cid-uHZ5FAliOO .mbr-description {
  color: #ffffff;
}
.cid-uHZ5GLfqEr {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #f8f8f8;
}
@media (max-width: 991px) {
  .cid-uHZ5GLfqEr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHZ5GLfqEr .row {
  flex-direction: row-reverse;
}
.cid-uHZ5GLfqEr img {
  width: 100%;
}
.cid-uHZ5GLfqEr .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uHZ5GLfqEr .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: #bc2626;
}
.cid-uHZ5GLfqEr .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uHZ5GLfqEr .svg-top {
    width: 1000px;
  }
}
.cid-uHZ5GLfqEr .mbr-description {
  color: #e43f3f;
}
.cid-sBTNAfuEN4 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background: #e43f3f;
}
.cid-sBTNAfuEN4 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sBTNAfuEN4 .team-card:hover {
  transform: translateY(-10px);
}
.cid-sBTNAfuEN4 .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-sBTNAfuEN4 .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-sBTNAfuEN4 .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-sBTNAfuEN4 .image-wrap:hover .read,
.cid-sBTNAfuEN4 .image-wrap:focus-within .read,
.cid-sBTNAfuEN4 .image-wrap:hover .img-svg,
.cid-sBTNAfuEN4 .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-sBTNAfuEN4 .image-wrap:hover .more,
.cid-sBTNAfuEN4 .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-sBTNAfuEN4 .image-wrap .read,
  .cid-sBTNAfuEN4 .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-sBTNAfuEN4 .image-wrap .more {
    transform: scale(1);
  }
}
.cid-sBTNAfuEN4 .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-sBTNAfuEN4 .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #bc2626;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-sBTNAfuEN4 .img-svg path {
  fill: #bc2626;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-sBTNAfuEN4 .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: #bc2626;
}
.cid-sBTNAfuEN4 .svg-top .st0 {
  fill: #e43f3f;
}
@media (max-width: 992px) {
  .cid-sBTNAfuEN4 .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-sBTNAfuEN4 h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-sBTNAfuEN4 h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-sBTNAfuEN4 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sBTNAfuEN4 .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sBTNAfuEN4 .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-sBTNAfuEN4 .card-title,
.cid-sBTNAfuEN4 .social-row {
  color: #1a449a;
}
.cid-sBTNAfuEN4 .mbr-role,
.cid-sBTNAfuEN4 .social-row {
  color: #ffffff;
}
.cid-sBTNAfuEN4 .card-text,
.cid-sBTNAfuEN4 .mbr-section-btn,
.cid-sBTNAfuEN4 .social-row {
  color: #1a449a;
}
.cid-sBTNAfuEN4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sBTNAfuEN4 .card-title,
.cid-sBTNAfuEN4 .content-wrap {
  color: #ffffff;
}
.cid-sM52a4jhMw {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #f8f8f8;
}
.cid-sM52a4jhMw .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sM52a4jhMw .team-card:hover {
  transform: translateY(-10px);
}
.cid-sM52a4jhMw .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-sM52a4jhMw .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-sM52a4jhMw .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-sM52a4jhMw .image-wrap:hover .read,
.cid-sM52a4jhMw .image-wrap:focus-within .read,
.cid-sM52a4jhMw .image-wrap:hover .img-svg,
.cid-sM52a4jhMw .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-sM52a4jhMw .image-wrap:hover .more,
.cid-sM52a4jhMw .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-sM52a4jhMw .image-wrap .read,
  .cid-sM52a4jhMw .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-sM52a4jhMw .image-wrap .more {
    transform: scale(1);
  }
}
.cid-sM52a4jhMw .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-sM52a4jhMw .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #bc2626;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-sM52a4jhMw .img-svg path {
  fill: #bc2626;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-sM52a4jhMw .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: #bc2626;
}
.cid-sM52a4jhMw .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sM52a4jhMw .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-sM52a4jhMw h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-sM52a4jhMw h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-sM52a4jhMw .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sM52a4jhMw .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sM52a4jhMw .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-sM52a4jhMw .card-title,
.cid-sM52a4jhMw .social-row {
  color: #1a449a;
}
.cid-sM52a4jhMw .mbr-role,
.cid-sM52a4jhMw .social-row {
  color: #e43f3f;
}
.cid-sM52a4jhMw .card-text,
.cid-sM52a4jhMw .mbr-section-btn,
.cid-sM52a4jhMw .social-row {
  color: #1a449a;
}
.cid-sM52a4jhMw .mbr-section-title {
  color: #e43f3f;
  text-align: center;
}
.cid-sM5FT9FHu6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background: #e43f3f;
}
.cid-sM5FT9FHu6 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sM5FT9FHu6 .team-card:hover {
  transform: translateY(-10px);
}
.cid-sM5FT9FHu6 .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-sM5FT9FHu6 .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-sM5FT9FHu6 .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-sM5FT9FHu6 .image-wrap:hover .read,
.cid-sM5FT9FHu6 .image-wrap:focus-within .read,
.cid-sM5FT9FHu6 .image-wrap:hover .img-svg,
.cid-sM5FT9FHu6 .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-sM5FT9FHu6 .image-wrap:hover .more,
.cid-sM5FT9FHu6 .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-sM5FT9FHu6 .image-wrap .read,
  .cid-sM5FT9FHu6 .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-sM5FT9FHu6 .image-wrap .more {
    transform: scale(1);
  }
}
.cid-sM5FT9FHu6 .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-sM5FT9FHu6 .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #bc2626;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-sM5FT9FHu6 .img-svg path {
  fill: #bc2626;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-sM5FT9FHu6 .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: #bc2626;
}
.cid-sM5FT9FHu6 .svg-top .st0 {
  fill: #e43f3f;
}
@media (max-width: 992px) {
  .cid-sM5FT9FHu6 .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-sM5FT9FHu6 h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-sM5FT9FHu6 h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-sM5FT9FHu6 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sM5FT9FHu6 .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sM5FT9FHu6 .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-sM5FT9FHu6 .card-title,
.cid-sM5FT9FHu6 .social-row {
  color: #1a449a;
}
.cid-sM5FT9FHu6 .mbr-role,
.cid-sM5FT9FHu6 .social-row {
  color: #ffffff;
}
.cid-sM5FT9FHu6 .card-text,
.cid-sM5FT9FHu6 .mbr-section-btn,
.cid-sM5FT9FHu6 .social-row {
  color: #1a449a;
}
.cid-sM5FT9FHu6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sBTNMACZMo {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-sBTNMACZMo .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: #bc2626;
}
.cid-sBTNMACZMo .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTNMACZMo .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTNMACZMo .mbr-section-title {
  color: #e43f3f;
}
@media (min-width: 1400px) {
  .cid-sBTNMACZMo .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTNMACZMo .row {
    margin: 0 -2rem;
  }
}
.cid-sBTNMACZMo .mbr-text,
.cid-sBTNMACZMo .mbr-section-btn {
  color: #000000;
}
.cid-sM6Lr5MLnd {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #e43f3f;
}
.cid-sM6Lr5MLnd img {
  max-width: 140px;
  margin: auto;
}
.cid-sM6Lr5MLnd .card {
  background: white;
  padding: 2rem 0;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-sM6Lr5MLnd .card:hover {
  transform: scale(0.9);
}
.cid-sM6Lr5MLnd .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: #bc2626;
}
.cid-sM6Lr5MLnd .svg-top .st0 {
  fill: #e43f3f;
}
@media (max-width: 992px) {
  .cid-sM6Lr5MLnd .svg-top {
    width: 1000px;
  }
}
.cid-sM6Lr5MLnd .mbr-section-title {
  color: #ffffff;
}
.cid-sM6Lr5MLnd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sP14zq9i4W.popup-builder {
  background-color: #ffffff;
}
.cid-sP14zq9i4W.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sP14zq9i4W.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sP14zq9i4W .modal-content,
.cid-sP14zq9i4W .modal-dialog {
  height: auto;
}
.cid-sP14zq9i4W .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sP14zq9i4W .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sP14zq9i4W .form-wrapper .mbr-form .form-group,
  .cid-sP14zq9i4W .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sP14zq9i4W .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sP14zq9i4W .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sP14zq9i4W .mbr-text {
  text-align: center;
  color: #bc2626;
}
.cid-sP14zq9i4W .pt-0 {
  padding-top: 0 !important;
}
.cid-sP14zq9i4W .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sP14zq9i4W .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sP14zq9i4W .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sP14zq9i4W .modal-open {
  overflow: hidden;
}
.cid-sP14zq9i4W .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sP14zq9i4W .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sP14zq9i4W .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sP14zq9i4W .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sP14zq9i4W .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sP14zq9i4W .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sP14zq9i4W .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sP14zq9i4W .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sP14zq9i4W .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sP14zq9i4W .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sP14zq9i4W .modal-backdrop.fade {
  opacity: 0;
}
.cid-sP14zq9i4W .modal-backdrop.show {
  opacity: .5;
}
.cid-sP14zq9i4W .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sP14zq9i4W .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sP14zq9i4W .modal-header {
    padding: 1rem;
  }
}
.cid-sP14zq9i4W .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sP14zq9i4W .modal-header .close svg {
  fill: #353535;
}
.cid-sP14zq9i4W .modal-header .close:hover {
  opacity: 1;
}
.cid-sP14zq9i4W .modal-header .close:focus {
  outline: none;
}
.cid-sP14zq9i4W .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sP14zq9i4W .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sP14zq9i4W .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sP14zq9i4W .modal-body {
    padding: 1rem;
  }
}
.cid-sP14zq9i4W .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sP14zq9i4W .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sP14zq9i4W .modal-footer {
    padding: 1rem;
  }
}
.cid-sP14zq9i4W .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sP14zq9i4W .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sP14zq9i4W .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sP14zq9i4W .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sP14zq9i4W .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sP14zq9i4W .modal-lg,
  .cid-sP14zq9i4W .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sP14zq9i4W .modal-xl {
    max-width: 1140px;
  }
}
.cid-sP14zq9i4W .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sP14zq9i4W .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sP14zq9i4W .form-group {
  margin-bottom: 1rem;
}
.cid-sP14zq9i4W .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sP14zq9i4W .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sP14zq9i4W .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sP14zq9i4W .mbr-section-btn {
  margin: 0;
}
.cid-sP14zq9i4W .mbr-section-btn .btn {
  margin: 0;
}
.cid-sBTOc3UjEp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
.cid-sBTOc3UjEp .row {
  flex-direction: row-reverse;
}
.cid-sBTOc3UjEp ul {
  padding: 0;
}
.cid-sBTOc3UjEp li {
  padding: 1rem 0;
  list-style: none;
  border-bottom: 2px solid currentColor;
}
.cid-sBTOc3UjEp .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: #bc2626;
}
.cid-sBTOc3UjEp .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTOc3UjEp .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTOc3UjEp .mbr-section-title {
  color: #e43f3f;
  text-align: left;
}
@media (min-width: 1400px) {
  .cid-sBTOc3UjEp .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTOc3UjEp .row {
    margin: 0 -2rem;
  }
}
.cid-sBTOc3UjEp .mbr-text,
.cid-sBTOc3UjEp .mbr-section-btn {
  color: #e43f3f;
}
.cid-sBTNXE176I {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background: #f8f8f8;
}
.cid-sBTNXE176I .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: #bc2626;
}
.cid-sBTNXE176I .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTNXE176I .svg-top {
    width: 1000px;
  }
}
.cid-sBTNXE176I .google-map {
  height: 30rem;
  position: relative;
}
.cid-sBTNXE176I .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sBTNXE176I .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sBTNXE176I .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sBTNXE176I .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sBTO1eabjO {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #bc2626;
}
.cid-sBTO1eabjO svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-sBTO1eabjO svg .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sBTO1eabjO svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-sBTO1eabjO .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sBTO1eabjO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBTO1eabjO .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sBTO1eabjO .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sBTO1eabjO div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sBTO1eabjO .copyright {
  color: #ffffff;
}
.cid-sM6YRQFV1t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-sM6YRQFV1t .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sM6YRQFV1t .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sM6YRQFV1t .nav-link:hover:before {
  width: 100%;
}
.cid-sM6YRQFV1t .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sM6YRQFV1t nav.navbar {
  position: fixed;
}
.cid-sM6YRQFV1t .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sM6YRQFV1t .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-sM6YRQFV1t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sM6YRQFV1t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sM6YRQFV1t .dropdown-item:hover,
.cid-sM6YRQFV1t .dropdown-item:focus {
  background: #bc2626 !important;
  color: white !important;
}
.cid-sM6YRQFV1t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sM6YRQFV1t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sM6YRQFV1t .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sM6YRQFV1t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sM6YRQFV1t .iconfont-wrapper {
  color: #b72929 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sM6YRQFV1t .dropdown-menu,
.cid-sM6YRQFV1t .navbar.opened {
  background: #ffffff !important;
}
.cid-sM6YRQFV1t .nav-item:focus,
.cid-sM6YRQFV1t .nav-link:focus {
  outline: none;
}
.cid-sM6YRQFV1t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sM6YRQFV1t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sM6YRQFV1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sM6YRQFV1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sM6YRQFV1t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sM6YRQFV1t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sM6YRQFV1t .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sM6YRQFV1t .navbar.opened {
  transition: all 0.3s;
}
.cid-sM6YRQFV1t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sM6YRQFV1t .navbar .navbar-logo img {
  width: auto;
}
.cid-sM6YRQFV1t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sM6YRQFV1t .navbar.collapsed {
  justify-content: center;
}
.cid-sM6YRQFV1t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sM6YRQFV1t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sM6YRQFV1t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sM6YRQFV1t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sM6YRQFV1t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sM6YRQFV1t .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-sM6YRQFV1t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sM6YRQFV1t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sM6YRQFV1t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sM6YRQFV1t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sM6YRQFV1t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sM6YRQFV1t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sM6YRQFV1t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sM6YRQFV1t .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-sM6YRQFV1t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sM6YRQFV1t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sM6YRQFV1t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sM6YRQFV1t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sM6YRQFV1t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sM6YRQFV1t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sM6YRQFV1t .navbar.navbar-short {
  min-height: 80px;
}
.cid-sM6YRQFV1t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sM6YRQFV1t .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sM6YRQFV1t .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-sM6YRQFV1t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sM6YRQFV1t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sM6YRQFV1t .dropdown-item.active,
.cid-sM6YRQFV1t .dropdown-item:active {
  background-color: transparent;
}
.cid-sM6YRQFV1t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sM6YRQFV1t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sM6YRQFV1t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sM6YRQFV1t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sM6YRQFV1t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sM6YRQFV1t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sM6YRQFV1t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sM6YRQFV1t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sM6YRQFV1t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sM6YRQFV1t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b72929;
}
.cid-sM6YRQFV1t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sM6YRQFV1t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sM6YRQFV1t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sM6YRQFV1t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sM6YRQFV1t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sM6YRQFV1t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sM6YRQFV1t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sM6YRQFV1t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sM6YRQFV1t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sM6YRQFV1t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sM6YRQFV1t .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-sM6YRQFV1t .navbar {
    height: 70px;
  }
  .cid-sM6YRQFV1t .navbar.opened {
    height: auto;
  }
  .cid-sM6YRQFV1t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sM70au4PxS {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #bc2626;
}
.cid-sM70au4PxS .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: #bc2626;
}
.cid-sM70au4PxS .svg-top .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sM70au4PxS .svg-top {
    width: 1000px;
  }
}
@media (max-width: 768px) {
  .cid-sM70au4PxS .text-content {
    max-width: none;
  }
}
.cid-sM70au4PxS .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sM70au4PxS .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sM70au4PxS .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-sM70au4PxS .icons {
    justify-content: center !important;
  }
  .cid-sM70au4PxS .text-content * {
    text-align: center;
  }
}
.cid-sM70au4PxS P {
  color: #ffffff;
}
.cid-sM70au4PxS .mbr-section-title {
  color: #ffffff;
}
.cid-sML3deJuS3 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-sML3deJuS3 .container {
    max-width: 1400px;
  }
}
.cid-sML3deJuS3 .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: #bc2626;
}
.cid-sML3deJuS3 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sML3deJuS3 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sML3deJuS3 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #b72929;
  margin-bottom: 2rem;
}
.cid-sML3deJuS3 .card-wrapper {
  margin-top: 3rem;
}
.cid-sML3deJuS3 .row {
  justify-content: center;
}
.cid-sML3deJuS3 .mbr-section-title {
  color: #b72929;
}
.cid-sML3deJuS3 .card-title,
.cid-sML3deJuS3 .iconfont-wrapper {
  color: #b72929;
}
.cid-sML3deJuS3 .card-text {
  color: #b72929;
}
.cid-sMjxMFSVY1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
.cid-sMjxMFSVY1 .mbr-section-title {
  color: #b72929;
}
.cid-sMjxMFSVY1 .mbr-text {
  color: #b72929;
}
.cid-sMjxMFSVY1 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-sMjxMFSVY1 .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: #bc2626;
}
.cid-sMjxMFSVY1 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sMjxMFSVY1 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sM6YSNPGiD {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-sM6YSNPGiD .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sM6YSNPGiD .wrapper {
  border: 2px solid #bc2626;
  padding: 6rem 4rem;
}
@media (max-width: 767px) {
  .cid-sM6YSNPGiD .wrapper {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sM6YSNPGiD .col-auto {
    margin: auto;
  }
}
.cid-sM6YSNPGiD .btn {
  min-height: 60px;
}
.cid-sM6YSNPGiD .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: #bc2626;
}
.cid-sM6YSNPGiD .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sM6YSNPGiD .svg-top {
    width: 1000px;
  }
}
.cid-sM6YSNPGiD .form-row > .col,
.cid-sM6YSNPGiD .form-row > [class*=col-] {
  padding-right: 1rem;
  padding-left: 1rem;
}
.cid-sM6YSNPGiD .form-control,
.cid-sM6YSNPGiD .field-input {
  padding: 0rem;
  background-color: #f8f8f8;
  border: none!important;
  border-bottom: 2px solid #e43f3f !important;
  border-color: #e43f3f !important;
  color: #000000;
  transition: 0.4s;
  height: 60px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 2rem;
  outline: none;
}
.cid-sM6YSNPGiD .form-control::-webkit-input-placeholder,
.cid-sM6YSNPGiD .field-input::-webkit-input-placeholder,
.cid-sM6YSNPGiD .form-control::-webkit-input-placeholder,
.cid-sM6YSNPGiD .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-sM6YSNPGiD .form-control:-moz-placeholder,
.cid-sM6YSNPGiD .field-input:-moz-placeholder,
.cid-sM6YSNPGiD .form-control:-moz-placeholder,
.cid-sM6YSNPGiD .field-input:-moz-placeholder {
  color: #000000;
}
.cid-sM6YSNPGiD .form-control:hover,
.cid-sM6YSNPGiD .field-input:hover,
.cid-sM6YSNPGiD .form-control:focus,
.cid-sM6YSNPGiD .field-input:focus {
  background-color: #f8f8f8;
  border-color: #000000;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-sM6YSNPGiD .form-control:hover::-webkit-input-placeholder,
.cid-sM6YSNPGiD .field-input:hover::-webkit-input-placeholder,
.cid-sM6YSNPGiD .form-control:focus::-webkit-input-placeholder,
.cid-sM6YSNPGiD .field-input:focus::-webkit-input-placeholder,
.cid-sM6YSNPGiD .form-control:hover::-webkit-input-placeholder,
.cid-sM6YSNPGiD .field-input:hover::-webkit-input-placeholder,
.cid-sM6YSNPGiD .form-control:focus::-webkit-input-placeholder,
.cid-sM6YSNPGiD .field-input:focus::-webkit-input-placeholder {
  color: #1a449a;
}
.cid-sM6YSNPGiD .form-control:hover:-moz-placeholder,
.cid-sM6YSNPGiD .field-input:hover:-moz-placeholder,
.cid-sM6YSNPGiD .form-control:focus:-moz-placeholder,
.cid-sM6YSNPGiD .field-input:focus:-moz-placeholder,
.cid-sM6YSNPGiD .form-control:hover:-moz-placeholder,
.cid-sM6YSNPGiD .field-input:hover:-moz-placeholder,
.cid-sM6YSNPGiD .form-control:focus:-moz-placeholder,
.cid-sM6YSNPGiD .field-input:focus:-moz-placeholder {
  color: #1a449a;
}
.cid-sM6YSNPGiD .jq-number__spin:hover,
.cid-sM6YSNPGiD .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #000000 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sM6YSNPGiD .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #e43f3f !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sM6YSNPGiD .jq-selectbox li,
.cid-sM6YSNPGiD .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-sM6YSNPGiD .jq-selectbox li:hover,
.cid-sM6YSNPGiD .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-sM6YSNPGiD .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sM6YSNPGiD .jq-number__spin.minus:hover:after,
.cid-sM6YSNPGiD .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-sM6YSNPGiD .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sM6YSNPGiD .jq-number__spin.minus:after,
.cid-sM6YSNPGiD .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-sM6YSNPGiD input::-webkit-clear-button {
  display: none;
}
.cid-sM6YSNPGiD input::-webkit-inner-spin-button {
  display: none;
}
.cid-sM6YSNPGiD input::-webkit-outer-spin-button {
  display: none;
}
.cid-sM6YSNPGiD input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sM6YSP7jfn {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #f8f8f8;
}
.cid-sM6YSP7jfn .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: #bc2626;
}
.cid-sM6YSP7jfn .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sM6YSP7jfn .svg-top {
    width: 1000px;
  }
}
.cid-sM6YSP7jfn .google-map {
  height: 30rem;
  position: relative;
}
.cid-sM6YSP7jfn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sM6YSP7jfn .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sM6YSP7jfn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sM6YSP7jfn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sM6YSQbRvf {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #bc2626;
}
.cid-sM6YSQbRvf svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-sM6YSQbRvf svg .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sM6YSQbRvf svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-sM6YSQbRvf .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sM6YSQbRvf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sM6YSQbRvf .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sM6YSQbRvf .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sM6YSQbRvf div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sM6YSQbRvf .copyright {
  color: #ffffff;
}
.cid-sML7RYrh2T {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-sML7RYrh2T .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sML7RYrh2T .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sML7RYrh2T .nav-link:hover:before {
  width: 100%;
}
.cid-sML7RYrh2T .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sML7RYrh2T nav.navbar {
  position: fixed;
}
.cid-sML7RYrh2T .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sML7RYrh2T .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-sML7RYrh2T .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sML7RYrh2T .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sML7RYrh2T .dropdown-item:hover,
.cid-sML7RYrh2T .dropdown-item:focus {
  background: #bc2626 !important;
  color: white !important;
}
.cid-sML7RYrh2T .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sML7RYrh2T .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sML7RYrh2T .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sML7RYrh2T .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sML7RYrh2T .iconfont-wrapper {
  color: #b72929 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sML7RYrh2T .dropdown-menu,
.cid-sML7RYrh2T .navbar.opened {
  background: #ffffff !important;
}
.cid-sML7RYrh2T .nav-item:focus,
.cid-sML7RYrh2T .nav-link:focus {
  outline: none;
}
.cid-sML7RYrh2T .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sML7RYrh2T .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sML7RYrh2T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sML7RYrh2T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sML7RYrh2T .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sML7RYrh2T .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sML7RYrh2T .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sML7RYrh2T .navbar.opened {
  transition: all 0.3s;
}
.cid-sML7RYrh2T .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sML7RYrh2T .navbar .navbar-logo img {
  width: auto;
}
.cid-sML7RYrh2T .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sML7RYrh2T .navbar.collapsed {
  justify-content: center;
}
.cid-sML7RYrh2T .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sML7RYrh2T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sML7RYrh2T .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sML7RYrh2T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sML7RYrh2T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sML7RYrh2T .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-sML7RYrh2T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sML7RYrh2T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sML7RYrh2T .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sML7RYrh2T .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sML7RYrh2T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sML7RYrh2T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sML7RYrh2T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sML7RYrh2T .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-sML7RYrh2T .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sML7RYrh2T .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sML7RYrh2T .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sML7RYrh2T .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sML7RYrh2T .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sML7RYrh2T .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sML7RYrh2T .navbar.navbar-short {
  min-height: 80px;
}
.cid-sML7RYrh2T .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sML7RYrh2T .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sML7RYrh2T .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-sML7RYrh2T .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sML7RYrh2T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sML7RYrh2T .dropdown-item.active,
.cid-sML7RYrh2T .dropdown-item:active {
  background-color: transparent;
}
.cid-sML7RYrh2T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sML7RYrh2T .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sML7RYrh2T .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sML7RYrh2T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sML7RYrh2T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sML7RYrh2T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sML7RYrh2T ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sML7RYrh2T .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sML7RYrh2T button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sML7RYrh2T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b72929;
}
.cid-sML7RYrh2T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sML7RYrh2T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sML7RYrh2T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sML7RYrh2T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sML7RYrh2T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sML7RYrh2T nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sML7RYrh2T nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sML7RYrh2T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sML7RYrh2T .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sML7RYrh2T a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sML7RYrh2T .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-sML7RYrh2T .navbar {
    height: 70px;
  }
  .cid-sML7RYrh2T .navbar.opened {
    height: auto;
  }
  .cid-sML7RYrh2T .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sML7RZoDva {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #bc2626;
}
.cid-sML7RZoDva .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: #bc2626;
}
.cid-sML7RZoDva .svg-top .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sML7RZoDva .svg-top {
    width: 1000px;
  }
}
@media (max-width: 768px) {
  .cid-sML7RZoDva .text-content {
    max-width: none;
  }
}
.cid-sML7RZoDva .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sML7RZoDva .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sML7RZoDva .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-sML7RZoDva .icons {
    justify-content: center !important;
  }
  .cid-sML7RZoDva .text-content * {
    text-align: center;
  }
}
.cid-sML7RZoDva P {
  color: #ffffff;
}
.cid-sML7RZoDva .mbr-section-title {
  color: #ffffff;
}
.cid-sML8K2qFSi {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
  overflow: hidden;
}
.cid-sML8K2qFSi .row {
  flex-direction: row-reverse;
}
.cid-sML8K2qFSi 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-sML8K2qFSi svg path {
  fill: #b72929;
}
@media (max-width: 992px) {
  .cid-sML8K2qFSi svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sML8K2qFSi 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-sML8K2qFSi .mbr-section-title {
  color: #b72929;
}
@media (min-width: 1400px) {
  .cid-sML8K2qFSi .col-12 {
    padding: 0 2rem;
  }
  .cid-sML8K2qFSi .row {
    margin: 0 -2rem;
  }
}
.cid-sML8K2qFSi .mbr-text,
.cid-sML8K2qFSi .mbr-section-btn {
  color: #b72929;
}
.cid-sML7S2aGTg {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #bc2626;
}
.cid-sML7S2aGTg svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-sML7S2aGTg svg .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sML7S2aGTg svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-sML7S2aGTg .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sML7S2aGTg .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sML7S2aGTg .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sML7S2aGTg .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sML7S2aGTg div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sML7S2aGTg .copyright {
  color: #ffffff;
}
.cid-sMLbm03haE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-sMLbm03haE .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sMLbm03haE .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sMLbm03haE .nav-link:hover:before {
  width: 100%;
}
.cid-sMLbm03haE .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sMLbm03haE nav.navbar {
  position: fixed;
}
.cid-sMLbm03haE .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sMLbm03haE .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-sMLbm03haE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMLbm03haE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMLbm03haE .dropdown-item:hover,
.cid-sMLbm03haE .dropdown-item:focus {
  background: #bc2626 !important;
  color: white !important;
}
.cid-sMLbm03haE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMLbm03haE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMLbm03haE .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sMLbm03haE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMLbm03haE .iconfont-wrapper {
  color: #b72929 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMLbm03haE .dropdown-menu,
.cid-sMLbm03haE .navbar.opened {
  background: #ffffff !important;
}
.cid-sMLbm03haE .nav-item:focus,
.cid-sMLbm03haE .nav-link:focus {
  outline: none;
}
.cid-sMLbm03haE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMLbm03haE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMLbm03haE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMLbm03haE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMLbm03haE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMLbm03haE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMLbm03haE .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sMLbm03haE .navbar.opened {
  transition: all 0.3s;
}
.cid-sMLbm03haE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMLbm03haE .navbar .navbar-logo img {
  width: auto;
}
.cid-sMLbm03haE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMLbm03haE .navbar.collapsed {
  justify-content: center;
}
.cid-sMLbm03haE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMLbm03haE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMLbm03haE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sMLbm03haE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMLbm03haE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMLbm03haE .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-sMLbm03haE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMLbm03haE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMLbm03haE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMLbm03haE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMLbm03haE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMLbm03haE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMLbm03haE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMLbm03haE .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-sMLbm03haE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMLbm03haE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMLbm03haE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMLbm03haE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMLbm03haE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMLbm03haE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMLbm03haE .navbar.navbar-short {
  min-height: 80px;
}
.cid-sMLbm03haE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMLbm03haE .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sMLbm03haE .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-sMLbm03haE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMLbm03haE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMLbm03haE .dropdown-item.active,
.cid-sMLbm03haE .dropdown-item:active {
  background-color: transparent;
}
.cid-sMLbm03haE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMLbm03haE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMLbm03haE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMLbm03haE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sMLbm03haE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMLbm03haE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMLbm03haE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMLbm03haE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMLbm03haE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMLbm03haE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b72929;
}
.cid-sMLbm03haE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMLbm03haE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMLbm03haE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMLbm03haE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMLbm03haE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMLbm03haE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMLbm03haE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMLbm03haE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMLbm03haE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMLbm03haE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMLbm03haE .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-sMLbm03haE .navbar {
    height: 70px;
  }
  .cid-sMLbm03haE .navbar.opened {
    height: auto;
  }
  .cid-sMLbm03haE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMLbm24Zhx {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #bc2626;
}
.cid-sMLbm24Zhx .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: #bc2626;
}
.cid-sMLbm24Zhx .svg-top .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sMLbm24Zhx .svg-top {
    width: 1000px;
  }
}
@media (max-width: 768px) {
  .cid-sMLbm24Zhx .text-content {
    max-width: none;
  }
}
.cid-sMLbm24Zhx .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sMLbm24Zhx .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sMLbm24Zhx .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-sMLbm24Zhx .icons {
    justify-content: center !important;
  }
  .cid-sMLbm24Zhx .text-content * {
    text-align: center;
  }
}
.cid-sMLbm24Zhx P {
  color: #ffffff;
}
.cid-sMLbm24Zhx .mbr-section-title {
  color: #ffffff;
}
.cid-sMLbz1jzgp {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sMLbz1jzgp .mbr-section-title {
  color: #b72929;
}
.cid-sMLbz1jzgp .mbr-text {
  color: #1a449a;
}
.cid-sMLbz1jzgp .mbr-section-subtitle {
  color: #232323;
}
.cid-sMLbz1jzgp .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: #bc2626;
}
.cid-sMLbz1jzgp .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sMLbz1jzgp .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sMLbm5luy9 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #bc2626;
}
.cid-sMLbm5luy9 svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-sMLbm5luy9 svg .st0 {
  fill: #bc2626;
}
@media (max-width: 992px) {
  .cid-sMLbm5luy9 svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-sMLbm5luy9 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMLbm5luy9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sMLbm5luy9 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sMLbm5luy9 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sMLbm5luy9 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sMLbm5luy9 .copyright {
  color: #ffffff;
}
