.btn {
  border-width: 2px;
}
body {
  font-family: JetBrains Mono;
}
.display-1 {
  font-family: 'pt-sans-narrow-bold';
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'pt-sans-narrow-bold';
  font-size: 3.1rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.875rem;
}
.display-4 {
  font-family: 'pt-sans-narrow-bold';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'pt-sans-narrow-bold';
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'pt-sans-narrow-bold';
  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: #9f1f1f !important;
}
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 0.8rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #9f1f1f !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #9f1f1f !important;
  border-color: #9f1f1f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #9f1f1f !important;
  border-color: #9f1f1f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9f1f1f !important;
  border-color: #9f1f1f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-primary-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #9f1f1f !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #9f1f1f;
  color: #9f1f1f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9f1f1f;
  background-color: transparent!important;
  border-color: #9f1f1f !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #9f1f1f !important;
  border-color: #9f1f1f !important;
}
.btn-primary-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #9f1f1f;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-primary-outline:hover {
  color: white;
}
.btn-primary-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-secondary-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #ff6666 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff6666;
  background-color: transparent!important;
  border-color: #ff6666 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #ff6666;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-secondary-outline:hover {
  color: white;
}
.btn-secondary-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-info-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #47b5ed !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #47b5ed;
  background-color: transparent!important;
  border-color: #47b5ed !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #47b5ed;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-info-outline:hover {
  color: white;
}
.btn-info-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-success-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #40b0bf !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #40b0bf;
  background-color: transparent!important;
  border-color: #40b0bf !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #40b0bf;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-success-outline:hover {
  color: white;
}
.btn-success-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-warning-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #ffe161 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffe161;
  background-color: transparent!important;
  border-color: #ffe161 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #ffe161;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-warning-outline:hover {
  color: white;
}
.btn-warning-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-danger-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #ff9966 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff9966;
  background-color: transparent!important;
  border-color: #ff9966 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #ff9966;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-danger-outline:hover {
  color: white;
}
.btn-danger-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-black-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #232323 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #232323;
  background-color: transparent!important;
  border-color: #232323 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #232323;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-black-outline:hover {
  color: white;
}
.btn-black-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.btn-white-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-delay: 0.2s;
  border-radius: 0;
  box-shadow: inset 0px 0px 0px 1px #ffffff !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #ffffff;
  background-color: transparent!important;
  border-color: #ffffff !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white-outline:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 500px;
  height: 100%;
  left: -60%;
  top: 0;
  background-position: 0 0;
  transform: translateY(90%) scale(0.9) translateX(-150px);
  transition: all 1s;
  z-index: -1;
  background: #ffffff;
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='561' height='85' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMax slice'%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='svg_1'%3E%3Cpath fill='transparent' class='st0' d='m-6.66292,-4.57555c23.4,0 23.4,6 46.7,6c23.4,0 23.4,-6 46.7,-6c23.4,0 23.4,6 46.8,6s23.4,-6 46.8,-6' id='svg_2'/%3E%3Cpath fill='black' class='st1' d='m187.45162,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_3'/%3E%3Cpath fill='black' class='st1' d='m-0.02952,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_4'/%3E%3Cpath fill='black' class='st1' d='m374.48614,9.67907c23.5,0 23.5,6 47,6s22.7,-10.8 46.2,-10.8s24.3,10.8 47.8,10.8s23.5,-6 47,-6l0,76.5l-188,0l0,-76.5z' id='svg_5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-white-outline:hover {
  color: white;
}
.btn-white-outline:hover:before {
  transform: translateY(-25%) scale(1.5) translateX(140px);
}
.text-primary {
  color: #9f1f1f !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #9f1f1f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #9f1f1f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #9f1f1f;
  border-color: #9f1f1f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #9f1f1f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e05e5e;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'pt-sans-narrow-bold';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #9f1f1f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'pt-sans-narrow-bold';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #9f1f1f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #9f1f1f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #9f1f1f;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #9f1f1f;
  border-bottom-color: #9f1f1f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #9f1f1f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%239f1f1f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-sBTRbfXEwz .navbar-dropdown {
  position: relative !important;
}
.cid-sBTRbfXEwz .navbar-dropdown {
  position: absolute !important;
}
.cid-sBTRbfXEwz .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sBTRbfXEwz .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sBTRbfXEwz .nav-link:hover:before {
  width: 100%;
}
.cid-sBTRbfXEwz .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sBTRbfXEwz .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sBTRbfXEwz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBTRbfXEwz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBTRbfXEwz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBTRbfXEwz .dropdown-item:hover,
.cid-sBTRbfXEwz .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sBTRbfXEwz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBTRbfXEwz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBTRbfXEwz .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sBTRbfXEwz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBTRbfXEwz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBTRbfXEwz .dropdown-menu,
.cid-sBTRbfXEwz .navbar.opened {
  background: #232323 !important;
}
.cid-sBTRbfXEwz .nav-item:focus,
.cid-sBTRbfXEwz .nav-link:focus {
  outline: none;
}
.cid-sBTRbfXEwz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBTRbfXEwz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBTRbfXEwz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBTRbfXEwz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBTRbfXEwz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBTRbfXEwz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBTRbfXEwz .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-sBTRbfXEwz .navbar.opened {
  transition: all 0.3s;
}
.cid-sBTRbfXEwz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBTRbfXEwz .navbar .navbar-logo img {
  width: auto;
}
.cid-sBTRbfXEwz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBTRbfXEwz .navbar.collapsed {
  justify-content: center;
}
.cid-sBTRbfXEwz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBTRbfXEwz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sBTRbfXEwz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sBTRbfXEwz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBTRbfXEwz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBTRbfXEwz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sBTRbfXEwz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBTRbfXEwz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBTRbfXEwz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBTRbfXEwz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBTRbfXEwz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBTRbfXEwz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBTRbfXEwz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBTRbfXEwz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sBTRbfXEwz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBTRbfXEwz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBTRbfXEwz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBTRbfXEwz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBTRbfXEwz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBTRbfXEwz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBTRbfXEwz .navbar.navbar-short {
  min-height: 80px;
}
.cid-sBTRbfXEwz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBTRbfXEwz .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sBTRbfXEwz .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sBTRbfXEwz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBTRbfXEwz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBTRbfXEwz .dropdown-item.active,
.cid-sBTRbfXEwz .dropdown-item:active {
  background-color: transparent;
}
.cid-sBTRbfXEwz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBTRbfXEwz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBTRbfXEwz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBTRbfXEwz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sBTRbfXEwz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBTRbfXEwz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBTRbfXEwz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBTRbfXEwz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBTRbfXEwz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBTRbfXEwz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBTRbfXEwz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBTRbfXEwz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBTRbfXEwz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBTRbfXEwz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBTRbfXEwz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBTRbfXEwz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBTRbfXEwz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBTRbfXEwz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBTRbfXEwz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sBTRbfXEwz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBTRbfXEwz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sBTRbfXEwz .navbar {
    height: 70px;
  }
  .cid-sBTRbfXEwz .navbar.opened {
    height: auto;
  }
  .cid-sBTRbfXEwz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBTRbk0udG {
  background-image: url("../../../assets/images/123-1600x1067.jpg");
  overflow: hidden;
}
.cid-sBTRbk0udG .svg-top {
  display: none;
}
.cid-sBTRbk0udG .row {
  flex-direction: row-reverse;
}
.cid-sBTRbk0udG svg {
  position: absolute;
  top: 50px;
  width: 1700px;
  right: -80px;
  transform: scaleX(1) scaleY(1.3) rotate(0deg);
  animation: 1.5s ease-in-out infinite alternate svg;
}
.cid-sBTRbk0udG svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sBTRbk0udG svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sBTRbk0udG svg {
    width: 800px;
  }
}
@keyframes svg {
  from {
    transform: scaleX(1.2) scaleY(1.35) rotate(-1deg);
  }
  to {
    transform: scaleX(1) scaleY(1.3) rotate(0deg);
  }
}
.cid-sBTRbk0udG .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sBTRbk0udG .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTRbk0udG .row {
    margin: 0 -2rem;
  }
}
.cid-sBTRbk0udG .mbr-text,
.cid-sBTRbk0udG .mbr-section-btn {
  color: #ffffff;
}
.cid-sMmCZS7yB9 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #932020;
}
@media (min-width: 1500px) {
  .cid-sMmCZS7yB9 .container {
    max-width: 1400px;
  }
}
.cid-sMmCZS7yB9 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sMmCZS7yB9 .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sMmCZS7yB9 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sMmCZS7yB9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sMmCZS7yB9 .card-wrapper {
  margin-top: 3rem;
}
.cid-sMmCZS7yB9 .row {
  justify-content: center;
}
.cid-sMmCZS7yB9 .mbr-section-title {
  color: #ffffff;
}
.cid-sMmCZS7yB9 .card-title,
.cid-sMmCZS7yB9 .iconfont-wrapper {
  color: #ffffff;
}
.cid-sMmCZS7yB9 .card-text {
  color: #ffffff;
}
.cid-sMmCZS7yB9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sBTSlAnIDB {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sBTSlAnIDB .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sBTSlAnIDB .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTSlAnIDB .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTSlAnIDB .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sBTSlAnIDB .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTSlAnIDB .row {
    margin: 0 -2rem;
  }
}
.cid-sBTSlAnIDB .mbr-text,
.cid-sBTSlAnIDB .mbr-section-btn {
  color: #932020;
}
.cid-sBTSna2jNS {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-color: #932020;
}
.cid-sBTSna2jNS .row {
  flex-direction: row-reverse;
}
.cid-sBTSna2jNS .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sBTSna2jNS .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sBTSna2jNS .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sBTSna2jNS .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTSna2jNS .row {
    margin: 0 -2rem;
  }
}
.cid-sBTSna2jNS .mbr-text,
.cid-sBTSna2jNS .mbr-section-btn {
  color: #ffffff;
}
.cid-sBTSna2jNS .mbr-section-title {
  color: #ffffff;
}
.cid-sBTSqJR3HN {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sBTSqJR3HN .mbr-section-title {
  color: #932020;
}
.cid-sBTSqJR3HN .mbr-text {
  color: #932020;
}
.cid-sBTSqJR3HN .mbr-section-subtitle {
  color: #932020;
}
.cid-sBTSqJR3HN .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sBTSqJR3HN .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTSqJR3HN .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTSfk4cDF {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sBTSfk4cDF .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-sBTSfk4cDF .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sBTSfk4cDF .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sBTSfk4cDF .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTSfk4cDF .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTSfk4cDF .img1 {
  background: #932020;
}
.cid-sBTSfk4cDF .img2 {
  background: #932020;
}
.cid-sBTSfk4cDF .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sBTSfk4cDF .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sBTSfk4cDF .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBTSfk4cDF .card-wrapper {
    flex-direction: column;
  }
  .cid-sBTSfk4cDF .card-box {
    padding: 1rem;
  }
  .cid-sBTSfk4cDF .card-box,
  .cid-sBTSfk4cDF .img-wrapper {
    width: 100%;
  }
  .cid-sBTSfk4cDF .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sBTSfk4cDF .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-sBTSfk4cDF .card-subtitle {
  color: #1a449a;
}
.cid-sBTSfk4cDF .mbr-text,
.cid-sBTSfk4cDF .link-wrap {
  color: #555555;
}
.cid-sBTSfk4cDF .card-title,
.cid-sBTSfk4cDF .card-box {
  color: #932020;
}
.cid-sBTSfk4cDF .mbr-text,
.cid-sBTSfk4cDF .mbr-section-btn {
  color: #932020;
}
.cid-sMmNvI55yb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #932020;
}
.cid-sMmNvI55yb .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sMmNvI55yb .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sMmNvI55yb .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sMmNvI55yb .col-12 {
    padding: 0 2rem;
  }
  .cid-sMmNvI55yb .row {
    margin: 0 -2rem;
  }
}
.cid-sMmNvI55yb .mbr-text,
.cid-sMmNvI55yb .mbr-section-btn {
  color: #ffffff;
}
.cid-sMmNvI55yb .mbr-section-title {
  color: #ffffff;
}
.cid-sMmNwMbNfA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sMmNwMbNfA .row {
  flex-direction: row-reverse;
}
.cid-sMmNwMbNfA .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sMmNwMbNfA .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sMmNwMbNfA .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sMmNwMbNfA .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sMmNwMbNfA .col-12 {
    padding: 0 2rem;
  }
  .cid-sMmNwMbNfA .row {
    margin: 0 -2rem;
  }
}
.cid-sMmNwMbNfA .mbr-text,
.cid-sMmNwMbNfA .mbr-section-btn {
  color: #932020;
}
.cid-sMmKQUUzNF.popup-builder {
  background-color: #ffffff;
}
.cid-sMmKQUUzNF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sMmKQUUzNF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sMmKQUUzNF .modal-content,
.cid-sMmKQUUzNF .modal-dialog {
  height: auto;
}
.cid-sMmKQUUzNF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sMmKQUUzNF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sMmKQUUzNF .form-wrapper .mbr-form .form-group,
  .cid-sMmKQUUzNF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sMmKQUUzNF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sMmKQUUzNF .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-sMmKQUUzNF .mbr-text {
  text-align: center;
  color: #932020;
}
.cid-sMmKQUUzNF .pt-0 {
  padding-top: 0 !important;
}
.cid-sMmKQUUzNF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sMmKQUUzNF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sMmKQUUzNF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sMmKQUUzNF .modal-open {
  overflow: hidden;
}
.cid-sMmKQUUzNF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sMmKQUUzNF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sMmKQUUzNF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sMmKQUUzNF .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-sMmKQUUzNF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sMmKQUUzNF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sMmKQUUzNF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sMmKQUUzNF .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-sMmKQUUzNF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sMmKQUUzNF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sMmKQUUzNF .modal-backdrop.fade {
  opacity: 0;
}
.cid-sMmKQUUzNF .modal-backdrop.show {
  opacity: .5;
}
.cid-sMmKQUUzNF .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-sMmKQUUzNF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sMmKQUUzNF .modal-header {
    padding: 1rem;
  }
}
.cid-sMmKQUUzNF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sMmKQUUzNF .modal-header .close svg {
  fill: #353535;
}
.cid-sMmKQUUzNF .modal-header .close:hover {
  opacity: 1;
}
.cid-sMmKQUUzNF .modal-header .close:focus {
  outline: none;
}
.cid-sMmKQUUzNF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sMmKQUUzNF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sMmKQUUzNF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sMmKQUUzNF .modal-body {
    padding: 1rem;
  }
}
.cid-sMmKQUUzNF .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-sMmKQUUzNF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sMmKQUUzNF .modal-footer {
    padding: 1rem;
  }
}
.cid-sMmKQUUzNF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sMmKQUUzNF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sMmKQUUzNF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sMmKQUUzNF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sMmKQUUzNF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sMmKQUUzNF .modal-lg,
  .cid-sMmKQUUzNF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sMmKQUUzNF .modal-xl {
    max-width: 1140px;
  }
}
.cid-sMmKQUUzNF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sMmKQUUzNF .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-sMmKQUUzNF .form-group {
  margin-bottom: 1rem;
}
.cid-sMmKQUUzNF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sMmKQUUzNF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sMmKQUUzNF .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-sMmKQUUzNF .mbr-section-btn {
  margin: 0;
}
.cid-sMmKQUUzNF .mbr-section-btn .btn {
  margin: 0;
}
.cid-sMmARlwILD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-sMmARlwILD .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sMmARlwILD .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sMmARlwILD .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sMmARlwILD .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sMmARlwILD .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sMmARlwILD .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #9f1f1f;
}
@media (max-width: 767px) {
  .cid-sMmARlwILD .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sMmARlwILD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sMmARlwILD .mbr-section-title {
  color: #ffffff;
}
.cid-sMmC2jD8Ae {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #932020;
  overflow: hidden;
}
.cid-sMmC2jD8Ae .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sQOSfCFNa1 .navbar-dropdown {
  position: relative !important;
}
.cid-sQOSfCFNa1 .navbar-dropdown {
  position: absolute !important;
}
.cid-sQOSfCFNa1 .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sQOSfCFNa1 .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sQOSfCFNa1 .nav-link:hover:before {
  width: 100%;
}
.cid-sQOSfCFNa1 .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sQOSfCFNa1 .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sQOSfCFNa1 .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-sQOSfCFNa1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQOSfCFNa1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQOSfCFNa1 .dropdown-item:hover,
.cid-sQOSfCFNa1 .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sQOSfCFNa1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQOSfCFNa1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQOSfCFNa1 .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sQOSfCFNa1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQOSfCFNa1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQOSfCFNa1 .dropdown-menu,
.cid-sQOSfCFNa1 .navbar.opened {
  background: #232323 !important;
}
.cid-sQOSfCFNa1 .nav-item:focus,
.cid-sQOSfCFNa1 .nav-link:focus {
  outline: none;
}
.cid-sQOSfCFNa1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQOSfCFNa1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQOSfCFNa1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQOSfCFNa1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQOSfCFNa1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQOSfCFNa1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQOSfCFNa1 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-sQOSfCFNa1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sQOSfCFNa1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQOSfCFNa1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sQOSfCFNa1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQOSfCFNa1 .navbar.collapsed {
  justify-content: center;
}
.cid-sQOSfCFNa1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQOSfCFNa1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQOSfCFNa1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sQOSfCFNa1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQOSfCFNa1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQOSfCFNa1 .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-sQOSfCFNa1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQOSfCFNa1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQOSfCFNa1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQOSfCFNa1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQOSfCFNa1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQOSfCFNa1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQOSfCFNa1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQOSfCFNa1 .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-sQOSfCFNa1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQOSfCFNa1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQOSfCFNa1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQOSfCFNa1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQOSfCFNa1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQOSfCFNa1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQOSfCFNa1 .navbar.navbar-short {
  min-height: 80px;
}
.cid-sQOSfCFNa1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQOSfCFNa1 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sQOSfCFNa1 .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-sQOSfCFNa1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQOSfCFNa1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQOSfCFNa1 .dropdown-item.active,
.cid-sQOSfCFNa1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sQOSfCFNa1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQOSfCFNa1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQOSfCFNa1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQOSfCFNa1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sQOSfCFNa1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQOSfCFNa1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQOSfCFNa1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQOSfCFNa1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQOSfCFNa1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQOSfCFNa1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sQOSfCFNa1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQOSfCFNa1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQOSfCFNa1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQOSfCFNa1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQOSfCFNa1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQOSfCFNa1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQOSfCFNa1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQOSfCFNa1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQOSfCFNa1 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sQOSfCFNa1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQOSfCFNa1 .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-sQOSfCFNa1 .navbar {
    height: 70px;
  }
  .cid-sQOSfCFNa1 .navbar.opened {
    height: auto;
  }
  .cid-sQOSfCFNa1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQOSfDA155 {
  background-image: url("../../../assets/images/123-1600x1067.jpg");
  overflow: hidden;
}
.cid-sQOSfDA155 .svg-top {
  display: none;
}
.cid-sQOSfDA155 .row {
  flex-direction: row-reverse;
}
.cid-sQOSfDA155 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-sQOSfDA155 svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sQOSfDA155 svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sQOSfDA155 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-sQOSfDA155 .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sQOSfDA155 .col-12 {
    padding: 0 2rem;
  }
  .cid-sQOSfDA155 .row {
    margin: 0 -2rem;
  }
}
.cid-sQOSfDA155 .mbr-text,
.cid-sQOSfDA155 .mbr-section-btn {
  color: #ffffff;
}
.cid-sQOSfE7hpD {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #932020;
}
@media (min-width: 1500px) {
  .cid-sQOSfE7hpD .container {
    max-width: 1400px;
  }
}
.cid-sQOSfE7hpD .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sQOSfE7hpD .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sQOSfE7hpD .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sQOSfE7hpD .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sQOSfE7hpD .card-wrapper {
  margin-top: 3rem;
}
.cid-sQOSfE7hpD .row {
  justify-content: center;
}
.cid-sQOSfE7hpD .mbr-section-title {
  color: #ffffff;
}
.cid-sQOSfE7hpD .card-title,
.cid-sQOSfE7hpD .iconfont-wrapper {
  color: #ffffff;
}
.cid-sQOSfE7hpD .card-text {
  color: #ffffff;
}
.cid-sQOSfE7hpD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sQOSfEIg0H {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sQOSfEIg0H .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sQOSfEIg0H .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sQOSfEIg0H .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sQOSfEIg0H .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sQOSfEIg0H .col-12 {
    padding: 0 2rem;
  }
  .cid-sQOSfEIg0H .row {
    margin: 0 -2rem;
  }
}
.cid-sQOSfEIg0H .mbr-text,
.cid-sQOSfEIg0H .mbr-section-btn {
  color: #932020;
}
.cid-sQOSfFavaD {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-color: #932020;
}
.cid-sQOSfFavaD .row {
  flex-direction: row-reverse;
}
.cid-sQOSfFavaD .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sQOSfFavaD .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sQOSfFavaD .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sQOSfFavaD .col-12 {
    padding: 0 2rem;
  }
  .cid-sQOSfFavaD .row {
    margin: 0 -2rem;
  }
}
.cid-sQOSfFavaD .mbr-text,
.cid-sQOSfFavaD .mbr-section-btn {
  color: #ffffff;
}
.cid-sQOSfFavaD .mbr-section-title {
  color: #ffffff;
}
.cid-sQOSfFEXo8 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sQOSfFEXo8 .mbr-section-title {
  color: #932020;
}
.cid-sQOSfFEXo8 .mbr-text {
  color: #932020;
}
.cid-sQOSfFEXo8 .mbr-section-subtitle {
  color: #932020;
}
.cid-sQOSfFEXo8 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sQOSfFEXo8 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sQOSfFEXo8 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sQOSfG63P5 {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sQOSfG63P5 .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-sQOSfG63P5 .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sQOSfG63P5 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sQOSfG63P5 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sQOSfG63P5 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sQOSfG63P5 .img1 {
  background: #932020;
}
.cid-sQOSfG63P5 .img2 {
  background: #932020;
}
.cid-sQOSfG63P5 .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sQOSfG63P5 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sQOSfG63P5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQOSfG63P5 .card-wrapper {
    flex-direction: column;
  }
  .cid-sQOSfG63P5 .card-box {
    padding: 1rem;
  }
  .cid-sQOSfG63P5 .card-box,
  .cid-sQOSfG63P5 .img-wrapper {
    width: 100%;
  }
  .cid-sQOSfG63P5 .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sQOSfG63P5 .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-sQOSfG63P5 .card-subtitle {
  color: #1a449a;
}
.cid-sQOSfG63P5 .mbr-text,
.cid-sQOSfG63P5 .link-wrap {
  color: #555555;
}
.cid-sQOSfG63P5 .card-title,
.cid-sQOSfG63P5 .card-box {
  color: #932020;
}
.cid-sQOSfG63P5 .mbr-text,
.cid-sQOSfG63P5 .mbr-section-btn {
  color: #932020;
}
.cid-sQOSfGDMoH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #932020;
}
.cid-sQOSfGDMoH .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sQOSfGDMoH .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sQOSfGDMoH .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sQOSfGDMoH .col-12 {
    padding: 0 2rem;
  }
  .cid-sQOSfGDMoH .row {
    margin: 0 -2rem;
  }
}
.cid-sQOSfGDMoH .mbr-text,
.cid-sQOSfGDMoH .mbr-section-btn {
  color: #ffffff;
}
.cid-sQOSfGDMoH .mbr-section-title {
  color: #ffffff;
}
.cid-sQOSfH8mGf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sQOSfH8mGf .row {
  flex-direction: row-reverse;
}
.cid-sQOSfH8mGf .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sQOSfH8mGf .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sQOSfH8mGf .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sQOSfH8mGf .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sQOSfH8mGf .col-12 {
    padding: 0 2rem;
  }
  .cid-sQOSfH8mGf .row {
    margin: 0 -2rem;
  }
}
.cid-sQOSfH8mGf .mbr-text,
.cid-sQOSfH8mGf .mbr-section-btn {
  color: #932020;
}
.cid-sQP1NMB91j {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner2-1800x623.jpg");
}
.cid-sQP1NMB91j .mbr-text,
.cid-sQP1NMB91j .mbr-section-btn {
  color: #f8f8f8;
}
.cid-sQOSfHCP61.popup-builder {
  background-color: #ffffff;
}
.cid-sQOSfHCP61.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sQOSfHCP61.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sQOSfHCP61 .modal-content,
.cid-sQOSfHCP61 .modal-dialog {
  height: auto;
}
.cid-sQOSfHCP61 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sQOSfHCP61 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sQOSfHCP61 .form-wrapper .mbr-form .form-group,
  .cid-sQOSfHCP61 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sQOSfHCP61 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sQOSfHCP61 .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-sQOSfHCP61 .mbr-text {
  text-align: center;
  color: #932020;
}
.cid-sQOSfHCP61 .pt-0 {
  padding-top: 0 !important;
}
.cid-sQOSfHCP61 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sQOSfHCP61 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sQOSfHCP61 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sQOSfHCP61 .modal-open {
  overflow: hidden;
}
.cid-sQOSfHCP61 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sQOSfHCP61 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sQOSfHCP61 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sQOSfHCP61 .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-sQOSfHCP61 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sQOSfHCP61 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sQOSfHCP61 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sQOSfHCP61 .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-sQOSfHCP61 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sQOSfHCP61 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sQOSfHCP61 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sQOSfHCP61 .modal-backdrop.show {
  opacity: .5;
}
.cid-sQOSfHCP61 .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-sQOSfHCP61 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sQOSfHCP61 .modal-header {
    padding: 1rem;
  }
}
.cid-sQOSfHCP61 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sQOSfHCP61 .modal-header .close svg {
  fill: #353535;
}
.cid-sQOSfHCP61 .modal-header .close:hover {
  opacity: 1;
}
.cid-sQOSfHCP61 .modal-header .close:focus {
  outline: none;
}
.cid-sQOSfHCP61 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sQOSfHCP61 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sQOSfHCP61 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sQOSfHCP61 .modal-body {
    padding: 1rem;
  }
}
.cid-sQOSfHCP61 .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-sQOSfHCP61 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sQOSfHCP61 .modal-footer {
    padding: 1rem;
  }
}
.cid-sQOSfHCP61 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sQOSfHCP61 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sQOSfHCP61 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sQOSfHCP61 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sQOSfHCP61 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sQOSfHCP61 .modal-lg,
  .cid-sQOSfHCP61 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sQOSfHCP61 .modal-xl {
    max-width: 1140px;
  }
}
.cid-sQOSfHCP61 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sQOSfHCP61 .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-sQOSfHCP61 .form-group {
  margin-bottom: 1rem;
}
.cid-sQOSfHCP61 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sQOSfHCP61 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sQOSfHCP61 .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-sQOSfHCP61 .mbr-section-btn {
  margin: 0;
}
.cid-sQOSfHCP61 .mbr-section-btn .btn {
  margin: 0;
}
.cid-sQOSfIhrZV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-sQOSfIhrZV .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sQOSfIhrZV .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sQOSfIhrZV .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sQOSfIhrZV .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sQOSfIhrZV .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sQOSfIhrZV .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #9f1f1f;
}
@media (max-width: 767px) {
  .cid-sQOSfIhrZV .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sQOSfIhrZV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sQOSfIhrZV .mbr-section-title {
  color: #ffffff;
}
.cid-sQOSfJ5Cwc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #932020;
  overflow: hidden;
}
.cid-sQOSfJ5Cwc .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sR7wIynPzD .navbar-dropdown {
  position: relative !important;
}
.cid-sR7wIynPzD .navbar-dropdown {
  position: absolute !important;
}
.cid-sR7wIynPzD .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sR7wIynPzD .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sR7wIynPzD .nav-link:hover:before {
  width: 100%;
}
.cid-sR7wIynPzD .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sR7wIynPzD .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sR7wIynPzD .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-sR7wIynPzD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sR7wIynPzD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sR7wIynPzD .dropdown-item:hover,
.cid-sR7wIynPzD .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sR7wIynPzD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sR7wIynPzD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sR7wIynPzD .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sR7wIynPzD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sR7wIynPzD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sR7wIynPzD .dropdown-menu,
.cid-sR7wIynPzD .navbar.opened {
  background: #232323 !important;
}
.cid-sR7wIynPzD .nav-item:focus,
.cid-sR7wIynPzD .nav-link:focus {
  outline: none;
}
.cid-sR7wIynPzD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sR7wIynPzD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sR7wIynPzD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sR7wIynPzD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sR7wIynPzD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR7wIynPzD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR7wIynPzD .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-sR7wIynPzD .navbar.opened {
  transition: all 0.3s;
}
.cid-sR7wIynPzD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sR7wIynPzD .navbar .navbar-logo img {
  width: auto;
}
.cid-sR7wIynPzD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR7wIynPzD .navbar.collapsed {
  justify-content: center;
}
.cid-sR7wIynPzD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR7wIynPzD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR7wIynPzD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sR7wIynPzD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR7wIynPzD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sR7wIynPzD .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-sR7wIynPzD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR7wIynPzD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sR7wIynPzD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sR7wIynPzD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR7wIynPzD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR7wIynPzD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR7wIynPzD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sR7wIynPzD .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-sR7wIynPzD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sR7wIynPzD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR7wIynPzD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sR7wIynPzD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sR7wIynPzD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sR7wIynPzD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sR7wIynPzD .navbar.navbar-short {
  min-height: 80px;
}
.cid-sR7wIynPzD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sR7wIynPzD .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sR7wIynPzD .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-sR7wIynPzD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR7wIynPzD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR7wIynPzD .dropdown-item.active,
.cid-sR7wIynPzD .dropdown-item:active {
  background-color: transparent;
}
.cid-sR7wIynPzD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sR7wIynPzD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR7wIynPzD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR7wIynPzD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sR7wIynPzD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR7wIynPzD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR7wIynPzD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sR7wIynPzD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sR7wIynPzD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sR7wIynPzD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sR7wIynPzD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sR7wIynPzD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7wIynPzD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7wIynPzD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sR7wIynPzD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7wIynPzD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sR7wIynPzD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sR7wIynPzD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7wIynPzD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sR7wIynPzD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sR7wIynPzD .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-sR7wIynPzD .navbar {
    height: 70px;
  }
  .cid-sR7wIynPzD .navbar.opened {
    height: auto;
  }
  .cid-sR7wIynPzD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR7wIyVd10 {
  background-image: url("../../../assets/images/123-1600x1067.jpg");
  overflow: hidden;
}
.cid-sR7wIyVd10 .svg-top {
  display: none;
}
.cid-sR7wIyVd10 .row {
  flex-direction: row-reverse;
}
.cid-sR7wIyVd10 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-sR7wIyVd10 svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7wIyVd10 svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sR7wIyVd10 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-sR7wIyVd10 .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sR7wIyVd10 .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7wIyVd10 .row {
    margin: 0 -2rem;
  }
}
.cid-sR7wIyVd10 .mbr-text,
.cid-sR7wIyVd10 .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7wIzjDd6 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #932020;
}
@media (min-width: 1500px) {
  .cid-sR7wIzjDd6 .container {
    max-width: 1400px;
  }
}
.cid-sR7wIzjDd6 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7wIzjDd6 .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7wIzjDd6 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7wIzjDd6 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sR7wIzjDd6 .card-wrapper {
  margin-top: 3rem;
}
.cid-sR7wIzjDd6 .row {
  justify-content: center;
}
.cid-sR7wIzjDd6 .mbr-section-title {
  color: #ffffff;
}
.cid-sR7wIzjDd6 .card-title,
.cid-sR7wIzjDd6 .iconfont-wrapper {
  color: #ffffff;
}
.cid-sR7wIzjDd6 .card-text {
  color: #ffffff;
}
.cid-sR7wIzjDd6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7wIzONTL {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sR7wIzONTL .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7wIzONTL .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7wIzONTL .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7wIzONTL .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7wIzONTL .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7wIzONTL .row {
    margin: 0 -2rem;
  }
}
.cid-sR7wIzONTL .mbr-text,
.cid-sR7wIzONTL .mbr-section-btn {
  color: #932020;
}
.cid-sR7wIAim70 {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-color: #932020;
}
.cid-sR7wIAim70 .row {
  flex-direction: row-reverse;
}
.cid-sR7wIAim70 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7wIAim70 .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7wIAim70 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7wIAim70 .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7wIAim70 .row {
    margin: 0 -2rem;
  }
}
.cid-sR7wIAim70 .mbr-text,
.cid-sR7wIAim70 .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7wIAim70 .mbr-section-title {
  color: #ffffff;
}
.cid-sR7wIAMyOZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sR7wIAMyOZ .mbr-section-title {
  color: #932020;
}
.cid-sR7wIAMyOZ .mbr-text {
  color: #932020;
}
.cid-sR7wIAMyOZ .mbr-section-subtitle {
  color: #932020;
}
.cid-sR7wIAMyOZ .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7wIAMyOZ .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7wIAMyOZ .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7wIBaYDb {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sR7wIBaYDb .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-sR7wIBaYDb .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sR7wIBaYDb .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7wIBaYDb .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7wIBaYDb .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7wIBaYDb .img1 {
  background: #932020;
}
.cid-sR7wIBaYDb .img2 {
  background: #932020;
}
.cid-sR7wIBaYDb .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sR7wIBaYDb .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR7wIBaYDb .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR7wIBaYDb .card-wrapper {
    flex-direction: column;
  }
  .cid-sR7wIBaYDb .card-box {
    padding: 1rem;
  }
  .cid-sR7wIBaYDb .card-box,
  .cid-sR7wIBaYDb .img-wrapper {
    width: 100%;
  }
  .cid-sR7wIBaYDb .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR7wIBaYDb .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-sR7wIBaYDb .card-subtitle {
  color: #1a449a;
}
.cid-sR7wIBaYDb .mbr-text,
.cid-sR7wIBaYDb .link-wrap {
  color: #555555;
}
.cid-sR7wIBaYDb .card-title,
.cid-sR7wIBaYDb .card-box {
  color: #932020;
}
.cid-sR7wIBaYDb .mbr-text,
.cid-sR7wIBaYDb .mbr-section-btn {
  color: #932020;
}
.cid-sR7wIBJSsH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #932020;
}
.cid-sR7wIBJSsH .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7wIBJSsH .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7wIBJSsH .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7wIBJSsH .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7wIBJSsH .row {
    margin: 0 -2rem;
  }
}
.cid-sR7wIBJSsH .mbr-text,
.cid-sR7wIBJSsH .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7wIBJSsH .mbr-section-title {
  color: #ffffff;
}
.cid-sR7wICdha8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sR7wICdha8 .row {
  flex-direction: row-reverse;
}
.cid-sR7wICdha8 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7wICdha8 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sR7wICdha8 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7wICdha8 .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7wICdha8 .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7wICdha8 .row {
    margin: 0 -2rem;
  }
}
.cid-sR7wICdha8 .mbr-text,
.cid-sR7wICdha8 .mbr-section-btn {
  color: #932020;
}
.cid-sR7wICI49R {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/car10487-2000x1250.jpg");
}
.cid-sR7wICI49R .mbr-text,
.cid-sR7wICI49R .mbr-section-btn {
  color: #f8f8f8;
}
.cid-sR7wIDoDeK.popup-builder {
  background-color: #ffffff;
}
.cid-sR7wIDoDeK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sR7wIDoDeK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sR7wIDoDeK .modal-content,
.cid-sR7wIDoDeK .modal-dialog {
  height: auto;
}
.cid-sR7wIDoDeK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sR7wIDoDeK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sR7wIDoDeK .form-wrapper .mbr-form .form-group,
  .cid-sR7wIDoDeK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sR7wIDoDeK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sR7wIDoDeK .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-sR7wIDoDeK .mbr-text {
  text-align: center;
  color: #932020;
}
.cid-sR7wIDoDeK .pt-0 {
  padding-top: 0 !important;
}
.cid-sR7wIDoDeK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sR7wIDoDeK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sR7wIDoDeK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sR7wIDoDeK .modal-open {
  overflow: hidden;
}
.cid-sR7wIDoDeK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sR7wIDoDeK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sR7wIDoDeK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sR7wIDoDeK .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-sR7wIDoDeK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sR7wIDoDeK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sR7wIDoDeK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sR7wIDoDeK .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-sR7wIDoDeK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sR7wIDoDeK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sR7wIDoDeK .modal-backdrop.fade {
  opacity: 0;
}
.cid-sR7wIDoDeK .modal-backdrop.show {
  opacity: .5;
}
.cid-sR7wIDoDeK .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-sR7wIDoDeK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7wIDoDeK .modal-header {
    padding: 1rem;
  }
}
.cid-sR7wIDoDeK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sR7wIDoDeK .modal-header .close svg {
  fill: #353535;
}
.cid-sR7wIDoDeK .modal-header .close:hover {
  opacity: 1;
}
.cid-sR7wIDoDeK .modal-header .close:focus {
  outline: none;
}
.cid-sR7wIDoDeK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sR7wIDoDeK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sR7wIDoDeK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7wIDoDeK .modal-body {
    padding: 1rem;
  }
}
.cid-sR7wIDoDeK .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-sR7wIDoDeK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7wIDoDeK .modal-footer {
    padding: 1rem;
  }
}
.cid-sR7wIDoDeK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sR7wIDoDeK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sR7wIDoDeK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sR7wIDoDeK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sR7wIDoDeK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sR7wIDoDeK .modal-lg,
  .cid-sR7wIDoDeK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sR7wIDoDeK .modal-xl {
    max-width: 1140px;
  }
}
.cid-sR7wIDoDeK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sR7wIDoDeK .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-sR7wIDoDeK .form-group {
  margin-bottom: 1rem;
}
.cid-sR7wIDoDeK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sR7wIDoDeK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sR7wIDoDeK .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-sR7wIDoDeK .mbr-section-btn {
  margin: 0;
}
.cid-sR7wIDoDeK .mbr-section-btn .btn {
  margin: 0;
}
.cid-sR7wIEiayb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-sR7wIEiayb .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sR7wIEiayb .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sR7wIEiayb .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sR7wIEiayb .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sR7wIEiayb .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sR7wIEiayb .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #9f1f1f;
}
@media (max-width: 767px) {
  .cid-sR7wIEiayb .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sR7wIEiayb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7wIEiayb .mbr-section-title {
  color: #ffffff;
}
.cid-sR7wIF2N6W {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #932020;
  overflow: hidden;
}
.cid-sR7wIF2N6W .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sR7yvLMNk8 .navbar-dropdown {
  position: relative !important;
}
.cid-sR7yvLMNk8 .navbar-dropdown {
  position: absolute !important;
}
.cid-sR7yvLMNk8 .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sR7yvLMNk8 .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sR7yvLMNk8 .nav-link:hover:before {
  width: 100%;
}
.cid-sR7yvLMNk8 .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sR7yvLMNk8 .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sR7yvLMNk8 .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-sR7yvLMNk8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sR7yvLMNk8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sR7yvLMNk8 .dropdown-item:hover,
.cid-sR7yvLMNk8 .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sR7yvLMNk8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sR7yvLMNk8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sR7yvLMNk8 .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sR7yvLMNk8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sR7yvLMNk8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sR7yvLMNk8 .dropdown-menu,
.cid-sR7yvLMNk8 .navbar.opened {
  background: #232323 !important;
}
.cid-sR7yvLMNk8 .nav-item:focus,
.cid-sR7yvLMNk8 .nav-link:focus {
  outline: none;
}
.cid-sR7yvLMNk8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sR7yvLMNk8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sR7yvLMNk8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sR7yvLMNk8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sR7yvLMNk8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR7yvLMNk8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR7yvLMNk8 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-sR7yvLMNk8 .navbar.opened {
  transition: all 0.3s;
}
.cid-sR7yvLMNk8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sR7yvLMNk8 .navbar .navbar-logo img {
  width: auto;
}
.cid-sR7yvLMNk8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR7yvLMNk8 .navbar.collapsed {
  justify-content: center;
}
.cid-sR7yvLMNk8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR7yvLMNk8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR7yvLMNk8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sR7yvLMNk8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR7yvLMNk8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sR7yvLMNk8 .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-sR7yvLMNk8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR7yvLMNk8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sR7yvLMNk8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sR7yvLMNk8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR7yvLMNk8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR7yvLMNk8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR7yvLMNk8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sR7yvLMNk8 .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-sR7yvLMNk8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sR7yvLMNk8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR7yvLMNk8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sR7yvLMNk8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sR7yvLMNk8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sR7yvLMNk8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sR7yvLMNk8 .navbar.navbar-short {
  min-height: 80px;
}
.cid-sR7yvLMNk8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sR7yvLMNk8 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sR7yvLMNk8 .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-sR7yvLMNk8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR7yvLMNk8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR7yvLMNk8 .dropdown-item.active,
.cid-sR7yvLMNk8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sR7yvLMNk8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sR7yvLMNk8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR7yvLMNk8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR7yvLMNk8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sR7yvLMNk8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR7yvLMNk8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR7yvLMNk8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sR7yvLMNk8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sR7yvLMNk8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sR7yvLMNk8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sR7yvLMNk8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sR7yvLMNk8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7yvLMNk8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7yvLMNk8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sR7yvLMNk8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7yvLMNk8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sR7yvLMNk8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sR7yvLMNk8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7yvLMNk8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sR7yvLMNk8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sR7yvLMNk8 .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-sR7yvLMNk8 .navbar {
    height: 70px;
  }
  .cid-sR7yvLMNk8 .navbar.opened {
    height: auto;
  }
  .cid-sR7yvLMNk8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR7yvMoLtv {
  background-image: url("../../../assets/images/123-1600x1067.jpg");
  overflow: hidden;
}
.cid-sR7yvMoLtv .svg-top {
  display: none;
}
.cid-sR7yvMoLtv .row {
  flex-direction: row-reverse;
}
.cid-sR7yvMoLtv 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-sR7yvMoLtv svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7yvMoLtv svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sR7yvMoLtv 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-sR7yvMoLtv .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sR7yvMoLtv .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7yvMoLtv .row {
    margin: 0 -2rem;
  }
}
.cid-sR7yvMoLtv .mbr-text,
.cid-sR7yvMoLtv .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7yvMWduC {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #932020;
}
@media (min-width: 1500px) {
  .cid-sR7yvMWduC .container {
    max-width: 1400px;
  }
}
.cid-sR7yvMWduC .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7yvMWduC .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7yvMWduC .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7yvMWduC .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sR7yvMWduC .card-wrapper {
  margin-top: 3rem;
}
.cid-sR7yvMWduC .row {
  justify-content: center;
}
.cid-sR7yvMWduC .mbr-section-title {
  color: #ffffff;
}
.cid-sR7yvMWduC .card-title,
.cid-sR7yvMWduC .iconfont-wrapper {
  color: #ffffff;
}
.cid-sR7yvMWduC .card-text {
  color: #ffffff;
}
.cid-sR7yvMWduC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7yvNy2Vs {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sR7yvNy2Vs .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7yvNy2Vs .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7yvNy2Vs .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7yvNy2Vs .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7yvNy2Vs .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7yvNy2Vs .row {
    margin: 0 -2rem;
  }
}
.cid-sR7yvNy2Vs .mbr-text,
.cid-sR7yvNy2Vs .mbr-section-btn {
  color: #932020;
}
.cid-sR7yvO0jAm {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-color: #932020;
}
.cid-sR7yvO0jAm .row {
  flex-direction: row-reverse;
}
.cid-sR7yvO0jAm .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7yvO0jAm .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7yvO0jAm .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7yvO0jAm .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7yvO0jAm .row {
    margin: 0 -2rem;
  }
}
.cid-sR7yvO0jAm .mbr-text,
.cid-sR7yvO0jAm .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7yvO0jAm .mbr-section-title {
  color: #ffffff;
}
.cid-sR7yvOtK87 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sR7yvOtK87 .mbr-section-title {
  color: #932020;
}
.cid-sR7yvOtK87 .mbr-text {
  color: #932020;
}
.cid-sR7yvOtK87 .mbr-section-subtitle {
  color: #932020;
}
.cid-sR7yvOtK87 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7yvOtK87 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7yvOtK87 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7yvOSlZJ {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sR7yvOSlZJ .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-sR7yvOSlZJ .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sR7yvOSlZJ .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7yvOSlZJ .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7yvOSlZJ .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7yvOSlZJ .img1 {
  background: #932020;
}
.cid-sR7yvOSlZJ .img2 {
  background: #932020;
}
.cid-sR7yvOSlZJ .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sR7yvOSlZJ .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR7yvOSlZJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR7yvOSlZJ .card-wrapper {
    flex-direction: column;
  }
  .cid-sR7yvOSlZJ .card-box {
    padding: 1rem;
  }
  .cid-sR7yvOSlZJ .card-box,
  .cid-sR7yvOSlZJ .img-wrapper {
    width: 100%;
  }
  .cid-sR7yvOSlZJ .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR7yvOSlZJ .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-sR7yvOSlZJ .card-subtitle {
  color: #1a449a;
}
.cid-sR7yvOSlZJ .mbr-text,
.cid-sR7yvOSlZJ .link-wrap {
  color: #555555;
}
.cid-sR7yvOSlZJ .card-title,
.cid-sR7yvOSlZJ .card-box {
  color: #932020;
}
.cid-sR7yvOSlZJ .mbr-text,
.cid-sR7yvOSlZJ .mbr-section-btn {
  color: #932020;
}
.cid-sR7yvPv7jB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #932020;
}
.cid-sR7yvPv7jB .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7yvPv7jB .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7yvPv7jB .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7yvPv7jB .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7yvPv7jB .row {
    margin: 0 -2rem;
  }
}
.cid-sR7yvPv7jB .mbr-text,
.cid-sR7yvPv7jB .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7yvPv7jB .mbr-section-title {
  color: #ffffff;
}
.cid-sR7yvQ15ZB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sR7yvQ15ZB .row {
  flex-direction: row-reverse;
}
.cid-sR7yvQ15ZB .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7yvQ15ZB .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sR7yvQ15ZB .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7yvQ15ZB .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7yvQ15ZB .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7yvQ15ZB .row {
    margin: 0 -2rem;
  }
}
.cid-sR7yvQ15ZB .mbr-text,
.cid-sR7yvQ15ZB .mbr-section-btn {
  color: #932020;
}
.cid-sR7yvQztpN {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/toy-1920x1080.jpg");
}
.cid-sR7yvQztpN .mbr-text,
.cid-sR7yvQztpN .mbr-section-btn {
  color: #f8f8f8;
}
.cid-sR7yvR483O.popup-builder {
  background-color: #ffffff;
}
.cid-sR7yvR483O.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sR7yvR483O.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sR7yvR483O .modal-content,
.cid-sR7yvR483O .modal-dialog {
  height: auto;
}
.cid-sR7yvR483O .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sR7yvR483O .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sR7yvR483O .form-wrapper .mbr-form .form-group,
  .cid-sR7yvR483O .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sR7yvR483O .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sR7yvR483O .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-sR7yvR483O .mbr-text {
  text-align: center;
  color: #932020;
}
.cid-sR7yvR483O .pt-0 {
  padding-top: 0 !important;
}
.cid-sR7yvR483O .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sR7yvR483O .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sR7yvR483O .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sR7yvR483O .modal-open {
  overflow: hidden;
}
.cid-sR7yvR483O .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sR7yvR483O .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sR7yvR483O .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sR7yvR483O .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-sR7yvR483O .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sR7yvR483O .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sR7yvR483O .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sR7yvR483O .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-sR7yvR483O .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sR7yvR483O .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sR7yvR483O .modal-backdrop.fade {
  opacity: 0;
}
.cid-sR7yvR483O .modal-backdrop.show {
  opacity: .5;
}
.cid-sR7yvR483O .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-sR7yvR483O .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7yvR483O .modal-header {
    padding: 1rem;
  }
}
.cid-sR7yvR483O .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sR7yvR483O .modal-header .close svg {
  fill: #353535;
}
.cid-sR7yvR483O .modal-header .close:hover {
  opacity: 1;
}
.cid-sR7yvR483O .modal-header .close:focus {
  outline: none;
}
.cid-sR7yvR483O .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sR7yvR483O .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sR7yvR483O .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7yvR483O .modal-body {
    padding: 1rem;
  }
}
.cid-sR7yvR483O .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-sR7yvR483O .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7yvR483O .modal-footer {
    padding: 1rem;
  }
}
.cid-sR7yvR483O .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sR7yvR483O .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sR7yvR483O .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sR7yvR483O .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sR7yvR483O .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sR7yvR483O .modal-lg,
  .cid-sR7yvR483O .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sR7yvR483O .modal-xl {
    max-width: 1140px;
  }
}
.cid-sR7yvR483O .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sR7yvR483O .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-sR7yvR483O .form-group {
  margin-bottom: 1rem;
}
.cid-sR7yvR483O .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sR7yvR483O .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sR7yvR483O .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-sR7yvR483O .mbr-section-btn {
  margin: 0;
}
.cid-sR7yvR483O .mbr-section-btn .btn {
  margin: 0;
}
.cid-sR7yvRKtku {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-sR7yvRKtku .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sR7yvRKtku .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sR7yvRKtku .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sR7yvRKtku .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sR7yvRKtku .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sR7yvRKtku .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #9f1f1f;
}
@media (max-width: 767px) {
  .cid-sR7yvRKtku .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sR7yvRKtku .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7yvRKtku .mbr-section-title {
  color: #ffffff;
}
.cid-sR7yvSywbZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #932020;
  overflow: hidden;
}
.cid-sR7yvSywbZ .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sR7B7YMU5r .navbar-dropdown {
  position: relative !important;
}
.cid-sR7B7YMU5r .navbar-dropdown {
  position: absolute !important;
}
.cid-sR7B7YMU5r .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sR7B7YMU5r .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sR7B7YMU5r .nav-link:hover:before {
  width: 100%;
}
.cid-sR7B7YMU5r .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sR7B7YMU5r .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sR7B7YMU5r .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-sR7B7YMU5r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sR7B7YMU5r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sR7B7YMU5r .dropdown-item:hover,
.cid-sR7B7YMU5r .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sR7B7YMU5r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sR7B7YMU5r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sR7B7YMU5r .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sR7B7YMU5r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sR7B7YMU5r .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sR7B7YMU5r .dropdown-menu,
.cid-sR7B7YMU5r .navbar.opened {
  background: #232323 !important;
}
.cid-sR7B7YMU5r .nav-item:focus,
.cid-sR7B7YMU5r .nav-link:focus {
  outline: none;
}
.cid-sR7B7YMU5r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sR7B7YMU5r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sR7B7YMU5r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sR7B7YMU5r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sR7B7YMU5r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR7B7YMU5r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR7B7YMU5r .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-sR7B7YMU5r .navbar.opened {
  transition: all 0.3s;
}
.cid-sR7B7YMU5r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sR7B7YMU5r .navbar .navbar-logo img {
  width: auto;
}
.cid-sR7B7YMU5r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR7B7YMU5r .navbar.collapsed {
  justify-content: center;
}
.cid-sR7B7YMU5r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR7B7YMU5r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR7B7YMU5r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sR7B7YMU5r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR7B7YMU5r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sR7B7YMU5r .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-sR7B7YMU5r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR7B7YMU5r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sR7B7YMU5r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sR7B7YMU5r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR7B7YMU5r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR7B7YMU5r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR7B7YMU5r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sR7B7YMU5r .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-sR7B7YMU5r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sR7B7YMU5r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR7B7YMU5r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sR7B7YMU5r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sR7B7YMU5r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sR7B7YMU5r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sR7B7YMU5r .navbar.navbar-short {
  min-height: 80px;
}
.cid-sR7B7YMU5r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sR7B7YMU5r .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sR7B7YMU5r .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-sR7B7YMU5r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR7B7YMU5r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR7B7YMU5r .dropdown-item.active,
.cid-sR7B7YMU5r .dropdown-item:active {
  background-color: transparent;
}
.cid-sR7B7YMU5r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sR7B7YMU5r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR7B7YMU5r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR7B7YMU5r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sR7B7YMU5r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR7B7YMU5r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR7B7YMU5r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sR7B7YMU5r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sR7B7YMU5r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sR7B7YMU5r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sR7B7YMU5r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sR7B7YMU5r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7B7YMU5r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7B7YMU5r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sR7B7YMU5r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7B7YMU5r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sR7B7YMU5r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sR7B7YMU5r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7B7YMU5r .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sR7B7YMU5r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sR7B7YMU5r .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-sR7B7YMU5r .navbar {
    height: 70px;
  }
  .cid-sR7B7YMU5r .navbar.opened {
    height: auto;
  }
  .cid-sR7B7YMU5r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR7B7ZyTDo {
  background-image: url("../../../assets/images/123-1600x1067.jpg");
  overflow: hidden;
}
.cid-sR7B7ZyTDo .svg-top {
  display: none;
}
.cid-sR7B7ZyTDo .row {
  flex-direction: row-reverse;
}
.cid-sR7B7ZyTDo 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-sR7B7ZyTDo svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7B7ZyTDo svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sR7B7ZyTDo 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-sR7B7ZyTDo .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sR7B7ZyTDo .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7B7ZyTDo .row {
    margin: 0 -2rem;
  }
}
.cid-sR7B7ZyTDo .mbr-text,
.cid-sR7B7ZyTDo .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7B805TzQ {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #932020;
}
@media (min-width: 1500px) {
  .cid-sR7B805TzQ .container {
    max-width: 1400px;
  }
}
.cid-sR7B805TzQ .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7B805TzQ .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7B805TzQ .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7B805TzQ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sR7B805TzQ .card-wrapper {
  margin-top: 3rem;
}
.cid-sR7B805TzQ .row {
  justify-content: center;
}
.cid-sR7B805TzQ .mbr-section-title {
  color: #ffffff;
}
.cid-sR7B805TzQ .card-title,
.cid-sR7B805TzQ .iconfont-wrapper {
  color: #ffffff;
}
.cid-sR7B805TzQ .card-text {
  color: #ffffff;
}
.cid-sR7B805TzQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7B80F7Tx {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sR7B80F7Tx .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7B80F7Tx .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7B80F7Tx .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7B80F7Tx .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7B80F7Tx .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7B80F7Tx .row {
    margin: 0 -2rem;
  }
}
.cid-sR7B80F7Tx .mbr-text,
.cid-sR7B80F7Tx .mbr-section-btn {
  color: #932020;
}
.cid-sR7B81beMd {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-color: #932020;
}
.cid-sR7B81beMd .row {
  flex-direction: row-reverse;
}
.cid-sR7B81beMd .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7B81beMd .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7B81beMd .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7B81beMd .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7B81beMd .row {
    margin: 0 -2rem;
  }
}
.cid-sR7B81beMd .mbr-text,
.cid-sR7B81beMd .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7B81beMd .mbr-section-title {
  color: #ffffff;
}
.cid-sR7B81G0Cn {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sR7B81G0Cn .mbr-section-title {
  color: #932020;
}
.cid-sR7B81G0Cn .mbr-text {
  color: #932020;
}
.cid-sR7B81G0Cn .mbr-section-subtitle {
  color: #932020;
}
.cid-sR7B81G0Cn .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7B81G0Cn .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7B81G0Cn .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7B828LAb {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sR7B828LAb .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-sR7B828LAb .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sR7B828LAb .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7B828LAb .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7B828LAb .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7B828LAb .img1 {
  background: #932020;
}
.cid-sR7B828LAb .img2 {
  background: #932020;
}
.cid-sR7B828LAb .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sR7B828LAb .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR7B828LAb .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR7B828LAb .card-wrapper {
    flex-direction: column;
  }
  .cid-sR7B828LAb .card-box {
    padding: 1rem;
  }
  .cid-sR7B828LAb .card-box,
  .cid-sR7B828LAb .img-wrapper {
    width: 100%;
  }
  .cid-sR7B828LAb .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR7B828LAb .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-sR7B828LAb .card-subtitle {
  color: #1a449a;
}
.cid-sR7B828LAb .mbr-text,
.cid-sR7B828LAb .link-wrap {
  color: #555555;
}
.cid-sR7B828LAb .card-title,
.cid-sR7B828LAb .card-box {
  color: #932020;
}
.cid-sR7B828LAb .mbr-text,
.cid-sR7B828LAb .mbr-section-btn {
  color: #932020;
}
.cid-sR7B82G7Es {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #932020;
}
.cid-sR7B82G7Es .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7B82G7Es .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7B82G7Es .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7B82G7Es .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7B82G7Es .row {
    margin: 0 -2rem;
  }
}
.cid-sR7B82G7Es .mbr-text,
.cid-sR7B82G7Es .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7B82G7Es .mbr-section-title {
  color: #ffffff;
}
.cid-sR7B83eQKO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sR7B83eQKO .row {
  flex-direction: row-reverse;
}
.cid-sR7B83eQKO .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7B83eQKO .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sR7B83eQKO .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7B83eQKO .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7B83eQKO .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7B83eQKO .row {
    margin: 0 -2rem;
  }
}
.cid-sR7B83eQKO .mbr-text,
.cid-sR7B83eQKO .mbr-section-btn {
  color: #932020;
}
.cid-sR7B83K0E2 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/toy-1920x1080.jpg");
}
.cid-sR7B83K0E2 .mbr-text,
.cid-sR7B83K0E2 .mbr-section-btn {
  color: #f8f8f8;
}
.cid-sR7B84csUO.popup-builder {
  background-color: #ffffff;
}
.cid-sR7B84csUO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sR7B84csUO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sR7B84csUO .modal-content,
.cid-sR7B84csUO .modal-dialog {
  height: auto;
}
.cid-sR7B84csUO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sR7B84csUO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sR7B84csUO .form-wrapper .mbr-form .form-group,
  .cid-sR7B84csUO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sR7B84csUO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sR7B84csUO .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-sR7B84csUO .mbr-text {
  text-align: center;
  color: #932020;
}
.cid-sR7B84csUO .pt-0 {
  padding-top: 0 !important;
}
.cid-sR7B84csUO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sR7B84csUO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sR7B84csUO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sR7B84csUO .modal-open {
  overflow: hidden;
}
.cid-sR7B84csUO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sR7B84csUO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sR7B84csUO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sR7B84csUO .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-sR7B84csUO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sR7B84csUO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sR7B84csUO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sR7B84csUO .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-sR7B84csUO .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sR7B84csUO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sR7B84csUO .modal-backdrop.fade {
  opacity: 0;
}
.cid-sR7B84csUO .modal-backdrop.show {
  opacity: .5;
}
.cid-sR7B84csUO .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-sR7B84csUO .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7B84csUO .modal-header {
    padding: 1rem;
  }
}
.cid-sR7B84csUO .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sR7B84csUO .modal-header .close svg {
  fill: #353535;
}
.cid-sR7B84csUO .modal-header .close:hover {
  opacity: 1;
}
.cid-sR7B84csUO .modal-header .close:focus {
  outline: none;
}
.cid-sR7B84csUO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sR7B84csUO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sR7B84csUO .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7B84csUO .modal-body {
    padding: 1rem;
  }
}
.cid-sR7B84csUO .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-sR7B84csUO .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7B84csUO .modal-footer {
    padding: 1rem;
  }
}
.cid-sR7B84csUO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sR7B84csUO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sR7B84csUO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sR7B84csUO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sR7B84csUO .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sR7B84csUO .modal-lg,
  .cid-sR7B84csUO .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sR7B84csUO .modal-xl {
    max-width: 1140px;
  }
}
.cid-sR7B84csUO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sR7B84csUO .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-sR7B84csUO .form-group {
  margin-bottom: 1rem;
}
.cid-sR7B84csUO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sR7B84csUO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sR7B84csUO .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-sR7B84csUO .mbr-section-btn {
  margin: 0;
}
.cid-sR7B84csUO .mbr-section-btn .btn {
  margin: 0;
}
.cid-sR7B84Q6Ma {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-sR7B84Q6Ma .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sR7B84Q6Ma .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sR7B84Q6Ma .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sR7B84Q6Ma .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sR7B84Q6Ma .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sR7B84Q6Ma .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #9f1f1f;
}
@media (max-width: 767px) {
  .cid-sR7B84Q6Ma .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sR7B84Q6Ma .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7B84Q6Ma .mbr-section-title {
  color: #ffffff;
}
.cid-sR7B85ZOH6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #932020;
  overflow: hidden;
}
.cid-sR7B85ZOH6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sR7CdZ5HmT .navbar-dropdown {
  position: relative !important;
}
.cid-sR7CdZ5HmT .navbar-dropdown {
  position: absolute !important;
}
.cid-sR7CdZ5HmT .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sR7CdZ5HmT .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sR7CdZ5HmT .nav-link:hover:before {
  width: 100%;
}
.cid-sR7CdZ5HmT .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sR7CdZ5HmT .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sR7CdZ5HmT .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-sR7CdZ5HmT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sR7CdZ5HmT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sR7CdZ5HmT .dropdown-item:hover,
.cid-sR7CdZ5HmT .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sR7CdZ5HmT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sR7CdZ5HmT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sR7CdZ5HmT .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sR7CdZ5HmT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sR7CdZ5HmT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sR7CdZ5HmT .dropdown-menu,
.cid-sR7CdZ5HmT .navbar.opened {
  background: #232323 !important;
}
.cid-sR7CdZ5HmT .nav-item:focus,
.cid-sR7CdZ5HmT .nav-link:focus {
  outline: none;
}
.cid-sR7CdZ5HmT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sR7CdZ5HmT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sR7CdZ5HmT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sR7CdZ5HmT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sR7CdZ5HmT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR7CdZ5HmT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR7CdZ5HmT .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-sR7CdZ5HmT .navbar.opened {
  transition: all 0.3s;
}
.cid-sR7CdZ5HmT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sR7CdZ5HmT .navbar .navbar-logo img {
  width: auto;
}
.cid-sR7CdZ5HmT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR7CdZ5HmT .navbar.collapsed {
  justify-content: center;
}
.cid-sR7CdZ5HmT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR7CdZ5HmT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR7CdZ5HmT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sR7CdZ5HmT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR7CdZ5HmT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sR7CdZ5HmT .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-sR7CdZ5HmT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR7CdZ5HmT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sR7CdZ5HmT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sR7CdZ5HmT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR7CdZ5HmT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR7CdZ5HmT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR7CdZ5HmT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sR7CdZ5HmT .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-sR7CdZ5HmT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sR7CdZ5HmT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR7CdZ5HmT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sR7CdZ5HmT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sR7CdZ5HmT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sR7CdZ5HmT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sR7CdZ5HmT .navbar.navbar-short {
  min-height: 80px;
}
.cid-sR7CdZ5HmT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sR7CdZ5HmT .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sR7CdZ5HmT .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-sR7CdZ5HmT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR7CdZ5HmT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR7CdZ5HmT .dropdown-item.active,
.cid-sR7CdZ5HmT .dropdown-item:active {
  background-color: transparent;
}
.cid-sR7CdZ5HmT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sR7CdZ5HmT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR7CdZ5HmT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR7CdZ5HmT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sR7CdZ5HmT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR7CdZ5HmT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR7CdZ5HmT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sR7CdZ5HmT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sR7CdZ5HmT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sR7CdZ5HmT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sR7CdZ5HmT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sR7CdZ5HmT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7CdZ5HmT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7CdZ5HmT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sR7CdZ5HmT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7CdZ5HmT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sR7CdZ5HmT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sR7CdZ5HmT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7CdZ5HmT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sR7CdZ5HmT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sR7CdZ5HmT .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-sR7CdZ5HmT .navbar {
    height: 70px;
  }
  .cid-sR7CdZ5HmT .navbar.opened {
    height: auto;
  }
  .cid-sR7CdZ5HmT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR7CdZNSeg {
  background-image: url("../../../assets/images/123-1600x1067.jpg");
  overflow: hidden;
}
.cid-sR7CdZNSeg .svg-top {
  display: none;
}
.cid-sR7CdZNSeg .row {
  flex-direction: row-reverse;
}
.cid-sR7CdZNSeg 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-sR7CdZNSeg svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7CdZNSeg svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sR7CdZNSeg 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-sR7CdZNSeg .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sR7CdZNSeg .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7CdZNSeg .row {
    margin: 0 -2rem;
  }
}
.cid-sR7CdZNSeg .mbr-text,
.cid-sR7CdZNSeg .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7Ce0msej {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #932020;
}
@media (min-width: 1500px) {
  .cid-sR7Ce0msej .container {
    max-width: 1400px;
  }
}
.cid-sR7Ce0msej .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ce0msej .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Ce0msej .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Ce0msej .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sR7Ce0msej .card-wrapper {
  margin-top: 3rem;
}
.cid-sR7Ce0msej .row {
  justify-content: center;
}
.cid-sR7Ce0msej .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Ce0msej .card-title,
.cid-sR7Ce0msej .iconfont-wrapper {
  color: #ffffff;
}
.cid-sR7Ce0msej .card-text {
  color: #ffffff;
}
.cid-sR7Ce0msej .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7Ce0ZhCS {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sR7Ce0ZhCS .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ce0ZhCS .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7Ce0ZhCS .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Ce0ZhCS .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7Ce0ZhCS .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Ce0ZhCS .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Ce0ZhCS .mbr-text,
.cid-sR7Ce0ZhCS .mbr-section-btn {
  color: #932020;
}
.cid-sR7Ce1vvAC {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-color: #932020;
}
.cid-sR7Ce1vvAC .row {
  flex-direction: row-reverse;
}
.cid-sR7Ce1vvAC .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ce1vvAC .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Ce1vvAC .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7Ce1vvAC .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Ce1vvAC .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Ce1vvAC .mbr-text,
.cid-sR7Ce1vvAC .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7Ce1vvAC .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Ce262II {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sR7Ce262II .mbr-section-title {
  color: #932020;
}
.cid-sR7Ce262II .mbr-text {
  color: #932020;
}
.cid-sR7Ce262II .mbr-section-subtitle {
  color: #932020;
}
.cid-sR7Ce262II .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ce262II .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7Ce262II .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Ce2zavA {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sR7Ce2zavA .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-sR7Ce2zavA .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sR7Ce2zavA .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ce2zavA .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7Ce2zavA .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Ce2zavA .img1 {
  background: #932020;
}
.cid-sR7Ce2zavA .img2 {
  background: #932020;
}
.cid-sR7Ce2zavA .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sR7Ce2zavA .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR7Ce2zavA .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR7Ce2zavA .card-wrapper {
    flex-direction: column;
  }
  .cid-sR7Ce2zavA .card-box {
    padding: 1rem;
  }
  .cid-sR7Ce2zavA .card-box,
  .cid-sR7Ce2zavA .img-wrapper {
    width: 100%;
  }
  .cid-sR7Ce2zavA .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR7Ce2zavA .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-sR7Ce2zavA .card-subtitle {
  color: #1a449a;
}
.cid-sR7Ce2zavA .mbr-text,
.cid-sR7Ce2zavA .link-wrap {
  color: #555555;
}
.cid-sR7Ce2zavA .card-title,
.cid-sR7Ce2zavA .card-box {
  color: #932020;
}
.cid-sR7Ce2zavA .mbr-text,
.cid-sR7Ce2zavA .mbr-section-btn {
  color: #932020;
}
.cid-sR7Ce39g2l {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #932020;
}
.cid-sR7Ce39g2l .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ce39g2l .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Ce39g2l .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7Ce39g2l .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Ce39g2l .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Ce39g2l .mbr-text,
.cid-sR7Ce39g2l .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7Ce39g2l .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Ce3JI9v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sR7Ce3JI9v .row {
  flex-direction: row-reverse;
}
.cid-sR7Ce3JI9v .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ce3JI9v .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sR7Ce3JI9v .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Ce3JI9v .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7Ce3JI9v .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Ce3JI9v .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Ce3JI9v .mbr-text,
.cid-sR7Ce3JI9v .mbr-section-btn {
  color: #932020;
}
.cid-sR7Ce4gYhg {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/625486-16x9-lg-1920x1080.jpeg");
}
.cid-sR7Ce4gYhg .mbr-text,
.cid-sR7Ce4gYhg .mbr-section-btn {
  color: #f8f8f8;
}
.cid-sR7Ce4N6pl.popup-builder {
  background-color: #ffffff;
}
.cid-sR7Ce4N6pl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sR7Ce4N6pl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sR7Ce4N6pl .modal-content,
.cid-sR7Ce4N6pl .modal-dialog {
  height: auto;
}
.cid-sR7Ce4N6pl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sR7Ce4N6pl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sR7Ce4N6pl .form-wrapper .mbr-form .form-group,
  .cid-sR7Ce4N6pl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sR7Ce4N6pl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sR7Ce4N6pl .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-sR7Ce4N6pl .mbr-text {
  text-align: center;
  color: #932020;
}
.cid-sR7Ce4N6pl .pt-0 {
  padding-top: 0 !important;
}
.cid-sR7Ce4N6pl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sR7Ce4N6pl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sR7Ce4N6pl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sR7Ce4N6pl .modal-open {
  overflow: hidden;
}
.cid-sR7Ce4N6pl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sR7Ce4N6pl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sR7Ce4N6pl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sR7Ce4N6pl .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-sR7Ce4N6pl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sR7Ce4N6pl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sR7Ce4N6pl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sR7Ce4N6pl .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-sR7Ce4N6pl .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sR7Ce4N6pl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sR7Ce4N6pl .modal-backdrop.fade {
  opacity: 0;
}
.cid-sR7Ce4N6pl .modal-backdrop.show {
  opacity: .5;
}
.cid-sR7Ce4N6pl .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-sR7Ce4N6pl .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7Ce4N6pl .modal-header {
    padding: 1rem;
  }
}
.cid-sR7Ce4N6pl .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sR7Ce4N6pl .modal-header .close svg {
  fill: #353535;
}
.cid-sR7Ce4N6pl .modal-header .close:hover {
  opacity: 1;
}
.cid-sR7Ce4N6pl .modal-header .close:focus {
  outline: none;
}
.cid-sR7Ce4N6pl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sR7Ce4N6pl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sR7Ce4N6pl .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7Ce4N6pl .modal-body {
    padding: 1rem;
  }
}
.cid-sR7Ce4N6pl .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-sR7Ce4N6pl .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7Ce4N6pl .modal-footer {
    padding: 1rem;
  }
}
.cid-sR7Ce4N6pl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sR7Ce4N6pl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sR7Ce4N6pl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sR7Ce4N6pl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sR7Ce4N6pl .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sR7Ce4N6pl .modal-lg,
  .cid-sR7Ce4N6pl .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sR7Ce4N6pl .modal-xl {
    max-width: 1140px;
  }
}
.cid-sR7Ce4N6pl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sR7Ce4N6pl .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-sR7Ce4N6pl .form-group {
  margin-bottom: 1rem;
}
.cid-sR7Ce4N6pl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sR7Ce4N6pl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sR7Ce4N6pl .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-sR7Ce4N6pl .mbr-section-btn {
  margin: 0;
}
.cid-sR7Ce4N6pl .mbr-section-btn .btn {
  margin: 0;
}
.cid-sR7Ce5tnth {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-sR7Ce5tnth .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sR7Ce5tnth .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sR7Ce5tnth .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sR7Ce5tnth .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sR7Ce5tnth .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sR7Ce5tnth .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #9f1f1f;
}
@media (max-width: 767px) {
  .cid-sR7Ce5tnth .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sR7Ce5tnth .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7Ce5tnth .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Ce6hYW3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #932020;
  overflow: hidden;
}
.cid-sR7Ce6hYW3 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sR7EpsJGjn .navbar-dropdown {
  position: relative !important;
}
.cid-sR7EpsJGjn .navbar-dropdown {
  position: absolute !important;
}
.cid-sR7EpsJGjn .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sR7EpsJGjn .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sR7EpsJGjn .nav-link:hover:before {
  width: 100%;
}
.cid-sR7EpsJGjn .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sR7EpsJGjn .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sR7EpsJGjn .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-sR7EpsJGjn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sR7EpsJGjn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sR7EpsJGjn .dropdown-item:hover,
.cid-sR7EpsJGjn .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sR7EpsJGjn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sR7EpsJGjn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sR7EpsJGjn .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sR7EpsJGjn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sR7EpsJGjn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sR7EpsJGjn .dropdown-menu,
.cid-sR7EpsJGjn .navbar.opened {
  background: #232323 !important;
}
.cid-sR7EpsJGjn .nav-item:focus,
.cid-sR7EpsJGjn .nav-link:focus {
  outline: none;
}
.cid-sR7EpsJGjn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sR7EpsJGjn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sR7EpsJGjn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sR7EpsJGjn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sR7EpsJGjn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR7EpsJGjn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR7EpsJGjn .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-sR7EpsJGjn .navbar.opened {
  transition: all 0.3s;
}
.cid-sR7EpsJGjn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sR7EpsJGjn .navbar .navbar-logo img {
  width: auto;
}
.cid-sR7EpsJGjn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR7EpsJGjn .navbar.collapsed {
  justify-content: center;
}
.cid-sR7EpsJGjn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR7EpsJGjn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR7EpsJGjn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sR7EpsJGjn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR7EpsJGjn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sR7EpsJGjn .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-sR7EpsJGjn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR7EpsJGjn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sR7EpsJGjn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sR7EpsJGjn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR7EpsJGjn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR7EpsJGjn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR7EpsJGjn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sR7EpsJGjn .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-sR7EpsJGjn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sR7EpsJGjn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR7EpsJGjn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sR7EpsJGjn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sR7EpsJGjn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sR7EpsJGjn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sR7EpsJGjn .navbar.navbar-short {
  min-height: 80px;
}
.cid-sR7EpsJGjn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sR7EpsJGjn .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sR7EpsJGjn .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-sR7EpsJGjn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR7EpsJGjn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR7EpsJGjn .dropdown-item.active,
.cid-sR7EpsJGjn .dropdown-item:active {
  background-color: transparent;
}
.cid-sR7EpsJGjn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sR7EpsJGjn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR7EpsJGjn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR7EpsJGjn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sR7EpsJGjn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR7EpsJGjn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR7EpsJGjn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sR7EpsJGjn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sR7EpsJGjn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sR7EpsJGjn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sR7EpsJGjn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sR7EpsJGjn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7EpsJGjn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7EpsJGjn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sR7EpsJGjn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7EpsJGjn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sR7EpsJGjn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sR7EpsJGjn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7EpsJGjn .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sR7EpsJGjn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sR7EpsJGjn .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-sR7EpsJGjn .navbar {
    height: 70px;
  }
  .cid-sR7EpsJGjn .navbar.opened {
    height: auto;
  }
  .cid-sR7EpsJGjn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR7EptriLu {
  background-image: url("../../../assets/images/123-1600x1067.jpg");
  overflow: hidden;
}
.cid-sR7EptriLu .svg-top {
  display: none;
}
.cid-sR7EptriLu .row {
  flex-direction: row-reverse;
}
.cid-sR7EptriLu 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-sR7EptriLu svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7EptriLu svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sR7EptriLu 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-sR7EptriLu .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sR7EptriLu .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7EptriLu .row {
    margin: 0 -2rem;
  }
}
.cid-sR7EptriLu .mbr-text,
.cid-sR7EptriLu .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7EptVk8Z {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #932020;
}
@media (min-width: 1500px) {
  .cid-sR7EptVk8Z .container {
    max-width: 1400px;
  }
}
.cid-sR7EptVk8Z .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7EptVk8Z .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7EptVk8Z .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7EptVk8Z .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sR7EptVk8Z .card-wrapper {
  margin-top: 3rem;
}
.cid-sR7EptVk8Z .row {
  justify-content: center;
}
.cid-sR7EptVk8Z .mbr-section-title {
  color: #ffffff;
}
.cid-sR7EptVk8Z .card-title,
.cid-sR7EptVk8Z .iconfont-wrapper {
  color: #ffffff;
}
.cid-sR7EptVk8Z .card-text {
  color: #ffffff;
}
.cid-sR7EptVk8Z .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7EpusbEN {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sR7EpusbEN .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7EpusbEN .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7EpusbEN .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7EpusbEN .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7EpusbEN .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7EpusbEN .row {
    margin: 0 -2rem;
  }
}
.cid-sR7EpusbEN .mbr-text,
.cid-sR7EpusbEN .mbr-section-btn {
  color: #932020;
}
.cid-sR7EpuT8k5 {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-color: #932020;
}
.cid-sR7EpuT8k5 .row {
  flex-direction: row-reverse;
}
.cid-sR7EpuT8k5 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7EpuT8k5 .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7EpuT8k5 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7EpuT8k5 .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7EpuT8k5 .row {
    margin: 0 -2rem;
  }
}
.cid-sR7EpuT8k5 .mbr-text,
.cid-sR7EpuT8k5 .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7EpuT8k5 .mbr-section-title {
  color: #ffffff;
}
.cid-sR7EpvoXfg {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sR7EpvoXfg .mbr-section-title {
  color: #932020;
}
.cid-sR7EpvoXfg .mbr-text {
  color: #932020;
}
.cid-sR7EpvoXfg .mbr-section-subtitle {
  color: #932020;
}
.cid-sR7EpvoXfg .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7EpvoXfg .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7EpvoXfg .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7EpvPfl6 {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sR7EpvPfl6 .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-sR7EpvPfl6 .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sR7EpvPfl6 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7EpvPfl6 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7EpvPfl6 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7EpvPfl6 .img1 {
  background: #932020;
}
.cid-sR7EpvPfl6 .img2 {
  background: #932020;
}
.cid-sR7EpvPfl6 .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sR7EpvPfl6 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR7EpvPfl6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR7EpvPfl6 .card-wrapper {
    flex-direction: column;
  }
  .cid-sR7EpvPfl6 .card-box {
    padding: 1rem;
  }
  .cid-sR7EpvPfl6 .card-box,
  .cid-sR7EpvPfl6 .img-wrapper {
    width: 100%;
  }
  .cid-sR7EpvPfl6 .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR7EpvPfl6 .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-sR7EpvPfl6 .card-subtitle {
  color: #1a449a;
}
.cid-sR7EpvPfl6 .mbr-text,
.cid-sR7EpvPfl6 .link-wrap {
  color: #555555;
}
.cid-sR7EpvPfl6 .card-title,
.cid-sR7EpvPfl6 .card-box {
  color: #932020;
}
.cid-sR7EpvPfl6 .mbr-text,
.cid-sR7EpvPfl6 .mbr-section-btn {
  color: #932020;
}
.cid-sR7Epwo08T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #932020;
}
.cid-sR7Epwo08T .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Epwo08T .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Epwo08T .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7Epwo08T .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Epwo08T .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Epwo08T .mbr-text,
.cid-sR7Epwo08T .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7Epwo08T .mbr-section-title {
  color: #ffffff;
}
.cid-sR7EpwSJH2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sR7EpwSJH2 .row {
  flex-direction: row-reverse;
}
.cid-sR7EpwSJH2 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7EpwSJH2 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sR7EpwSJH2 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7EpwSJH2 .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7EpwSJH2 .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7EpwSJH2 .row {
    margin: 0 -2rem;
  }
}
.cid-sR7EpwSJH2 .mbr-text,
.cid-sR7EpwSJH2 .mbr-section-btn {
  color: #932020;
}
.cid-sR7EpxobpA {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/orange-2021-acura-rdx-pmc-edition-4k-5k-cars-2000x1125.jpeg");
}
.cid-sR7EpxobpA .mbr-text,
.cid-sR7EpxobpA .mbr-section-btn {
  color: #f8f8f8;
}
.cid-sR7EpxTfmS.popup-builder {
  background-color: #ffffff;
}
.cid-sR7EpxTfmS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sR7EpxTfmS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sR7EpxTfmS .modal-content,
.cid-sR7EpxTfmS .modal-dialog {
  height: auto;
}
.cid-sR7EpxTfmS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sR7EpxTfmS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sR7EpxTfmS .form-wrapper .mbr-form .form-group,
  .cid-sR7EpxTfmS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sR7EpxTfmS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sR7EpxTfmS .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-sR7EpxTfmS .mbr-text {
  text-align: center;
  color: #932020;
}
.cid-sR7EpxTfmS .pt-0 {
  padding-top: 0 !important;
}
.cid-sR7EpxTfmS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sR7EpxTfmS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sR7EpxTfmS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sR7EpxTfmS .modal-open {
  overflow: hidden;
}
.cid-sR7EpxTfmS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sR7EpxTfmS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sR7EpxTfmS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sR7EpxTfmS .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-sR7EpxTfmS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sR7EpxTfmS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sR7EpxTfmS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sR7EpxTfmS .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-sR7EpxTfmS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sR7EpxTfmS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sR7EpxTfmS .modal-backdrop.fade {
  opacity: 0;
}
.cid-sR7EpxTfmS .modal-backdrop.show {
  opacity: .5;
}
.cid-sR7EpxTfmS .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-sR7EpxTfmS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7EpxTfmS .modal-header {
    padding: 1rem;
  }
}
.cid-sR7EpxTfmS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sR7EpxTfmS .modal-header .close svg {
  fill: #353535;
}
.cid-sR7EpxTfmS .modal-header .close:hover {
  opacity: 1;
}
.cid-sR7EpxTfmS .modal-header .close:focus {
  outline: none;
}
.cid-sR7EpxTfmS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sR7EpxTfmS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sR7EpxTfmS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7EpxTfmS .modal-body {
    padding: 1rem;
  }
}
.cid-sR7EpxTfmS .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-sR7EpxTfmS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7EpxTfmS .modal-footer {
    padding: 1rem;
  }
}
.cid-sR7EpxTfmS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sR7EpxTfmS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sR7EpxTfmS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sR7EpxTfmS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sR7EpxTfmS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sR7EpxTfmS .modal-lg,
  .cid-sR7EpxTfmS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sR7EpxTfmS .modal-xl {
    max-width: 1140px;
  }
}
.cid-sR7EpxTfmS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sR7EpxTfmS .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-sR7EpxTfmS .form-group {
  margin-bottom: 1rem;
}
.cid-sR7EpxTfmS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sR7EpxTfmS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sR7EpxTfmS .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-sR7EpxTfmS .mbr-section-btn {
  margin: 0;
}
.cid-sR7EpxTfmS .mbr-section-btn .btn {
  margin: 0;
}
.cid-sR7EpyzFXG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-sR7EpyzFXG .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sR7EpyzFXG .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sR7EpyzFXG .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sR7EpyzFXG .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sR7EpyzFXG .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sR7EpyzFXG .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #9f1f1f;
}
@media (max-width: 767px) {
  .cid-sR7EpyzFXG .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sR7EpyzFXG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7EpyzFXG .mbr-section-title {
  color: #ffffff;
}
.cid-sR7EpzqX7m {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #932020;
  overflow: hidden;
}
.cid-sR7EpzqX7m .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sR7Ha3PppT .navbar-dropdown {
  position: relative !important;
}
.cid-sR7Ha3PppT .navbar-dropdown {
  position: absolute !important;
}
.cid-sR7Ha3PppT .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sR7Ha3PppT .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sR7Ha3PppT .nav-link:hover:before {
  width: 100%;
}
.cid-sR7Ha3PppT .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sR7Ha3PppT .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sR7Ha3PppT .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-sR7Ha3PppT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sR7Ha3PppT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sR7Ha3PppT .dropdown-item:hover,
.cid-sR7Ha3PppT .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sR7Ha3PppT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sR7Ha3PppT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sR7Ha3PppT .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sR7Ha3PppT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sR7Ha3PppT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sR7Ha3PppT .dropdown-menu,
.cid-sR7Ha3PppT .navbar.opened {
  background: #232323 !important;
}
.cid-sR7Ha3PppT .nav-item:focus,
.cid-sR7Ha3PppT .nav-link:focus {
  outline: none;
}
.cid-sR7Ha3PppT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sR7Ha3PppT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sR7Ha3PppT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sR7Ha3PppT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sR7Ha3PppT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR7Ha3PppT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR7Ha3PppT .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-sR7Ha3PppT .navbar.opened {
  transition: all 0.3s;
}
.cid-sR7Ha3PppT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sR7Ha3PppT .navbar .navbar-logo img {
  width: auto;
}
.cid-sR7Ha3PppT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR7Ha3PppT .navbar.collapsed {
  justify-content: center;
}
.cid-sR7Ha3PppT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR7Ha3PppT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR7Ha3PppT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sR7Ha3PppT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR7Ha3PppT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sR7Ha3PppT .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-sR7Ha3PppT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR7Ha3PppT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sR7Ha3PppT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sR7Ha3PppT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR7Ha3PppT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR7Ha3PppT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR7Ha3PppT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sR7Ha3PppT .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-sR7Ha3PppT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sR7Ha3PppT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR7Ha3PppT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sR7Ha3PppT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sR7Ha3PppT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sR7Ha3PppT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sR7Ha3PppT .navbar.navbar-short {
  min-height: 80px;
}
.cid-sR7Ha3PppT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sR7Ha3PppT .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sR7Ha3PppT .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-sR7Ha3PppT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR7Ha3PppT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR7Ha3PppT .dropdown-item.active,
.cid-sR7Ha3PppT .dropdown-item:active {
  background-color: transparent;
}
.cid-sR7Ha3PppT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sR7Ha3PppT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR7Ha3PppT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR7Ha3PppT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sR7Ha3PppT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR7Ha3PppT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR7Ha3PppT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sR7Ha3PppT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sR7Ha3PppT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sR7Ha3PppT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sR7Ha3PppT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sR7Ha3PppT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7Ha3PppT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7Ha3PppT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sR7Ha3PppT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7Ha3PppT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sR7Ha3PppT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sR7Ha3PppT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7Ha3PppT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sR7Ha3PppT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sR7Ha3PppT .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-sR7Ha3PppT .navbar {
    height: 70px;
  }
  .cid-sR7Ha3PppT .navbar.opened {
    height: auto;
  }
  .cid-sR7Ha3PppT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR7Ha4tepS {
  background-image: url("../../../assets/images/123-1600x1067.jpg");
  overflow: hidden;
}
.cid-sR7Ha4tepS .svg-top {
  display: none;
}
.cid-sR7Ha4tepS .row {
  flex-direction: row-reverse;
}
.cid-sR7Ha4tepS 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-sR7Ha4tepS svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Ha4tepS svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sR7Ha4tepS 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-sR7Ha4tepS .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sR7Ha4tepS .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Ha4tepS .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Ha4tepS .mbr-text,
.cid-sR7Ha4tepS .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7Ha4Ytb5 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #932020;
}
@media (min-width: 1500px) {
  .cid-sR7Ha4Ytb5 .container {
    max-width: 1400px;
  }
}
.cid-sR7Ha4Ytb5 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ha4Ytb5 .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Ha4Ytb5 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Ha4Ytb5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sR7Ha4Ytb5 .card-wrapper {
  margin-top: 3rem;
}
.cid-sR7Ha4Ytb5 .row {
  justify-content: center;
}
.cid-sR7Ha4Ytb5 .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Ha4Ytb5 .card-title,
.cid-sR7Ha4Ytb5 .iconfont-wrapper {
  color: #ffffff;
}
.cid-sR7Ha4Ytb5 .card-text {
  color: #ffffff;
}
.cid-sR7Ha4Ytb5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7Ha5whGE {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sR7Ha5whGE .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ha5whGE .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7Ha5whGE .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Ha5whGE .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7Ha5whGE .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Ha5whGE .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Ha5whGE .mbr-text,
.cid-sR7Ha5whGE .mbr-section-btn {
  color: #932020;
}
.cid-sR7Ha5Y9UX {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-color: #932020;
}
.cid-sR7Ha5Y9UX .row {
  flex-direction: row-reverse;
}
.cid-sR7Ha5Y9UX .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ha5Y9UX .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Ha5Y9UX .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7Ha5Y9UX .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Ha5Y9UX .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Ha5Y9UX .mbr-text,
.cid-sR7Ha5Y9UX .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7Ha5Y9UX .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Ha6xOgK {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sR7Ha6xOgK .mbr-section-title {
  color: #932020;
}
.cid-sR7Ha6xOgK .mbr-text {
  color: #932020;
}
.cid-sR7Ha6xOgK .mbr-section-subtitle {
  color: #932020;
}
.cid-sR7Ha6xOgK .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ha6xOgK .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7Ha6xOgK .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Ha6YmKF {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sR7Ha6YmKF .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-sR7Ha6YmKF .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sR7Ha6YmKF .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ha6YmKF .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7Ha6YmKF .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Ha6YmKF .img1 {
  background: #932020;
}
.cid-sR7Ha6YmKF .img2 {
  background: #932020;
}
.cid-sR7Ha6YmKF .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sR7Ha6YmKF .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR7Ha6YmKF .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR7Ha6YmKF .card-wrapper {
    flex-direction: column;
  }
  .cid-sR7Ha6YmKF .card-box {
    padding: 1rem;
  }
  .cid-sR7Ha6YmKF .card-box,
  .cid-sR7Ha6YmKF .img-wrapper {
    width: 100%;
  }
  .cid-sR7Ha6YmKF .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR7Ha6YmKF .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-sR7Ha6YmKF .card-subtitle {
  color: #1a449a;
}
.cid-sR7Ha6YmKF .mbr-text,
.cid-sR7Ha6YmKF .link-wrap {
  color: #555555;
}
.cid-sR7Ha6YmKF .card-title,
.cid-sR7Ha6YmKF .card-box {
  color: #932020;
}
.cid-sR7Ha6YmKF .mbr-text,
.cid-sR7Ha6YmKF .mbr-section-btn {
  color: #932020;
}
.cid-sR7Ha7zFQn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #932020;
}
.cid-sR7Ha7zFQn .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ha7zFQn .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Ha7zFQn .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7Ha7zFQn .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Ha7zFQn .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Ha7zFQn .mbr-text,
.cid-sR7Ha7zFQn .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7Ha7zFQn .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Ha86O6y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sR7Ha86O6y .row {
  flex-direction: row-reverse;
}
.cid-sR7Ha86O6y .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Ha86O6y .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sR7Ha86O6y .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Ha86O6y .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7Ha86O6y .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Ha86O6y .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Ha86O6y .mbr-text,
.cid-sR7Ha86O6y .mbr-section-btn {
  color: #932020;
}
.cid-sR7Ha8EeZD {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mitsu-2000x1125.jpeg");
}
.cid-sR7Ha8EeZD .mbr-text,
.cid-sR7Ha8EeZD .mbr-section-btn {
  color: #f8f8f8;
}
.cid-sR7Ha9eq11.popup-builder {
  background-color: #ffffff;
}
.cid-sR7Ha9eq11.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sR7Ha9eq11.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sR7Ha9eq11 .modal-content,
.cid-sR7Ha9eq11 .modal-dialog {
  height: auto;
}
.cid-sR7Ha9eq11 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sR7Ha9eq11 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sR7Ha9eq11 .form-wrapper .mbr-form .form-group,
  .cid-sR7Ha9eq11 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sR7Ha9eq11 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sR7Ha9eq11 .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-sR7Ha9eq11 .mbr-text {
  text-align: center;
  color: #932020;
}
.cid-sR7Ha9eq11 .pt-0 {
  padding-top: 0 !important;
}
.cid-sR7Ha9eq11 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sR7Ha9eq11 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sR7Ha9eq11 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sR7Ha9eq11 .modal-open {
  overflow: hidden;
}
.cid-sR7Ha9eq11 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sR7Ha9eq11 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sR7Ha9eq11 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sR7Ha9eq11 .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-sR7Ha9eq11 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sR7Ha9eq11 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sR7Ha9eq11 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sR7Ha9eq11 .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-sR7Ha9eq11 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sR7Ha9eq11 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sR7Ha9eq11 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sR7Ha9eq11 .modal-backdrop.show {
  opacity: .5;
}
.cid-sR7Ha9eq11 .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-sR7Ha9eq11 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7Ha9eq11 .modal-header {
    padding: 1rem;
  }
}
.cid-sR7Ha9eq11 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sR7Ha9eq11 .modal-header .close svg {
  fill: #353535;
}
.cid-sR7Ha9eq11 .modal-header .close:hover {
  opacity: 1;
}
.cid-sR7Ha9eq11 .modal-header .close:focus {
  outline: none;
}
.cid-sR7Ha9eq11 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sR7Ha9eq11 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sR7Ha9eq11 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7Ha9eq11 .modal-body {
    padding: 1rem;
  }
}
.cid-sR7Ha9eq11 .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-sR7Ha9eq11 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7Ha9eq11 .modal-footer {
    padding: 1rem;
  }
}
.cid-sR7Ha9eq11 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sR7Ha9eq11 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sR7Ha9eq11 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sR7Ha9eq11 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sR7Ha9eq11 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sR7Ha9eq11 .modal-lg,
  .cid-sR7Ha9eq11 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sR7Ha9eq11 .modal-xl {
    max-width: 1140px;
  }
}
.cid-sR7Ha9eq11 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sR7Ha9eq11 .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-sR7Ha9eq11 .form-group {
  margin-bottom: 1rem;
}
.cid-sR7Ha9eq11 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sR7Ha9eq11 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sR7Ha9eq11 .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-sR7Ha9eq11 .mbr-section-btn {
  margin: 0;
}
.cid-sR7Ha9eq11 .mbr-section-btn .btn {
  margin: 0;
}
.cid-sR7Haa0k7x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-sR7Haa0k7x .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sR7Haa0k7x .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sR7Haa0k7x .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sR7Haa0k7x .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sR7Haa0k7x .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sR7Haa0k7x .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #9f1f1f;
}
@media (max-width: 767px) {
  .cid-sR7Haa0k7x .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sR7Haa0k7x .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7Haa0k7x .mbr-section-title {
  color: #ffffff;
}
.cid-sR7HaaSqes {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #932020;
  overflow: hidden;
}
.cid-sR7HaaSqes .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sR7U15kpvx .navbar-dropdown {
  position: relative !important;
}
.cid-sR7U15kpvx .navbar-dropdown {
  position: absolute !important;
}
.cid-sR7U15kpvx .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sR7U15kpvx .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sR7U15kpvx .nav-link:hover:before {
  width: 100%;
}
.cid-sR7U15kpvx .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sR7U15kpvx .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sR7U15kpvx .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-sR7U15kpvx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sR7U15kpvx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sR7U15kpvx .dropdown-item:hover,
.cid-sR7U15kpvx .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sR7U15kpvx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sR7U15kpvx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sR7U15kpvx .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sR7U15kpvx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sR7U15kpvx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sR7U15kpvx .dropdown-menu,
.cid-sR7U15kpvx .navbar.opened {
  background: #232323 !important;
}
.cid-sR7U15kpvx .nav-item:focus,
.cid-sR7U15kpvx .nav-link:focus {
  outline: none;
}
.cid-sR7U15kpvx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sR7U15kpvx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sR7U15kpvx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sR7U15kpvx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sR7U15kpvx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR7U15kpvx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR7U15kpvx .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-sR7U15kpvx .navbar.opened {
  transition: all 0.3s;
}
.cid-sR7U15kpvx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sR7U15kpvx .navbar .navbar-logo img {
  width: auto;
}
.cid-sR7U15kpvx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR7U15kpvx .navbar.collapsed {
  justify-content: center;
}
.cid-sR7U15kpvx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR7U15kpvx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR7U15kpvx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sR7U15kpvx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR7U15kpvx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sR7U15kpvx .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-sR7U15kpvx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR7U15kpvx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sR7U15kpvx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sR7U15kpvx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR7U15kpvx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR7U15kpvx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR7U15kpvx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sR7U15kpvx .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-sR7U15kpvx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sR7U15kpvx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR7U15kpvx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sR7U15kpvx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sR7U15kpvx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sR7U15kpvx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sR7U15kpvx .navbar.navbar-short {
  min-height: 80px;
}
.cid-sR7U15kpvx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sR7U15kpvx .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sR7U15kpvx .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-sR7U15kpvx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR7U15kpvx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR7U15kpvx .dropdown-item.active,
.cid-sR7U15kpvx .dropdown-item:active {
  background-color: transparent;
}
.cid-sR7U15kpvx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sR7U15kpvx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR7U15kpvx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR7U15kpvx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sR7U15kpvx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR7U15kpvx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR7U15kpvx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sR7U15kpvx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sR7U15kpvx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sR7U15kpvx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sR7U15kpvx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sR7U15kpvx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7U15kpvx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7U15kpvx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sR7U15kpvx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7U15kpvx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sR7U15kpvx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sR7U15kpvx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7U15kpvx .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sR7U15kpvx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sR7U15kpvx .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-sR7U15kpvx .navbar {
    height: 70px;
  }
  .cid-sR7U15kpvx .navbar.opened {
    height: auto;
  }
  .cid-sR7U15kpvx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR7U169Gj1 {
  background-image: url("../../../assets/images/123-1600x1067.jpg");
  overflow: hidden;
}
.cid-sR7U169Gj1 .svg-top {
  display: none;
}
.cid-sR7U169Gj1 .row {
  flex-direction: row-reverse;
}
.cid-sR7U169Gj1 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-sR7U169Gj1 svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7U169Gj1 svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sR7U169Gj1 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-sR7U169Gj1 .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sR7U169Gj1 .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7U169Gj1 .row {
    margin: 0 -2rem;
  }
}
.cid-sR7U169Gj1 .mbr-text,
.cid-sR7U169Gj1 .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7U16HhX1 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #932020;
}
@media (min-width: 1500px) {
  .cid-sR7U16HhX1 .container {
    max-width: 1400px;
  }
}
.cid-sR7U16HhX1 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7U16HhX1 .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7U16HhX1 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7U16HhX1 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sR7U16HhX1 .card-wrapper {
  margin-top: 3rem;
}
.cid-sR7U16HhX1 .row {
  justify-content: center;
}
.cid-sR7U16HhX1 .mbr-section-title {
  color: #ffffff;
}
.cid-sR7U16HhX1 .card-title,
.cid-sR7U16HhX1 .iconfont-wrapper {
  color: #ffffff;
}
.cid-sR7U16HhX1 .card-text {
  color: #ffffff;
}
.cid-sR7U16HhX1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7U17gule {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sR7U17gule .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7U17gule .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7U17gule .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7U17gule .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7U17gule .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7U17gule .row {
    margin: 0 -2rem;
  }
}
.cid-sR7U17gule .mbr-text,
.cid-sR7U17gule .mbr-section-btn {
  color: #932020;
}
.cid-sR7U17MRa4 {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-color: #932020;
}
.cid-sR7U17MRa4 .row {
  flex-direction: row-reverse;
}
.cid-sR7U17MRa4 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7U17MRa4 .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7U17MRa4 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7U17MRa4 .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7U17MRa4 .row {
    margin: 0 -2rem;
  }
}
.cid-sR7U17MRa4 .mbr-text,
.cid-sR7U17MRa4 .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7U17MRa4 .mbr-section-title {
  color: #ffffff;
}
.cid-sR7U18kzol {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sR7U18kzol .mbr-section-title {
  color: #932020;
}
.cid-sR7U18kzol .mbr-text {
  color: #932020;
}
.cid-sR7U18kzol .mbr-section-subtitle {
  color: #932020;
}
.cid-sR7U18kzol .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7U18kzol .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7U18kzol .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7U18RAwa {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sR7U18RAwa .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-sR7U18RAwa .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sR7U18RAwa .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7U18RAwa .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7U18RAwa .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7U18RAwa .img1 {
  background: #932020;
}
.cid-sR7U18RAwa .img2 {
  background: #932020;
}
.cid-sR7U18RAwa .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sR7U18RAwa .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR7U18RAwa .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR7U18RAwa .card-wrapper {
    flex-direction: column;
  }
  .cid-sR7U18RAwa .card-box {
    padding: 1rem;
  }
  .cid-sR7U18RAwa .card-box,
  .cid-sR7U18RAwa .img-wrapper {
    width: 100%;
  }
  .cid-sR7U18RAwa .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR7U18RAwa .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-sR7U18RAwa .card-subtitle {
  color: #1a449a;
}
.cid-sR7U18RAwa .mbr-text,
.cid-sR7U18RAwa .link-wrap {
  color: #555555;
}
.cid-sR7U18RAwa .card-title,
.cid-sR7U18RAwa .card-box {
  color: #932020;
}
.cid-sR7U18RAwa .mbr-text,
.cid-sR7U18RAwa .mbr-section-btn {
  color: #932020;
}
.cid-sR7U19pXyP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #932020;
}
.cid-sR7U19pXyP .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7U19pXyP .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7U19pXyP .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7U19pXyP .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7U19pXyP .row {
    margin: 0 -2rem;
  }
}
.cid-sR7U19pXyP .mbr-text,
.cid-sR7U19pXyP .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7U19pXyP .mbr-section-title {
  color: #ffffff;
}
.cid-sR7U19Y1ug {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sR7U19Y1ug .row {
  flex-direction: row-reverse;
}
.cid-sR7U19Y1ug .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7U19Y1ug .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sR7U19Y1ug .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7U19Y1ug .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7U19Y1ug .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7U19Y1ug .row {
    margin: 0 -2rem;
  }
}
.cid-sR7U19Y1ug .mbr-text,
.cid-sR7U19Y1ug .mbr-section-btn {
  color: #932020;
}
.cid-sR7U1awvab {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/suzuki-jimny-1920x1080.jpeg");
}
.cid-sR7U1awvab .mbr-text,
.cid-sR7U1awvab .mbr-section-btn {
  color: #f8f8f8;
}
.cid-sR7U1b15tG.popup-builder {
  background-color: #ffffff;
}
.cid-sR7U1b15tG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sR7U1b15tG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sR7U1b15tG .modal-content,
.cid-sR7U1b15tG .modal-dialog {
  height: auto;
}
.cid-sR7U1b15tG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sR7U1b15tG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sR7U1b15tG .form-wrapper .mbr-form .form-group,
  .cid-sR7U1b15tG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sR7U1b15tG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sR7U1b15tG .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-sR7U1b15tG .mbr-text {
  text-align: center;
  color: #932020;
}
.cid-sR7U1b15tG .pt-0 {
  padding-top: 0 !important;
}
.cid-sR7U1b15tG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sR7U1b15tG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sR7U1b15tG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sR7U1b15tG .modal-open {
  overflow: hidden;
}
.cid-sR7U1b15tG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sR7U1b15tG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sR7U1b15tG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sR7U1b15tG .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-sR7U1b15tG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sR7U1b15tG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sR7U1b15tG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sR7U1b15tG .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-sR7U1b15tG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sR7U1b15tG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sR7U1b15tG .modal-backdrop.fade {
  opacity: 0;
}
.cid-sR7U1b15tG .modal-backdrop.show {
  opacity: .5;
}
.cid-sR7U1b15tG .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-sR7U1b15tG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7U1b15tG .modal-header {
    padding: 1rem;
  }
}
.cid-sR7U1b15tG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sR7U1b15tG .modal-header .close svg {
  fill: #353535;
}
.cid-sR7U1b15tG .modal-header .close:hover {
  opacity: 1;
}
.cid-sR7U1b15tG .modal-header .close:focus {
  outline: none;
}
.cid-sR7U1b15tG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sR7U1b15tG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sR7U1b15tG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7U1b15tG .modal-body {
    padding: 1rem;
  }
}
.cid-sR7U1b15tG .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-sR7U1b15tG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7U1b15tG .modal-footer {
    padding: 1rem;
  }
}
.cid-sR7U1b15tG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sR7U1b15tG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sR7U1b15tG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sR7U1b15tG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sR7U1b15tG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sR7U1b15tG .modal-lg,
  .cid-sR7U1b15tG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sR7U1b15tG .modal-xl {
    max-width: 1140px;
  }
}
.cid-sR7U1b15tG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sR7U1b15tG .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-sR7U1b15tG .form-group {
  margin-bottom: 1rem;
}
.cid-sR7U1b15tG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sR7U1b15tG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sR7U1b15tG .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-sR7U1b15tG .mbr-section-btn {
  margin: 0;
}
.cid-sR7U1b15tG .mbr-section-btn .btn {
  margin: 0;
}
.cid-sR7U1bMyWM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-sR7U1bMyWM .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sR7U1bMyWM .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sR7U1bMyWM .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sR7U1bMyWM .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sR7U1bMyWM .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sR7U1bMyWM .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #9f1f1f;
}
@media (max-width: 767px) {
  .cid-sR7U1bMyWM .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sR7U1bMyWM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7U1bMyWM .mbr-section-title {
  color: #ffffff;
}
.cid-sR7U1cwA0j {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #932020;
  overflow: hidden;
}
.cid-sR7U1cwA0j .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sR7Wb1hxTg .navbar-dropdown {
  position: relative !important;
}
.cid-sR7Wb1hxTg .navbar-dropdown {
  position: absolute !important;
}
.cid-sR7Wb1hxTg .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sR7Wb1hxTg .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sR7Wb1hxTg .nav-link:hover:before {
  width: 100%;
}
.cid-sR7Wb1hxTg .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sR7Wb1hxTg .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sR7Wb1hxTg .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-sR7Wb1hxTg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sR7Wb1hxTg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sR7Wb1hxTg .dropdown-item:hover,
.cid-sR7Wb1hxTg .dropdown-item:focus {
  background: #9f1f1f !important;
  color: white !important;
}
.cid-sR7Wb1hxTg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sR7Wb1hxTg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sR7Wb1hxTg .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sR7Wb1hxTg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sR7Wb1hxTg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sR7Wb1hxTg .dropdown-menu,
.cid-sR7Wb1hxTg .navbar.opened {
  background: #232323 !important;
}
.cid-sR7Wb1hxTg .nav-item:focus,
.cid-sR7Wb1hxTg .nav-link:focus {
  outline: none;
}
.cid-sR7Wb1hxTg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sR7Wb1hxTg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sR7Wb1hxTg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sR7Wb1hxTg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sR7Wb1hxTg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sR7Wb1hxTg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sR7Wb1hxTg .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-sR7Wb1hxTg .navbar.opened {
  transition: all 0.3s;
}
.cid-sR7Wb1hxTg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sR7Wb1hxTg .navbar .navbar-logo img {
  width: auto;
}
.cid-sR7Wb1hxTg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sR7Wb1hxTg .navbar.collapsed {
  justify-content: center;
}
.cid-sR7Wb1hxTg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sR7Wb1hxTg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sR7Wb1hxTg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sR7Wb1hxTg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sR7Wb1hxTg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sR7Wb1hxTg .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-sR7Wb1hxTg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sR7Wb1hxTg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sR7Wb1hxTg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sR7Wb1hxTg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sR7Wb1hxTg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sR7Wb1hxTg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sR7Wb1hxTg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sR7Wb1hxTg .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-sR7Wb1hxTg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sR7Wb1hxTg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sR7Wb1hxTg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sR7Wb1hxTg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sR7Wb1hxTg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sR7Wb1hxTg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sR7Wb1hxTg .navbar.navbar-short {
  min-height: 80px;
}
.cid-sR7Wb1hxTg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sR7Wb1hxTg .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sR7Wb1hxTg .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-sR7Wb1hxTg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sR7Wb1hxTg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sR7Wb1hxTg .dropdown-item.active,
.cid-sR7Wb1hxTg .dropdown-item:active {
  background-color: transparent;
}
.cid-sR7Wb1hxTg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sR7Wb1hxTg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sR7Wb1hxTg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sR7Wb1hxTg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sR7Wb1hxTg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sR7Wb1hxTg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sR7Wb1hxTg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sR7Wb1hxTg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sR7Wb1hxTg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sR7Wb1hxTg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sR7Wb1hxTg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sR7Wb1hxTg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7Wb1hxTg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sR7Wb1hxTg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sR7Wb1hxTg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7Wb1hxTg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sR7Wb1hxTg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sR7Wb1hxTg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sR7Wb1hxTg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sR7Wb1hxTg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sR7Wb1hxTg .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-sR7Wb1hxTg .navbar {
    height: 70px;
  }
  .cid-sR7Wb1hxTg .navbar.opened {
    height: auto;
  }
  .cid-sR7Wb1hxTg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sR7Wb29s8E {
  background-image: url("../../../assets/images/123-1600x1067.jpg");
  overflow: hidden;
}
.cid-sR7Wb29s8E .svg-top {
  display: none;
}
.cid-sR7Wb29s8E .row {
  flex-direction: row-reverse;
}
.cid-sR7Wb29s8E 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-sR7Wb29s8E svg path {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Wb29s8E svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sR7Wb29s8E 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-sR7Wb29s8E .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sR7Wb29s8E .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Wb29s8E .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Wb29s8E .mbr-text,
.cid-sR7Wb29s8E .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7Wb2M4ke {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #932020;
}
@media (min-width: 1500px) {
  .cid-sR7Wb2M4ke .container {
    max-width: 1400px;
  }
}
.cid-sR7Wb2M4ke .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Wb2M4ke .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Wb2M4ke .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Wb2M4ke .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sR7Wb2M4ke .card-wrapper {
  margin-top: 3rem;
}
.cid-sR7Wb2M4ke .row {
  justify-content: center;
}
.cid-sR7Wb2M4ke .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Wb2M4ke .card-title,
.cid-sR7Wb2M4ke .iconfont-wrapper {
  color: #ffffff;
}
.cid-sR7Wb2M4ke .card-text {
  color: #ffffff;
}
.cid-sR7Wb2M4ke .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7Wb3quHf {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-sR7Wb3quHf .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Wb3quHf .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7Wb3quHf .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Wb3quHf .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7Wb3quHf .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Wb3quHf .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Wb3quHf .mbr-text,
.cid-sR7Wb3quHf .mbr-section-btn {
  color: #932020;
}
.cid-sR7Wb3Wp6c {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-color: #932020;
}
.cid-sR7Wb3Wp6c .row {
  flex-direction: row-reverse;
}
.cid-sR7Wb3Wp6c .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Wb3Wp6c .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Wb3Wp6c .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7Wb3Wp6c .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Wb3Wp6c .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Wb3Wp6c .mbr-text,
.cid-sR7Wb3Wp6c .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7Wb3Wp6c .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Wb4q3CK {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sR7Wb4q3CK .mbr-section-title {
  color: #932020;
}
.cid-sR7Wb4q3CK .mbr-text {
  color: #932020;
}
.cid-sR7Wb4q3CK .mbr-section-subtitle {
  color: #932020;
}
.cid-sR7Wb4q3CK .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Wb4q3CK .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7Wb4q3CK .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Wb4TgPY {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #f8f8f8;
}
.cid-sR7Wb4TgPY .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-sR7Wb4TgPY .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sR7Wb4TgPY .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Wb4TgPY .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sR7Wb4TgPY .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Wb4TgPY .img1 {
  background: #932020;
}
.cid-sR7Wb4TgPY .img2 {
  background: #932020;
}
.cid-sR7Wb4TgPY .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sR7Wb4TgPY .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR7Wb4TgPY .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR7Wb4TgPY .card-wrapper {
    flex-direction: column;
  }
  .cid-sR7Wb4TgPY .card-box {
    padding: 1rem;
  }
  .cid-sR7Wb4TgPY .card-box,
  .cid-sR7Wb4TgPY .img-wrapper {
    width: 100%;
  }
  .cid-sR7Wb4TgPY .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR7Wb4TgPY .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-sR7Wb4TgPY .card-subtitle {
  color: #1a449a;
}
.cid-sR7Wb4TgPY .mbr-text,
.cid-sR7Wb4TgPY .link-wrap {
  color: #555555;
}
.cid-sR7Wb4TgPY .card-title,
.cid-sR7Wb4TgPY .card-box {
  color: #932020;
}
.cid-sR7Wb4TgPY .mbr-text,
.cid-sR7Wb4TgPY .mbr-section-btn {
  color: #932020;
}
.cid-sR7Wb5rbcc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #932020;
}
.cid-sR7Wb5rbcc .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Wb5rbcc .svg-top .st0 {
  fill: #932020;
}
@media (max-width: 992px) {
  .cid-sR7Wb5rbcc .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-sR7Wb5rbcc .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Wb5rbcc .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Wb5rbcc .mbr-text,
.cid-sR7Wb5rbcc .mbr-section-btn {
  color: #ffffff;
}
.cid-sR7Wb5rbcc .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Wb61UVE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sR7Wb61UVE .row {
  flex-direction: row-reverse;
}
.cid-sR7Wb61UVE .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #9f1f1f;
}
.cid-sR7Wb61UVE .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sR7Wb61UVE .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sR7Wb61UVE .mbr-section-title {
  color: #932020;
}
@media (min-width: 1400px) {
  .cid-sR7Wb61UVE .col-12 {
    padding: 0 2rem;
  }
  .cid-sR7Wb61UVE .row {
    margin: 0 -2rem;
  }
}
.cid-sR7Wb61UVE .mbr-text,
.cid-sR7Wb61UVE .mbr-section-btn {
  color: #932020;
}
.cid-sR7Wb6yMti {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/2017-mazda-cx-5-1920x1080.jpeg");
}
.cid-sR7Wb6yMti .mbr-text,
.cid-sR7Wb6yMti .mbr-section-btn {
  color: #f8f8f8;
}
.cid-sR7Wb74q3l.popup-builder {
  background-color: #ffffff;
}
.cid-sR7Wb74q3l.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sR7Wb74q3l.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sR7Wb74q3l .modal-content,
.cid-sR7Wb74q3l .modal-dialog {
  height: auto;
}
.cid-sR7Wb74q3l .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sR7Wb74q3l .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sR7Wb74q3l .form-wrapper .mbr-form .form-group,
  .cid-sR7Wb74q3l .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sR7Wb74q3l .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sR7Wb74q3l .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-sR7Wb74q3l .mbr-text {
  text-align: center;
  color: #932020;
}
.cid-sR7Wb74q3l .pt-0 {
  padding-top: 0 !important;
}
.cid-sR7Wb74q3l .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sR7Wb74q3l .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sR7Wb74q3l .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sR7Wb74q3l .modal-open {
  overflow: hidden;
}
.cid-sR7Wb74q3l .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sR7Wb74q3l .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sR7Wb74q3l .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sR7Wb74q3l .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-sR7Wb74q3l .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sR7Wb74q3l .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sR7Wb74q3l .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sR7Wb74q3l .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-sR7Wb74q3l .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sR7Wb74q3l .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sR7Wb74q3l .modal-backdrop.fade {
  opacity: 0;
}
.cid-sR7Wb74q3l .modal-backdrop.show {
  opacity: .5;
}
.cid-sR7Wb74q3l .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-sR7Wb74q3l .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7Wb74q3l .modal-header {
    padding: 1rem;
  }
}
.cid-sR7Wb74q3l .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sR7Wb74q3l .modal-header .close svg {
  fill: #353535;
}
.cid-sR7Wb74q3l .modal-header .close:hover {
  opacity: 1;
}
.cid-sR7Wb74q3l .modal-header .close:focus {
  outline: none;
}
.cid-sR7Wb74q3l .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sR7Wb74q3l .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sR7Wb74q3l .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7Wb74q3l .modal-body {
    padding: 1rem;
  }
}
.cid-sR7Wb74q3l .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-sR7Wb74q3l .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR7Wb74q3l .modal-footer {
    padding: 1rem;
  }
}
.cid-sR7Wb74q3l .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sR7Wb74q3l .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sR7Wb74q3l .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sR7Wb74q3l .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sR7Wb74q3l .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sR7Wb74q3l .modal-lg,
  .cid-sR7Wb74q3l .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sR7Wb74q3l .modal-xl {
    max-width: 1140px;
  }
}
.cid-sR7Wb74q3l .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sR7Wb74q3l .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-sR7Wb74q3l .form-group {
  margin-bottom: 1rem;
}
.cid-sR7Wb74q3l .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sR7Wb74q3l .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sR7Wb74q3l .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-sR7Wb74q3l .mbr-section-btn {
  margin: 0;
}
.cid-sR7Wb74q3l .mbr-section-btn .btn {
  margin: 0;
}
.cid-sR7Wb7OTUi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #932020;
}
.cid-sR7Wb7OTUi .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sR7Wb7OTUi .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sR7Wb7OTUi .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sR7Wb7OTUi .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sR7Wb7OTUi .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sR7Wb7OTUi .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #9f1f1f;
}
@media (max-width: 767px) {
  .cid-sR7Wb7OTUi .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sR7Wb7OTUi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR7Wb7OTUi .mbr-section-title {
  color: #ffffff;
}
.cid-sR7Wb8AOsU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #932020;
  overflow: hidden;
}
.cid-sR7Wb8AOsU .media-container-row .mbr-text {
  color: #ffffff;
}
