.btn {
  border-width: 2px;
}
body {
  font-family: 'JetBrains Mono', monospace;
}
.display-1 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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: #1a449a !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: #1a449a !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: #1a449a !important;
  border-color: #1a449a !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: #1a449a !important;
  border-color: #1a449a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1a449a !important;
  border-color: #1a449a !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 #1a449a !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #1a449a;
  color: #1a449a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1a449a;
  background-color: transparent!important;
  border-color: #1a449a !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1a449a !important;
  border-color: #1a449a !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: #1a449a;
  -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: #1a449a !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: #1a449a !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: #1a449a;
}
.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: #1a449a;
  border-color: #1a449a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1a449a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #5281e2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #1a449a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #1a449a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1a449a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1a449a;
}
.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: #1a449a;
  border-bottom-color: #1a449a;
}
.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: #1a449a !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='%231a449a' %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-sBTN7vbAnD {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-color: #1a449a;
  overflow: hidden;
}
.cid-sBTN7vbAnD .row {
  flex-direction: row-reverse;
}
.cid-sBTN7vbAnD svg {
  position: absolute;
  top: 50px;
  width: 1700px;
  right: -80px;
  transform: scaleX(1) scaleY(1.3) rotate(0deg);
  animation: 1.5s ease-in-out infinite alternate svg;
}
.cid-sBTN7vbAnD svg path {
  fill: #ffeda8;
}
@media (max-width: 992px) {
  .cid-sBTN7vbAnD svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sBTN7vbAnD svg {
    width: 800px;
  }
}
@keyframes svg {
  from {
    transform: scaleX(1.2) scaleY(1.35) rotate(-1deg);
  }
  to {
    transform: scaleX(1) scaleY(1.3) rotate(0deg);
  }
}
.cid-sBTN7vbAnD .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sBTN7vbAnD .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTN7vbAnD .row {
    margin: 0 -2rem;
  }
}
.cid-sBTN7vbAnD .mbr-text,
.cid-sBTN7vbAnD .mbr-section-btn {
  color: #ffffff;
}
.cid-uBEFSPDWk5 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uBEFSPDWk5 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uBEFSPDWk5 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.cid-uBEFSPDWk5 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uBEFSPDWk5 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBEFSPDWk5 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBEFSPDWk5 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBEFSPDWk5 .svg-top {
    width: 1000px;
  }
}
.cid-uBEFSPDWk5 .mbr-text {
  color: #000000;
}
.cid-uBEFSPDWk5 .mbr-section-title {
  text-align: center;
}
.cid-uBEIliO3sD {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uBEIliO3sD .mbr-section-title {
  color: #1a449a;
}
.cid-uBEIliO3sD .mbr-text {
  color: #000000;
}
.cid-uBEIliO3sD .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBEIliO3sD .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBEIliO3sD .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBEIliO3sD .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBEIliO3sD .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTN7PNF8A .navbar-dropdown {
  position: relative !important;
}
.cid-sBTN7PNF8A .navbar-dropdown {
  position: absolute !important;
}
.cid-sBTN7PNF8A .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-sBTN7PNF8A .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-sBTN7PNF8A .nav-link:hover:before {
  width: 100%;
}
.cid-sBTN7PNF8A .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-sBTN7PNF8A .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-sBTN7PNF8A .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBTN7PNF8A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBTN7PNF8A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBTN7PNF8A .dropdown-item:hover,
.cid-sBTN7PNF8A .dropdown-item:focus {
  background: #1a449a !important;
  color: white !important;
}
.cid-sBTN7PNF8A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBTN7PNF8A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBTN7PNF8A .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-sBTN7PNF8A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBTN7PNF8A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBTN7PNF8A .dropdown-menu,
.cid-sBTN7PNF8A .navbar.opened {
  background: #1a449a !important;
}
.cid-sBTN7PNF8A .nav-item:focus,
.cid-sBTN7PNF8A .nav-link:focus {
  outline: none;
}
.cid-sBTN7PNF8A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBTN7PNF8A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBTN7PNF8A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBTN7PNF8A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBTN7PNF8A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBTN7PNF8A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBTN7PNF8A .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 68, 154, 0);
}
.cid-sBTN7PNF8A .navbar.opened {
  transition: all 0.3s;
}
.cid-sBTN7PNF8A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBTN7PNF8A .navbar .navbar-logo img {
  width: auto;
}
.cid-sBTN7PNF8A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBTN7PNF8A .navbar.collapsed {
  justify-content: center;
}
.cid-sBTN7PNF8A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBTN7PNF8A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sBTN7PNF8A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sBTN7PNF8A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBTN7PNF8A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBTN7PNF8A .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sBTN7PNF8A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBTN7PNF8A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBTN7PNF8A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBTN7PNF8A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBTN7PNF8A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBTN7PNF8A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBTN7PNF8A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBTN7PNF8A .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sBTN7PNF8A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBTN7PNF8A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBTN7PNF8A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBTN7PNF8A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBTN7PNF8A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBTN7PNF8A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBTN7PNF8A .navbar.navbar-short {
  min-height: 80px;
}
.cid-sBTN7PNF8A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBTN7PNF8A .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sBTN7PNF8A .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sBTN7PNF8A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBTN7PNF8A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBTN7PNF8A .dropdown-item.active,
.cid-sBTN7PNF8A .dropdown-item:active {
  background-color: transparent;
}
.cid-sBTN7PNF8A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBTN7PNF8A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBTN7PNF8A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBTN7PNF8A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a449a;
}
.cid-sBTN7PNF8A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBTN7PNF8A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBTN7PNF8A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBTN7PNF8A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBTN7PNF8A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBTN7PNF8A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1a449a;
}
.cid-sBTN7PNF8A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBTN7PNF8A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBTN7PNF8A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBTN7PNF8A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBTN7PNF8A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBTN7PNF8A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBTN7PNF8A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBTN7PNF8A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBTN7PNF8A .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sBTN7PNF8A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBTN7PNF8A .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sBTN7PNF8A .navbar {
    height: 70px;
  }
  .cid-sBTN7PNF8A .navbar.opened {
    height: auto;
  }
  .cid-sBTN7PNF8A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBTNAfuEN4 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #1a449a;
}
.cid-sBTNAfuEN4 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sBTNAfuEN4 .team-card:hover {
  transform: translateY(-10px);
}
.cid-sBTNAfuEN4 .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-sBTNAfuEN4 .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-sBTNAfuEN4 .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-sBTNAfuEN4 .image-wrap:hover .read,
.cid-sBTNAfuEN4 .image-wrap:focus-within .read,
.cid-sBTNAfuEN4 .image-wrap:hover .img-svg,
.cid-sBTNAfuEN4 .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-sBTNAfuEN4 .image-wrap:hover .more,
.cid-sBTNAfuEN4 .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-sBTNAfuEN4 .image-wrap .read,
  .cid-sBTNAfuEN4 .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-sBTNAfuEN4 .image-wrap .more {
    transform: scale(1);
  }
}
.cid-sBTNAfuEN4 .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-sBTNAfuEN4 .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #1a449a;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-sBTNAfuEN4 .img-svg path {
  fill: #1a449a;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-sBTNAfuEN4 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-sBTNAfuEN4 .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-sBTNAfuEN4 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.cid-sBTNAfuEN4 h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-sBTNAfuEN4 h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-sBTNAfuEN4 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sBTNAfuEN4 .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sBTNAfuEN4 .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-sBTNAfuEN4 .card-title,
.cid-sBTNAfuEN4 .social-row {
  color: #1a449a;
}
.cid-sBTNAfuEN4 .mbr-role,
.cid-sBTNAfuEN4 .social-row {
  color: #ffffff;
}
.cid-sBTNAfuEN4 .card-text,
.cid-sBTNAfuEN4 .mbr-section-btn,
.cid-sBTNAfuEN4 .social-row {
  color: #1a449a;
}
.cid-sBTNAfuEN4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sBTNAfuEN4 .card-title,
.cid-sBTNAfuEN4 .content-wrap {
  color: #ffffff;
}
.cid-sBTNMACZMo {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-sBTNMACZMo .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-sBTNMACZMo .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTNMACZMo .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTNMACZMo .mbr-section-title {
  color: #000000;
}
@media (min-width: 1400px) {
  .cid-sBTNMACZMo .col-12 {
    padding: 0 2rem;
  }
  .cid-sBTNMACZMo .row {
    margin: 0 -2rem;
  }
}
.cid-sBTNMACZMo .mbr-text,
.cid-sBTNMACZMo .mbr-section-btn {
  color: #000000;
}
.cid-sBTOxVNGNC {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #1a449a;
}
.cid-sBTOxVNGNC .mbr-section-title {
  color: #ffffff;
}
.cid-sBTOxVNGNC .mbr-text {
  color: #ffffff;
}
.cid-sBTOxVNGNC .mbr-section-subtitle {
  color: #1a449a;
}
.cid-sBTOxVNGNC .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: #1a449a;
}
.cid-sBTOxVNGNC .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-sBTOxVNGNC .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTNV7y86A {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #f8f8f8;
}
.cid-sBTNV7y86A .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sBTNV7y86A .team-card:hover {
  transform: translateY(-10px);
}
.cid-sBTNV7y86A .image-wrap {
  height: 350px;
  padding-bottom: 1rem;
}
.cid-sBTNV7y86A .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-sBTNV7y86A .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: #1a449a;
}
.cid-sBTNV7y86A .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTNV7y86A .svg-top {
    width: 1000px;
  }
}
.cid-sBTNV7y86A .mbr-section-subtitle {
  color: #1a449a;
  text-align: center;
}
.cid-sBTNV7y86A .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sBTNV7y86A .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sBTNV7y86A .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-sBTNV7y86A .social-row {
  text-align: center;
}
.cid-sBTNV7y86A .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #1a449a;
  transition: all 0.3s;
}
.cid-sBTNV7y86A .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #1a449a;
  font-size: 1.5rem;
}
.cid-sBTNV7y86A .social-row .soc-item:hover {
  background-color: #1a449a;
}
.cid-sBTNV7y86A .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sBTNV7y86A .card-title,
.cid-sBTNV7y86A .social-row {
  color: #000000;
  text-align: center;
}
.cid-sBTNV7y86A .mbr-role,
.cid-sBTNV7y86A .social-row {
  color: #1a449a;
  text-align: center;
}
.cid-sBTNV7y86A .card-text,
.cid-sBTNV7y86A .mbr-section-btn,
.cid-sBTNV7y86A .social-row {
  color: #1a449a;
  text-align: center;
}
.cid-sBTNV7y86A .mbr-section-title {
  color: #1a449a;
  text-align: center;
}
.cid-uBEHslTv64 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #1a449a;
}
.cid-uBEHslTv64 .mbr-section-title {
  color: #ffffff;
}
.cid-uBEHslTv64 .mbr-text {
  color: #ffffff;
}
.cid-uBEHslTv64 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBEHslTv64 .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: #1a449a;
}
.cid-uBEHslTv64 .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBEHslTv64 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sBTNW6fR7J {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sBTNW6fR7J .image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-sBTNW6fR7J .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sBTNW6fR7J .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: #1a449a;
}
.cid-sBTNW6fR7J .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sBTNW6fR7J .svg-top {
    width: 1000px;
  }
}
.cid-sBTNW6fR7J .mbr-text {
  color: #000000;
}
.cid-sBTNW6fR7J .mbr-section-title {
  color: #000000;
}
.cid-sBTNW6fR7J .name {
  color: #ffffff;
}
.cid-sBTNW6fR7J .position {
  color: #ffffff;
}
.cid-uBEIYqhZAX {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #1a449a;
}
.cid-uBEIYqhZAX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBEIYqhZAX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBEIYqhZAX .container {
    padding: 0 20px;
  }
}
.cid-uBEIYqhZAX .row {
  margin: 0;
}
.cid-uBEIYqhZAX .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBEIYqhZAX .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBEIYqhZAX .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uBEIYqhZAX .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uBEIYqhZAX .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uBEIYqhZAX .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uBEIYqhZAX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uBExQ8I0Rv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
  margin-bottom: 2px;
}
.cid-uBExQ8I0Rv .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uBExQ8I0Rv .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uBExQ8I0Rv .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uBExQ8I0Rv .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uBExQ8I0Rv .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uBEGHhLjk4 {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #1a449a;
}
.cid-uBEGHhLjk4 .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uBEGHhLjk4 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBEGHhLjk4 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBEGHhLjk4 .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBEGHhLjk4 .svg-top {
    width: 1000px;
  }
}
.cid-uBEGHhLjk4 .card-header {
  border-bottom: 2px solid #1a449a;
  margin-bottom: 0px!important;
}
.cid-uBEGHhLjk4 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uBEGHhLjk4 span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-uBEGHhLjk4 .collapsed span {
  transform: rotate(0deg);
}
.cid-uBEGHhLjk4 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uBEGHhLjk4 .panel-group {
  width: 100%;
}
.cid-uBEGHhLjk4 .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-uBEGHhLjk4 .card {
  border-radius: 0px;
}
.cid-uBEGHhLjk4 .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-uBEGHhLjk4 .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uBEGHhLjk4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uBEGHhLjk4 .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-uBEGHhLjk4 .panel-text {
  color: #1a449a;
}
.cid-uBEGHhLjk4 .header-text,
.cid-uBEGHhLjk4 .sign {
  color: #263d5a;
}
.cid-uBEGHhLjk4 .mbr-section-title {
  color: #ffffff;
}
.cid-uBEGHhLjk4 .header-text,
.cid-uBEGHhLjk4 .sign,
.cid-uBEGHhLjk4 .card-header {
  color: #ffffff;
}
.cid-uBEGHhLjk4 .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uBELfQEkwC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
  margin-bottom: 2px;
}
.cid-uBELfQEkwC .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uBELfQEkwC .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uBELfQEkwC .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uBELfQEkwC .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uBELfQEkwC .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uBELx6FMem {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-uBELx6FMem {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-uBELx6FMem {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-uBELx6FMem .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uBELx6FMem .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-uBELx6FMem .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-uBELx6FMem .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uBELx6FMem .text {
    min-width: 615px;
    transform: translate(-25%, 4rem);
  }
}
.cid-uBELx6FMem .text-wrapper {
  background: #1a449a;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-uBELx6FMem .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-uBELx6FMem .mbr-text {
  font-weight: 300;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uBELx6FMem .display-1 {
    font-size: 65px;
  }
  .cid-uBELx6FMem .display-5 {
    font-size: 29px;
  }
}
.cid-uBELx6FMem .mbr-section-btn {
  background: #1a449a;
  margin-left: 0;
  margin-right: 0;
}
.cid-uBELx6FMem .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-uBELx6FMem .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-uBELx6FMem .mbr-section-title {
  color: #ffffff;
}
.cid-sBTNXE176I {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #f8f8f8;
}
.cid-sBTNXE176I .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-sBTNXE176I .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sBTNXE176I .svg-top {
    width: 1000px;
  }
}
.cid-sBTNXE176I .google-map {
  height: 30rem;
  position: relative;
}
.cid-sBTNXE176I .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sBTNXE176I .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sBTNXE176I .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sBTNXE176I .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sBTO1eabjO {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #1a449a;
}
.cid-sBTO1eabjO svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-sBTO1eabjO svg .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-sBTO1eabjO svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-sBTO1eabjO .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sBTO1eabjO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBTO1eabjO .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sBTO1eabjO .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sBTO1eabjO div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sBTO1eabjO .copyright {
  color: #ffffff;
}
.cid-sBTO1eabjO .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uBEOCmylxN {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-color: #1a449a;
  overflow: hidden;
}
.cid-uBEOCmylxN .row {
  flex-direction: row-reverse;
}
.cid-uBEOCmylxN 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-uBEOCmylxN svg path {
  fill: #ffeda8;
}
@media (max-width: 992px) {
  .cid-uBEOCmylxN svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uBEOCmylxN 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-uBEOCmylxN .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-uBEOCmylxN .col-12 {
    padding: 0 2rem;
  }
  .cid-uBEOCmylxN .row {
    margin: 0 -2rem;
  }
}
.cid-uBEOCmylxN .mbr-text,
.cid-uBEOCmylxN .mbr-section-btn {
  color: #ffffff;
}
.cid-uBEOCpFo51 .navbar-dropdown {
  position: relative !important;
}
.cid-uBEOCpFo51 .navbar-dropdown {
  position: absolute !important;
}
.cid-uBEOCpFo51 .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uBEOCpFo51 .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uBEOCpFo51 .nav-link:hover:before {
  width: 100%;
}
.cid-uBEOCpFo51 .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uBEOCpFo51 .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uBEOCpFo51 .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-uBEOCpFo51 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBEOCpFo51 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBEOCpFo51 .dropdown-item:hover,
.cid-uBEOCpFo51 .dropdown-item:focus {
  background: #1a449a !important;
  color: white !important;
}
.cid-uBEOCpFo51 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBEOCpFo51 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBEOCpFo51 .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uBEOCpFo51 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBEOCpFo51 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBEOCpFo51 .dropdown-menu,
.cid-uBEOCpFo51 .navbar.opened {
  background: #1a449a !important;
}
.cid-uBEOCpFo51 .nav-item:focus,
.cid-uBEOCpFo51 .nav-link:focus {
  outline: none;
}
.cid-uBEOCpFo51 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBEOCpFo51 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBEOCpFo51 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBEOCpFo51 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBEOCpFo51 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBEOCpFo51 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBEOCpFo51 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 68, 154, 0);
}
.cid-uBEOCpFo51 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBEOCpFo51 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBEOCpFo51 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBEOCpFo51 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBEOCpFo51 .navbar.collapsed {
  justify-content: center;
}
.cid-uBEOCpFo51 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBEOCpFo51 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBEOCpFo51 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uBEOCpFo51 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBEOCpFo51 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBEOCpFo51 .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-uBEOCpFo51 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBEOCpFo51 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBEOCpFo51 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBEOCpFo51 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBEOCpFo51 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBEOCpFo51 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBEOCpFo51 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBEOCpFo51 .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-uBEOCpFo51 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBEOCpFo51 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBEOCpFo51 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBEOCpFo51 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBEOCpFo51 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBEOCpFo51 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBEOCpFo51 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uBEOCpFo51 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBEOCpFo51 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uBEOCpFo51 .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-uBEOCpFo51 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBEOCpFo51 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBEOCpFo51 .dropdown-item.active,
.cid-uBEOCpFo51 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBEOCpFo51 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBEOCpFo51 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBEOCpFo51 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBEOCpFo51 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a449a;
}
.cid-uBEOCpFo51 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBEOCpFo51 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBEOCpFo51 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBEOCpFo51 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBEOCpFo51 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBEOCpFo51 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1a449a;
}
.cid-uBEOCpFo51 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBEOCpFo51 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBEOCpFo51 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBEOCpFo51 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBEOCpFo51 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBEOCpFo51 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBEOCpFo51 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBEOCpFo51 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBEOCpFo51 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBEOCpFo51 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBEOCpFo51 .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-uBEOCpFo51 .navbar {
    height: 70px;
  }
  .cid-uBEOCpFo51 .navbar.opened {
    height: auto;
  }
  .cid-uBEOCpFo51 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBEOCD5XBi {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #fffcf5;
  margin-bottom: 2px;
}
.cid-uBEOCD5XBi .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uBEOCD5XBi .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uBEOCD5XBi .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uBEOCD5XBi .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uBEOCD5XBi .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uBEOCGmOBX {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #f8f8f8;
}
.cid-uBEOCGmOBX .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: #1a449a;
}
.cid-uBEOCGmOBX .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBEOCGmOBX .svg-top {
    width: 1000px;
  }
}
.cid-uBEOCGmOBX .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBEOCGmOBX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uBEOCGmOBX .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uBEOCGmOBX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBEOCGmOBX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBEOCHDdtr {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #1a449a;
}
.cid-uBEOCHDdtr svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uBEOCHDdtr svg .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBEOCHDdtr svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uBEOCHDdtr .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBEOCHDdtr .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBEOCHDdtr .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uBEOCHDdtr .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uBEOCHDdtr div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uBEOCHDdtr .copyright {
  color: #ffffff;
}
.cid-uBEOCHDdtr .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uBEP6yJ2sE {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-color: #1a449a;
  overflow: hidden;
}
.cid-uBEP6yJ2sE .row {
  flex-direction: row-reverse;
}
.cid-uBEP6yJ2sE 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-uBEP6yJ2sE svg path {
  fill: #ffeda8;
}
@media (max-width: 992px) {
  .cid-uBEP6yJ2sE svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uBEP6yJ2sE 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-uBEP6yJ2sE .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-uBEP6yJ2sE .col-12 {
    padding: 0 2rem;
  }
  .cid-uBEP6yJ2sE .row {
    margin: 0 -2rem;
  }
}
.cid-uBEP6yJ2sE .mbr-text,
.cid-uBEP6yJ2sE .mbr-section-btn {
  color: #ffffff;
}
.cid-uBEP6A7qMc .navbar-dropdown {
  position: relative !important;
}
.cid-uBEP6A7qMc .navbar-dropdown {
  position: absolute !important;
}
.cid-uBEP6A7qMc .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uBEP6A7qMc .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uBEP6A7qMc .nav-link:hover:before {
  width: 100%;
}
.cid-uBEP6A7qMc .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uBEP6A7qMc .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uBEP6A7qMc .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-uBEP6A7qMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBEP6A7qMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBEP6A7qMc .dropdown-item:hover,
.cid-uBEP6A7qMc .dropdown-item:focus {
  background: #1a449a !important;
  color: white !important;
}
.cid-uBEP6A7qMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBEP6A7qMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBEP6A7qMc .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uBEP6A7qMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBEP6A7qMc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBEP6A7qMc .dropdown-menu,
.cid-uBEP6A7qMc .navbar.opened {
  background: #1a449a !important;
}
.cid-uBEP6A7qMc .nav-item:focus,
.cid-uBEP6A7qMc .nav-link:focus {
  outline: none;
}
.cid-uBEP6A7qMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBEP6A7qMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBEP6A7qMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBEP6A7qMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBEP6A7qMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBEP6A7qMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBEP6A7qMc .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 68, 154, 0);
}
.cid-uBEP6A7qMc .navbar.opened {
  transition: all 0.3s;
}
.cid-uBEP6A7qMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBEP6A7qMc .navbar .navbar-logo img {
  width: auto;
}
.cid-uBEP6A7qMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBEP6A7qMc .navbar.collapsed {
  justify-content: center;
}
.cid-uBEP6A7qMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBEP6A7qMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBEP6A7qMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uBEP6A7qMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBEP6A7qMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBEP6A7qMc .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-uBEP6A7qMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBEP6A7qMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBEP6A7qMc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBEP6A7qMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBEP6A7qMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBEP6A7qMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBEP6A7qMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBEP6A7qMc .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-uBEP6A7qMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBEP6A7qMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBEP6A7qMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBEP6A7qMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBEP6A7qMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBEP6A7qMc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBEP6A7qMc .navbar.navbar-short {
  min-height: 80px;
}
.cid-uBEP6A7qMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBEP6A7qMc .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uBEP6A7qMc .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-uBEP6A7qMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBEP6A7qMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBEP6A7qMc .dropdown-item.active,
.cid-uBEP6A7qMc .dropdown-item:active {
  background-color: transparent;
}
.cid-uBEP6A7qMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBEP6A7qMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBEP6A7qMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBEP6A7qMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a449a;
}
.cid-uBEP6A7qMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBEP6A7qMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBEP6A7qMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBEP6A7qMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBEP6A7qMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBEP6A7qMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1a449a;
}
.cid-uBEP6A7qMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBEP6A7qMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBEP6A7qMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBEP6A7qMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBEP6A7qMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBEP6A7qMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBEP6A7qMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBEP6A7qMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBEP6A7qMc .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBEP6A7qMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBEP6A7qMc .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-uBEP6A7qMc .navbar {
    height: 70px;
  }
  .cid-uBEP6A7qMc .navbar.opened {
    height: auto;
  }
  .cid-uBEP6A7qMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBEP6BooxM {
  padding-top: 4rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
  margin-bottom: 2px;
}
.cid-uBEP6BooxM .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uBEP6BooxM .mbr-section-title {
  color: #000000;
  text-align: left;
  margin-bottom: 15px;
}
.cid-uBEP6BooxM .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uBEP6BooxM .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uBEP6BooxM .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uBEP6BooxM .mbr-section-title DIV {
  text-align: left;
}
.cid-uBEP6CU8y7 {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #f8f8f8;
}
.cid-uBEP6CU8y7 .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: #1a449a;
}
.cid-uBEP6CU8y7 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBEP6CU8y7 .svg-top {
    width: 1000px;
  }
}
.cid-uBEP6CU8y7 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBEP6CU8y7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uBEP6CU8y7 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uBEP6CU8y7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBEP6CU8y7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBEP6DIKrX {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #1a449a;
}
.cid-uBEP6DIKrX svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uBEP6DIKrX svg .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBEP6DIKrX svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uBEP6DIKrX .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBEP6DIKrX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBEP6DIKrX .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uBEP6DIKrX .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uBEP6DIKrX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uBEP6DIKrX .copyright {
  color: #ffffff;
}
.cid-uBEP6DIKrX .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uBFqeMW7A6 {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-color: #1a449a;
  overflow: hidden;
}
.cid-uBFqeMW7A6 .row {
  flex-direction: row-reverse;
}
.cid-uBFqeMW7A6 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-uBFqeMW7A6 svg path {
  fill: #ffeda8;
}
@media (max-width: 992px) {
  .cid-uBFqeMW7A6 svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uBFqeMW7A6 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-uBFqeMW7A6 .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-uBFqeMW7A6 .col-12 {
    padding: 0 2rem;
  }
  .cid-uBFqeMW7A6 .row {
    margin: 0 -2rem;
  }
}
.cid-uBFqeMW7A6 .mbr-text,
.cid-uBFqeMW7A6 .mbr-section-btn {
  color: #ffffff;
}
.cid-uBFqeOpgq2 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uBFqeOpgq2 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uBFqeOpgq2 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.cid-uBFqeOpgq2 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uBFqeOpgq2 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBFqeOpgq2 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBFqeOpgq2 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBFqeOpgq2 .svg-top {
    width: 1000px;
  }
}
.cid-uBFqeOpgq2 .mbr-text {
  color: #000000;
}
.cid-uBFqeOpgq2 .mbr-section-title {
  text-align: center;
}
.cid-uBFqePgDqB {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uBFqePgDqB .mbr-section-title {
  color: #1a449a;
}
.cid-uBFqePgDqB .mbr-text {
  color: #000000;
}
.cid-uBFqePgDqB .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBFqePgDqB .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBFqePgDqB .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBFqePgDqB .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFqePgDqB .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFqeQlwWT .navbar-dropdown {
  position: relative !important;
}
.cid-uBFqeQlwWT .navbar-dropdown {
  position: absolute !important;
}
.cid-uBFqeQlwWT .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uBFqeQlwWT .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uBFqeQlwWT .nav-link:hover:before {
  width: 100%;
}
.cid-uBFqeQlwWT .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uBFqeQlwWT .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uBFqeQlwWT .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-uBFqeQlwWT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBFqeQlwWT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBFqeQlwWT .dropdown-item:hover,
.cid-uBFqeQlwWT .dropdown-item:focus {
  background: #1a449a !important;
  color: white !important;
}
.cid-uBFqeQlwWT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBFqeQlwWT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBFqeQlwWT .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uBFqeQlwWT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBFqeQlwWT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBFqeQlwWT .dropdown-menu,
.cid-uBFqeQlwWT .navbar.opened {
  background: #1a449a !important;
}
.cid-uBFqeQlwWT .nav-item:focus,
.cid-uBFqeQlwWT .nav-link:focus {
  outline: none;
}
.cid-uBFqeQlwWT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBFqeQlwWT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBFqeQlwWT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBFqeQlwWT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBFqeQlwWT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBFqeQlwWT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBFqeQlwWT .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 68, 154, 0);
}
.cid-uBFqeQlwWT .navbar.opened {
  transition: all 0.3s;
}
.cid-uBFqeQlwWT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBFqeQlwWT .navbar .navbar-logo img {
  width: auto;
}
.cid-uBFqeQlwWT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBFqeQlwWT .navbar.collapsed {
  justify-content: center;
}
.cid-uBFqeQlwWT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBFqeQlwWT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBFqeQlwWT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uBFqeQlwWT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBFqeQlwWT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBFqeQlwWT .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-uBFqeQlwWT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBFqeQlwWT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBFqeQlwWT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBFqeQlwWT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBFqeQlwWT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBFqeQlwWT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBFqeQlwWT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBFqeQlwWT .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-uBFqeQlwWT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBFqeQlwWT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBFqeQlwWT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBFqeQlwWT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBFqeQlwWT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBFqeQlwWT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBFqeQlwWT .navbar.navbar-short {
  min-height: 80px;
}
.cid-uBFqeQlwWT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBFqeQlwWT .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uBFqeQlwWT .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-uBFqeQlwWT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBFqeQlwWT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBFqeQlwWT .dropdown-item.active,
.cid-uBFqeQlwWT .dropdown-item:active {
  background-color: transparent;
}
.cid-uBFqeQlwWT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBFqeQlwWT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBFqeQlwWT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBFqeQlwWT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a449a;
}
.cid-uBFqeQlwWT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBFqeQlwWT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBFqeQlwWT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBFqeQlwWT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBFqeQlwWT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBFqeQlwWT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1a449a;
}
.cid-uBFqeQlwWT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBFqeQlwWT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBFqeQlwWT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBFqeQlwWT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBFqeQlwWT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBFqeQlwWT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBFqeQlwWT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBFqeQlwWT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBFqeQlwWT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBFqeQlwWT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBFqeQlwWT .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-uBFqeQlwWT .navbar {
    height: 70px;
  }
  .cid-uBFqeQlwWT .navbar.opened {
    height: auto;
  }
  .cid-uBFqeQlwWT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBFqeRmThn {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #1a449a;
}
.cid-uBFqeRmThn .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uBFqeRmThn .team-card:hover {
  transform: translateY(-10px);
}
.cid-uBFqeRmThn .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-uBFqeRmThn .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-uBFqeRmThn .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-uBFqeRmThn .image-wrap:hover .read,
.cid-uBFqeRmThn .image-wrap:focus-within .read,
.cid-uBFqeRmThn .image-wrap:hover .img-svg,
.cid-uBFqeRmThn .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-uBFqeRmThn .image-wrap:hover .more,
.cid-uBFqeRmThn .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-uBFqeRmThn .image-wrap .read,
  .cid-uBFqeRmThn .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-uBFqeRmThn .image-wrap .more {
    transform: scale(1);
  }
}
.cid-uBFqeRmThn .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-uBFqeRmThn .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #1a449a;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-uBFqeRmThn .img-svg path {
  fill: #1a449a;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-uBFqeRmThn .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: #1a449a;
}
.cid-uBFqeRmThn .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFqeRmThn .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.cid-uBFqeRmThn h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-uBFqeRmThn h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-uBFqeRmThn .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uBFqeRmThn .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uBFqeRmThn .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uBFqeRmThn .card-title,
.cid-uBFqeRmThn .social-row {
  color: #1a449a;
}
.cid-uBFqeRmThn .mbr-role,
.cid-uBFqeRmThn .social-row {
  color: #ffffff;
}
.cid-uBFqeRmThn .card-text,
.cid-uBFqeRmThn .mbr-section-btn,
.cid-uBFqeRmThn .social-row {
  color: #1a449a;
}
.cid-uBFqeRmThn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uBFqeRmThn .card-title,
.cid-uBFqeRmThn .content-wrap {
  color: #ffffff;
}
.cid-uBFqeT6pSL {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uBFqeT6pSL .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: #1a449a;
}
.cid-uBFqeT6pSL .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFqeT6pSL .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFqeT6pSL .mbr-section-title {
  color: #000000;
}
@media (min-width: 1400px) {
  .cid-uBFqeT6pSL .col-12 {
    padding: 0 2rem;
  }
  .cid-uBFqeT6pSL .row {
    margin: 0 -2rem;
  }
}
.cid-uBFqeT6pSL .mbr-text,
.cid-uBFqeT6pSL .mbr-section-btn {
  color: #000000;
}
.cid-uBFqeU7mc3 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #1a449a;
}
.cid-uBFqeU7mc3 .mbr-section-title {
  color: #ffffff;
}
.cid-uBFqeU7mc3 .mbr-text {
  color: #ffffff;
}
.cid-uBFqeU7mc3 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBFqeU7mc3 .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: #1a449a;
}
.cid-uBFqeU7mc3 .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFqeU7mc3 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFqeVjbwO {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #f8f8f8;
}
.cid-uBFqeVjbwO .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uBFqeVjbwO .team-card:hover {
  transform: translateY(-10px);
}
.cid-uBFqeVjbwO .image-wrap {
  height: 350px;
  padding-bottom: 1rem;
}
.cid-uBFqeVjbwO .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-uBFqeVjbwO .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: #1a449a;
}
.cid-uBFqeVjbwO .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFqeVjbwO .svg-top {
    width: 1000px;
  }
}
.cid-uBFqeVjbwO .mbr-section-subtitle {
  color: #1a449a;
  text-align: center;
}
.cid-uBFqeVjbwO .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uBFqeVjbwO .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uBFqeVjbwO .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uBFqeVjbwO .social-row {
  text-align: center;
}
.cid-uBFqeVjbwO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #1a449a;
  transition: all 0.3s;
}
.cid-uBFqeVjbwO .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #1a449a;
  font-size: 1.5rem;
}
.cid-uBFqeVjbwO .social-row .soc-item:hover {
  background-color: #1a449a;
}
.cid-uBFqeVjbwO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uBFqeVjbwO .card-title,
.cid-uBFqeVjbwO .social-row {
  color: #000000;
  text-align: center;
}
.cid-uBFqeVjbwO .mbr-role,
.cid-uBFqeVjbwO .social-row {
  color: #1a449a;
  text-align: center;
}
.cid-uBFqeVjbwO .card-text,
.cid-uBFqeVjbwO .mbr-section-btn,
.cid-uBFqeVjbwO .social-row {
  color: #1a449a;
  text-align: center;
}
.cid-uBFqeVjbwO .mbr-section-title {
  color: #1a449a;
  text-align: center;
}
.cid-uBFqeXmltE {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #1a449a;
}
.cid-uBFqeXmltE .mbr-section-title {
  color: #ffffff;
}
.cid-uBFqeXmltE .mbr-text {
  color: #ffffff;
}
.cid-uBFqeXmltE .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBFqeXmltE .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: #1a449a;
}
.cid-uBFqeXmltE .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFqeXmltE .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFqeYkYvc {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBFqeYkYvc .image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uBFqeYkYvc .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uBFqeYkYvc .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: #1a449a;
}
.cid-uBFqeYkYvc .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBFqeYkYvc .svg-top {
    width: 1000px;
  }
}
.cid-uBFqeYkYvc .mbr-text {
  color: #000000;
}
.cid-uBFqeYkYvc .mbr-section-title {
  color: #000000;
}
.cid-uBFqeYkYvc .name {
  color: #ffffff;
}
.cid-uBFqeYkYvc .position {
  color: #ffffff;
}
.cid-uBFqeZpRfr {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #1a449a;
}
.cid-uBFqeZpRfr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBFqeZpRfr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBFqeZpRfr .container {
    padding: 0 20px;
  }
}
.cid-uBFqeZpRfr .row {
  margin: 0;
}
.cid-uBFqeZpRfr .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBFqeZpRfr .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBFqeZpRfr .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uBFqeZpRfr .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uBFqeZpRfr .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uBFqeZpRfr .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uBFqeZpRfr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uBFqf0pGZt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
  margin-bottom: 2px;
}
.cid-uBFqf0pGZt .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uBFqf0pGZt .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uBFqf0pGZt .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uBFqf0pGZt .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uBFqf0pGZt .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uBFqf1G9DJ {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #1a449a;
}
.cid-uBFqf1G9DJ .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uBFqf1G9DJ .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBFqf1G9DJ .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBFqf1G9DJ .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFqf1G9DJ .svg-top {
    width: 1000px;
  }
}
.cid-uBFqf1G9DJ .card-header {
  border-bottom: 2px solid #1a449a;
  margin-bottom: 0px!important;
}
.cid-uBFqf1G9DJ .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uBFqf1G9DJ span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-uBFqf1G9DJ .collapsed span {
  transform: rotate(0deg);
}
.cid-uBFqf1G9DJ .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uBFqf1G9DJ .panel-group {
  width: 100%;
}
.cid-uBFqf1G9DJ .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-uBFqf1G9DJ .card {
  border-radius: 0px;
}
.cid-uBFqf1G9DJ .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-uBFqf1G9DJ .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uBFqf1G9DJ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uBFqf1G9DJ .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-uBFqf1G9DJ .panel-text {
  color: #1a449a;
}
.cid-uBFqf1G9DJ .header-text,
.cid-uBFqf1G9DJ .sign {
  color: #263d5a;
}
.cid-uBFqf1G9DJ .mbr-section-title {
  color: #ffffff;
}
.cid-uBFqf1G9DJ .header-text,
.cid-uBFqf1G9DJ .sign,
.cid-uBFqf1G9DJ .card-header {
  color: #ffffff;
}
.cid-uBFqf1G9DJ .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uBFqf39RFe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
  margin-bottom: 2px;
}
.cid-uBFqf39RFe .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uBFqf39RFe .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uBFqf39RFe .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uBFqf39RFe .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uBFqf39RFe .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uBFqf3Ymyu {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-uBFqf3Ymyu {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-uBFqf3Ymyu {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-uBFqf3Ymyu .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uBFqf3Ymyu .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-uBFqf3Ymyu .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-uBFqf3Ymyu .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uBFqf3Ymyu .text {
    min-width: 615px;
    transform: translate(-25%, 4rem);
  }
}
.cid-uBFqf3Ymyu .text-wrapper {
  background: #1a449a;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-uBFqf3Ymyu .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-uBFqf3Ymyu .mbr-text {
  font-weight: 300;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uBFqf3Ymyu .display-1 {
    font-size: 65px;
  }
  .cid-uBFqf3Ymyu .display-5 {
    font-size: 29px;
  }
}
.cid-uBFqf3Ymyu .mbr-section-btn {
  background: #1a449a;
  margin-left: 0;
  margin-right: 0;
}
.cid-uBFqf3Ymyu .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-uBFqf3Ymyu .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-uBFqf3Ymyu .mbr-section-title {
  color: #ffffff;
}
.cid-uBFqf4VQSE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uBFqf4VQSE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBFqf4VQSE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBFqf4VQSE .content-wrapper {
  padding: 80px 90px;
  background-color: #1a449a;
  display: flex;
}
@media (max-width: 1199px) {
  .cid-uBFqf4VQSE .content-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uBFqf4VQSE .content-wrapper {
    padding: 32px 16px;
  }
}
.cid-uBFqf4VQSE .content-wrapper .content-wrap {
  width: 45%;
  padding-right: 48px;
}
@media (max-width: 1199px) {
  .cid-uBFqf4VQSE .content-wrapper .content-wrap {
    margin-bottom: 32px;
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uBFqf4VQSE .content-wrapper .content-wrap {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-uBFqf4VQSE .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-uBFqf4VQSE .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-uBFqf4VQSE .content-wrapper .content-wrap .text-wrapper .mbr-section-title span {
  padding: 0 10px;
  border-radius: 8rem;
  background-color: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFqf4VQSE .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uBFqf4VQSE .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uBFqf4VQSE .content-wrapper .panel-group {
  width: 55%;
}
@media (max-width: 1199px) {
  .cid-uBFqf4VQSE .content-wrapper .panel-group {
    width: 100%;
  }
}
.cid-uBFqf4VQSE .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 16px;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #f7fff7;
}
@media (max-width: 992px) {
  .cid-uBFqf4VQSE .content-wrapper .panel-group .card {
    padding: 16px;
  }
}
.cid-uBFqf4VQSE .content-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uBFqf4VQSE .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uBFqf4VQSE .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBFqf4VQSE .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uBFqf4VQSE .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.cid-uBFqf4VQSE .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #050f0f;
}
.cid-uBFqf4VQSE .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uBFqf4VQSE .content-wrapper .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uBFqf4VQSE .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 16px;
  }
}
.cid-uBFqf4VQSE .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uBFqf4VQSE .mbr-section-title {
  color: #050f0f;
}
.cid-uBFqf4VQSE .mbr-text {
  color: #ffffff;
}
.cid-uBFqf4VQSE .panel-title-edit {
  color: #050f0f;
}
.cid-uBFqf4VQSE .panel-text {
  color: #050f0f;
}
.cid-uBFqf4VQSE .mbr-section-title,
.cid-uBFqf4VQSE .icon-wrapper {
  color: #ffffff;
}
.cid-uBFqf4VQSE .panel-title-edit,
.cid-uBFqf4VQSE .icon-wrapper {
  color: #000000;
}
.cid-uBFqf65SkA {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #f8f8f8;
}
.cid-uBFqf65SkA .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: #1a449a;
}
.cid-uBFqf65SkA .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFqf65SkA .svg-top {
    width: 1000px;
  }
}
.cid-uBFqf65SkA .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBFqf65SkA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uBFqf65SkA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uBFqf65SkA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBFqf65SkA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBFqf76OuB {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #1a449a;
}
.cid-uBFqf76OuB svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uBFqf76OuB svg .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFqf76OuB svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uBFqf76OuB .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBFqf76OuB .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBFqf76OuB .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uBFqf76OuB .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uBFqf76OuB div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uBFqf76OuB .copyright {
  color: #ffffff;
}
.cid-uBFqf76OuB .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uBFvwylw8j {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-color: #1a449a;
  overflow: hidden;
}
.cid-uBFvwylw8j .row {
  flex-direction: row-reverse;
}
.cid-uBFvwylw8j 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-uBFvwylw8j svg path {
  fill: #ffeda8;
}
@media (max-width: 992px) {
  .cid-uBFvwylw8j svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uBFvwylw8j 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-uBFvwylw8j .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-uBFvwylw8j .col-12 {
    padding: 0 2rem;
  }
  .cid-uBFvwylw8j .row {
    margin: 0 -2rem;
  }
}
.cid-uBFvwylw8j .mbr-text,
.cid-uBFvwylw8j .mbr-section-btn {
  color: #ffffff;
}
.cid-uBFvwzU8W4 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uBFvwzU8W4 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uBFvwzU8W4 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.cid-uBFvwzU8W4 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uBFvwzU8W4 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBFvwzU8W4 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBFvwzU8W4 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBFvwzU8W4 .svg-top {
    width: 1000px;
  }
}
.cid-uBFvwzU8W4 .mbr-text {
  color: #000000;
}
.cid-uBFvwzU8W4 .mbr-section-title {
  text-align: center;
}
.cid-uBFvwAwQuv {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uBFvwAwQuv .mbr-section-title {
  color: #1a449a;
}
.cid-uBFvwAwQuv .mbr-text {
  color: #000000;
}
.cid-uBFvwAwQuv .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBFvwAwQuv .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBFvwAwQuv .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBFvwAwQuv .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFvwAwQuv .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFvwBpSYj .navbar-dropdown {
  position: relative !important;
}
.cid-uBFvwBpSYj .navbar-dropdown {
  position: absolute !important;
}
.cid-uBFvwBpSYj .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uBFvwBpSYj .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uBFvwBpSYj .nav-link:hover:before {
  width: 100%;
}
.cid-uBFvwBpSYj .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uBFvwBpSYj .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uBFvwBpSYj .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-uBFvwBpSYj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBFvwBpSYj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBFvwBpSYj .dropdown-item:hover,
.cid-uBFvwBpSYj .dropdown-item:focus {
  background: #1a449a !important;
  color: white !important;
}
.cid-uBFvwBpSYj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBFvwBpSYj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBFvwBpSYj .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uBFvwBpSYj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBFvwBpSYj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBFvwBpSYj .dropdown-menu,
.cid-uBFvwBpSYj .navbar.opened {
  background: #1a449a !important;
}
.cid-uBFvwBpSYj .nav-item:focus,
.cid-uBFvwBpSYj .nav-link:focus {
  outline: none;
}
.cid-uBFvwBpSYj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBFvwBpSYj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBFvwBpSYj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBFvwBpSYj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBFvwBpSYj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBFvwBpSYj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBFvwBpSYj .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 68, 154, 0);
}
.cid-uBFvwBpSYj .navbar.opened {
  transition: all 0.3s;
}
.cid-uBFvwBpSYj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBFvwBpSYj .navbar .navbar-logo img {
  width: auto;
}
.cid-uBFvwBpSYj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBFvwBpSYj .navbar.collapsed {
  justify-content: center;
}
.cid-uBFvwBpSYj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBFvwBpSYj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBFvwBpSYj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uBFvwBpSYj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBFvwBpSYj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBFvwBpSYj .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-uBFvwBpSYj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBFvwBpSYj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBFvwBpSYj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBFvwBpSYj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBFvwBpSYj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBFvwBpSYj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBFvwBpSYj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBFvwBpSYj .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-uBFvwBpSYj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBFvwBpSYj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBFvwBpSYj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBFvwBpSYj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBFvwBpSYj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBFvwBpSYj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBFvwBpSYj .navbar.navbar-short {
  min-height: 80px;
}
.cid-uBFvwBpSYj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBFvwBpSYj .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uBFvwBpSYj .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-uBFvwBpSYj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBFvwBpSYj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBFvwBpSYj .dropdown-item.active,
.cid-uBFvwBpSYj .dropdown-item:active {
  background-color: transparent;
}
.cid-uBFvwBpSYj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBFvwBpSYj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBFvwBpSYj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBFvwBpSYj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a449a;
}
.cid-uBFvwBpSYj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBFvwBpSYj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBFvwBpSYj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBFvwBpSYj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBFvwBpSYj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBFvwBpSYj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1a449a;
}
.cid-uBFvwBpSYj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBFvwBpSYj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBFvwBpSYj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBFvwBpSYj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBFvwBpSYj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBFvwBpSYj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBFvwBpSYj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBFvwBpSYj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBFvwBpSYj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBFvwBpSYj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBFvwBpSYj .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-uBFvwBpSYj .navbar {
    height: 70px;
  }
  .cid-uBFvwBpSYj .navbar.opened {
    height: auto;
  }
  .cid-uBFvwBpSYj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBFvwCxkzr {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #1a449a;
}
.cid-uBFvwCxkzr .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uBFvwCxkzr .team-card:hover {
  transform: translateY(-10px);
}
.cid-uBFvwCxkzr .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-uBFvwCxkzr .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-uBFvwCxkzr .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-uBFvwCxkzr .image-wrap:hover .read,
.cid-uBFvwCxkzr .image-wrap:focus-within .read,
.cid-uBFvwCxkzr .image-wrap:hover .img-svg,
.cid-uBFvwCxkzr .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-uBFvwCxkzr .image-wrap:hover .more,
.cid-uBFvwCxkzr .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-uBFvwCxkzr .image-wrap .read,
  .cid-uBFvwCxkzr .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-uBFvwCxkzr .image-wrap .more {
    transform: scale(1);
  }
}
.cid-uBFvwCxkzr .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-uBFvwCxkzr .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #1a449a;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-uBFvwCxkzr .img-svg path {
  fill: #1a449a;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-uBFvwCxkzr .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: #1a449a;
}
.cid-uBFvwCxkzr .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFvwCxkzr .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.cid-uBFvwCxkzr h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-uBFvwCxkzr h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-uBFvwCxkzr .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uBFvwCxkzr .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uBFvwCxkzr .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uBFvwCxkzr .card-title,
.cid-uBFvwCxkzr .social-row {
  color: #1a449a;
}
.cid-uBFvwCxkzr .mbr-role,
.cid-uBFvwCxkzr .social-row {
  color: #ffffff;
}
.cid-uBFvwCxkzr .card-text,
.cid-uBFvwCxkzr .mbr-section-btn,
.cid-uBFvwCxkzr .social-row {
  color: #1a449a;
}
.cid-uBFvwCxkzr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uBFvwCxkzr .card-title,
.cid-uBFvwCxkzr .content-wrap {
  color: #ffffff;
}
.cid-uBFvwEU9BI {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uBFvwEU9BI .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: #1a449a;
}
.cid-uBFvwEU9BI .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFvwEU9BI .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFvwEU9BI .mbr-section-title {
  color: #000000;
}
@media (min-width: 1400px) {
  .cid-uBFvwEU9BI .col-12 {
    padding: 0 2rem;
  }
  .cid-uBFvwEU9BI .row {
    margin: 0 -2rem;
  }
}
.cid-uBFvwEU9BI .mbr-text,
.cid-uBFvwEU9BI .mbr-section-btn {
  color: #000000;
}
.cid-uBFvwG0dq5 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #1a449a;
}
.cid-uBFvwG0dq5 .mbr-section-title {
  color: #ffffff;
}
.cid-uBFvwG0dq5 .mbr-text {
  color: #ffffff;
}
.cid-uBFvwG0dq5 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBFvwG0dq5 .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: #1a449a;
}
.cid-uBFvwG0dq5 .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFvwG0dq5 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFvwGNLl9 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #f8f8f8;
}
.cid-uBFvwGNLl9 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uBFvwGNLl9 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uBFvwGNLl9 .image-wrap {
  height: 350px;
  padding-bottom: 1rem;
}
.cid-uBFvwGNLl9 .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-uBFvwGNLl9 .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: #1a449a;
}
.cid-uBFvwGNLl9 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFvwGNLl9 .svg-top {
    width: 1000px;
  }
}
.cid-uBFvwGNLl9 .mbr-section-subtitle {
  color: #1a449a;
  text-align: center;
}
.cid-uBFvwGNLl9 .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uBFvwGNLl9 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uBFvwGNLl9 .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uBFvwGNLl9 .social-row {
  text-align: center;
}
.cid-uBFvwGNLl9 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #1a449a;
  transition: all 0.3s;
}
.cid-uBFvwGNLl9 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #1a449a;
  font-size: 1.5rem;
}
.cid-uBFvwGNLl9 .social-row .soc-item:hover {
  background-color: #1a449a;
}
.cid-uBFvwGNLl9 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uBFvwGNLl9 .card-title,
.cid-uBFvwGNLl9 .social-row {
  color: #000000;
  text-align: center;
}
.cid-uBFvwGNLl9 .mbr-role,
.cid-uBFvwGNLl9 .social-row {
  color: #1a449a;
  text-align: center;
}
.cid-uBFvwGNLl9 .card-text,
.cid-uBFvwGNLl9 .mbr-section-btn,
.cid-uBFvwGNLl9 .social-row {
  color: #1a449a;
  text-align: center;
}
.cid-uBFvwGNLl9 .mbr-section-title {
  color: #1a449a;
  text-align: center;
}
.cid-uBFvwJNube {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #1a449a;
}
.cid-uBFvwJNube .mbr-section-title {
  color: #ffffff;
}
.cid-uBFvwJNube .mbr-text {
  color: #ffffff;
}
.cid-uBFvwJNube .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBFvwJNube .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: #1a449a;
}
.cid-uBFvwJNube .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFvwJNube .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFvwKRYGd {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBFvwKRYGd .image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uBFvwKRYGd .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uBFvwKRYGd .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: #1a449a;
}
.cid-uBFvwKRYGd .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBFvwKRYGd .svg-top {
    width: 1000px;
  }
}
.cid-uBFvwKRYGd .mbr-text {
  color: #000000;
}
.cid-uBFvwKRYGd .mbr-section-title {
  color: #000000;
}
.cid-uBFvwKRYGd .name {
  color: #ffffff;
}
.cid-uBFvwKRYGd .position {
  color: #ffffff;
}
.cid-uBFvwMmo29 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #1a449a;
}
.cid-uBFvwMmo29 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBFvwMmo29 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBFvwMmo29 .container {
    padding: 0 20px;
  }
}
.cid-uBFvwMmo29 .row {
  margin: 0;
}
.cid-uBFvwMmo29 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBFvwMmo29 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBFvwMmo29 .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uBFvwMmo29 .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uBFvwMmo29 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uBFvwMmo29 .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uBFvwMmo29 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uBFvwNJep6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
  margin-bottom: 2px;
}
.cid-uBFvwNJep6 .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uBFvwNJep6 .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uBFvwNJep6 .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uBFvwNJep6 .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uBFvwNJep6 .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uBFvwOUHQt {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #1a449a;
}
.cid-uBFvwOUHQt .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uBFvwOUHQt .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBFvwOUHQt .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBFvwOUHQt .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFvwOUHQt .svg-top {
    width: 1000px;
  }
}
.cid-uBFvwOUHQt .card-header {
  border-bottom: 2px solid #1a449a;
  margin-bottom: 0px!important;
}
.cid-uBFvwOUHQt .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uBFvwOUHQt span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-uBFvwOUHQt .collapsed span {
  transform: rotate(0deg);
}
.cid-uBFvwOUHQt .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uBFvwOUHQt .panel-group {
  width: 100%;
}
.cid-uBFvwOUHQt .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-uBFvwOUHQt .card {
  border-radius: 0px;
}
.cid-uBFvwOUHQt .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-uBFvwOUHQt .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uBFvwOUHQt .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uBFvwOUHQt .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-uBFvwOUHQt .panel-text {
  color: #1a449a;
}
.cid-uBFvwOUHQt .header-text,
.cid-uBFvwOUHQt .sign {
  color: #263d5a;
}
.cid-uBFvwOUHQt .mbr-section-title {
  color: #ffffff;
}
.cid-uBFvwOUHQt .header-text,
.cid-uBFvwOUHQt .sign,
.cid-uBFvwOUHQt .card-header {
  color: #ffffff;
}
.cid-uBFvwOUHQt .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uBFvwQP77z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
  margin-bottom: 2px;
}
.cid-uBFvwQP77z .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uBFvwQP77z .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uBFvwQP77z .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uBFvwQP77z .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uBFvwQP77z .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uBFvwSapYm {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-uBFvwSapYm {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-uBFvwSapYm {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-uBFvwSapYm .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uBFvwSapYm .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-uBFvwSapYm .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-uBFvwSapYm .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uBFvwSapYm .text {
    min-width: 615px;
    transform: translate(-25%, 4rem);
  }
}
.cid-uBFvwSapYm .text-wrapper {
  background: #1a449a;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-uBFvwSapYm .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-uBFvwSapYm .mbr-text {
  font-weight: 300;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uBFvwSapYm .display-1 {
    font-size: 65px;
  }
  .cid-uBFvwSapYm .display-5 {
    font-size: 29px;
  }
}
.cid-uBFvwSapYm .mbr-section-btn {
  background: #1a449a;
  margin-left: 0;
  margin-right: 0;
}
.cid-uBFvwSapYm .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-uBFvwSapYm .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-uBFvwSapYm .mbr-section-title {
  color: #ffffff;
}
.cid-uBFvwTPXSl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uBFvwTPXSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBFvwTPXSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBFvwTPXSl .content-wrapper {
  padding: 80px 90px;
  background-color: #1a449a;
  display: flex;
}
@media (max-width: 1199px) {
  .cid-uBFvwTPXSl .content-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uBFvwTPXSl .content-wrapper {
    padding: 32px 16px;
  }
}
.cid-uBFvwTPXSl .content-wrapper .content-wrap {
  width: 45%;
  padding-right: 48px;
}
@media (max-width: 1199px) {
  .cid-uBFvwTPXSl .content-wrapper .content-wrap {
    margin-bottom: 32px;
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uBFvwTPXSl .content-wrapper .content-wrap {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-uBFvwTPXSl .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-uBFvwTPXSl .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-uBFvwTPXSl .content-wrapper .content-wrap .text-wrapper .mbr-section-title span {
  padding: 0 10px;
  border-radius: 8rem;
  background-color: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFvwTPXSl .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uBFvwTPXSl .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uBFvwTPXSl .content-wrapper .panel-group {
  width: 55%;
}
@media (max-width: 1199px) {
  .cid-uBFvwTPXSl .content-wrapper .panel-group {
    width: 100%;
  }
}
.cid-uBFvwTPXSl .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 16px;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #f7fff7;
}
@media (max-width: 992px) {
  .cid-uBFvwTPXSl .content-wrapper .panel-group .card {
    padding: 16px;
  }
}
.cid-uBFvwTPXSl .content-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uBFvwTPXSl .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uBFvwTPXSl .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBFvwTPXSl .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uBFvwTPXSl .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.cid-uBFvwTPXSl .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #050f0f;
}
.cid-uBFvwTPXSl .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uBFvwTPXSl .content-wrapper .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uBFvwTPXSl .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 16px;
  }
}
.cid-uBFvwTPXSl .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uBFvwTPXSl .mbr-section-title {
  color: #050f0f;
}
.cid-uBFvwTPXSl .mbr-text {
  color: #ffffff;
}
.cid-uBFvwTPXSl .panel-title-edit {
  color: #050f0f;
}
.cid-uBFvwTPXSl .panel-text {
  color: #050f0f;
}
.cid-uBFvwTPXSl .mbr-section-title,
.cid-uBFvwTPXSl .icon-wrapper {
  color: #ffffff;
}
.cid-uBFvwTPXSl .panel-title-edit,
.cid-uBFvwTPXSl .icon-wrapper {
  color: #000000;
}
.cid-uBFvwVHu0b {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #f8f8f8;
}
.cid-uBFvwVHu0b .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: #1a449a;
}
.cid-uBFvwVHu0b .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFvwVHu0b .svg-top {
    width: 1000px;
  }
}
.cid-uBFvwVHu0b .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBFvwVHu0b .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uBFvwVHu0b .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uBFvwVHu0b .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBFvwVHu0b .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBFvwXDNQk {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #1a449a;
}
.cid-uBFvwXDNQk svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uBFvwXDNQk svg .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFvwXDNQk svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uBFvwXDNQk .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBFvwXDNQk .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBFvwXDNQk .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uBFvwXDNQk .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uBFvwXDNQk div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uBFvwXDNQk .copyright {
  color: #ffffff;
}
.cid-uBFvwXDNQk .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uBFEWOyXWs {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-color: #1a449a;
  overflow: hidden;
}
.cid-uBFEWOyXWs .row {
  flex-direction: row-reverse;
}
.cid-uBFEWOyXWs 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-uBFEWOyXWs svg path {
  fill: #ffeda8;
}
@media (max-width: 992px) {
  .cid-uBFEWOyXWs svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uBFEWOyXWs 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-uBFEWOyXWs .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-uBFEWOyXWs .col-12 {
    padding: 0 2rem;
  }
  .cid-uBFEWOyXWs .row {
    margin: 0 -2rem;
  }
}
.cid-uBFEWOyXWs .mbr-text,
.cid-uBFEWOyXWs .mbr-section-btn {
  color: #ffffff;
}
.cid-uBFEWPLxc0 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uBFEWPLxc0 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uBFEWPLxc0 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.cid-uBFEWPLxc0 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uBFEWPLxc0 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBFEWPLxc0 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBFEWPLxc0 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBFEWPLxc0 .svg-top {
    width: 1000px;
  }
}
.cid-uBFEWPLxc0 .mbr-text {
  color: #000000;
}
.cid-uBFEWPLxc0 .mbr-section-title {
  text-align: center;
}
.cid-uBFEWQB4N9 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uBFEWQB4N9 .mbr-section-title {
  color: #1a449a;
}
.cid-uBFEWQB4N9 .mbr-text {
  color: #000000;
}
.cid-uBFEWQB4N9 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBFEWQB4N9 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBFEWQB4N9 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBFEWQB4N9 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFEWQB4N9 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFEWRrW4I .navbar-dropdown {
  position: relative !important;
}
.cid-uBFEWRrW4I .navbar-dropdown {
  position: absolute !important;
}
.cid-uBFEWRrW4I .nav-link {
  padding: 0!important;
  position: relative;
}
.cid-uBFEWRrW4I .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
}
.cid-uBFEWRrW4I .nav-link:hover:before {
  width: 100%;
}
.cid-uBFEWRrW4I .container {
  max-width: 1300px;
  display: flex;
  margin: auto;
}
.cid-uBFEWRrW4I .navbar-caption {
  border: 3px solid currentColor;
  padding: 0.5rem;
  font-weight: 900;
}
.cid-uBFEWRrW4I .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-uBFEWRrW4I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBFEWRrW4I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBFEWRrW4I .dropdown-item:hover,
.cid-uBFEWRrW4I .dropdown-item:focus {
  background: #1a449a !important;
  color: white !important;
}
.cid-uBFEWRrW4I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBFEWRrW4I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBFEWRrW4I .nav-dropdown .link {
  padding: 0!important;
  margin: 0.667em 1em !important;
}
.cid-uBFEWRrW4I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBFEWRrW4I .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBFEWRrW4I .dropdown-menu,
.cid-uBFEWRrW4I .navbar.opened {
  background: #1a449a !important;
}
.cid-uBFEWRrW4I .nav-item:focus,
.cid-uBFEWRrW4I .nav-link:focus {
  outline: none;
}
.cid-uBFEWRrW4I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBFEWRrW4I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBFEWRrW4I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBFEWRrW4I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBFEWRrW4I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBFEWRrW4I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBFEWRrW4I .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 68, 154, 0);
}
.cid-uBFEWRrW4I .navbar.opened {
  transition: all 0.3s;
}
.cid-uBFEWRrW4I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBFEWRrW4I .navbar .navbar-logo img {
  width: auto;
}
.cid-uBFEWRrW4I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBFEWRrW4I .navbar.collapsed {
  justify-content: center;
}
.cid-uBFEWRrW4I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBFEWRrW4I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBFEWRrW4I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uBFEWRrW4I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBFEWRrW4I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBFEWRrW4I .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-uBFEWRrW4I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBFEWRrW4I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBFEWRrW4I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBFEWRrW4I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBFEWRrW4I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBFEWRrW4I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBFEWRrW4I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBFEWRrW4I .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-uBFEWRrW4I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBFEWRrW4I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBFEWRrW4I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBFEWRrW4I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBFEWRrW4I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBFEWRrW4I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBFEWRrW4I .navbar.navbar-short {
  min-height: 80px;
}
.cid-uBFEWRrW4I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBFEWRrW4I .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uBFEWRrW4I .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-uBFEWRrW4I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBFEWRrW4I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBFEWRrW4I .dropdown-item.active,
.cid-uBFEWRrW4I .dropdown-item:active {
  background-color: transparent;
}
.cid-uBFEWRrW4I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBFEWRrW4I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBFEWRrW4I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBFEWRrW4I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a449a;
}
.cid-uBFEWRrW4I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBFEWRrW4I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBFEWRrW4I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBFEWRrW4I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBFEWRrW4I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBFEWRrW4I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1a449a;
}
.cid-uBFEWRrW4I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBFEWRrW4I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBFEWRrW4I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBFEWRrW4I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBFEWRrW4I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBFEWRrW4I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBFEWRrW4I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBFEWRrW4I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBFEWRrW4I .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBFEWRrW4I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBFEWRrW4I .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-uBFEWRrW4I .navbar {
    height: 70px;
  }
  .cid-uBFEWRrW4I .navbar.opened {
    height: auto;
  }
  .cid-uBFEWRrW4I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBFEWSpKpW {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #1a449a;
}
.cid-uBFEWSpKpW .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uBFEWSpKpW .team-card:hover {
  transform: translateY(-10px);
}
.cid-uBFEWSpKpW .more {
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-uBFEWSpKpW .image-wrap {
  position: relative;
  height: 350px;
  cursor: pointer;
  padding-bottom: 1rem;
}
.cid-uBFEWSpKpW .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-uBFEWSpKpW .image-wrap:hover .read,
.cid-uBFEWSpKpW .image-wrap:focus-within .read,
.cid-uBFEWSpKpW .image-wrap:hover .img-svg,
.cid-uBFEWSpKpW .image-wrap:focus-within .img-svg {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
}
.cid-uBFEWSpKpW .image-wrap:hover .more,
.cid-uBFEWSpKpW .image-wrap:focus-within .more {
  transform: scale(1);
}
@media (max-width: 767px) {
  .cid-uBFEWSpKpW .image-wrap .read,
  .cid-uBFEWSpKpW .image-wrap .img-svg {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  .cid-uBFEWSpKpW .image-wrap .more {
    transform: scale(1);
  }
}
.cid-uBFEWSpKpW .read {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transition: all 0.3s;
  z-index: 3;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}
.cid-uBFEWSpKpW .img-svg {
  transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  fill: #1a449a;
  left: 50%;
  animation: 1s ease-in-out infinite alternate curs;
}
.cid-uBFEWSpKpW .img-svg path {
  fill: #1a449a;
}
@keyframes curs {
  from {
    transform: translate(-50%, -50%) skew(3deg, 0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) skew(-3deg, 0deg) scale(0.95);
  }
}
.cid-uBFEWSpKpW .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: #1a449a;
}
.cid-uBFEWSpKpW .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFEWSpKpW .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.cid-uBFEWSpKpW h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-uBFEWSpKpW h5:before {
  content: '';
  position: absolute;
  right: -65px;
  top: 50%;
  transform-origin: left;
  height: 2px;
  width: 45px;
  background: currentColor;
}
@media (max-width: 991px) {
  .cid-uBFEWSpKpW .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uBFEWSpKpW .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uBFEWSpKpW .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uBFEWSpKpW .card-title,
.cid-uBFEWSpKpW .social-row {
  color: #1a449a;
}
.cid-uBFEWSpKpW .mbr-role,
.cid-uBFEWSpKpW .social-row {
  color: #ffffff;
}
.cid-uBFEWSpKpW .card-text,
.cid-uBFEWSpKpW .mbr-section-btn,
.cid-uBFEWSpKpW .social-row {
  color: #1a449a;
}
.cid-uBFEWSpKpW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uBFEWSpKpW .card-title,
.cid-uBFEWSpKpW .content-wrap {
  color: #ffffff;
}
.cid-uBFEWTZkm5 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uBFEWTZkm5 .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: #1a449a;
}
.cid-uBFEWTZkm5 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFEWTZkm5 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFEWTZkm5 .mbr-section-title {
  color: #000000;
}
@media (min-width: 1400px) {
  .cid-uBFEWTZkm5 .col-12 {
    padding: 0 2rem;
  }
  .cid-uBFEWTZkm5 .row {
    margin: 0 -2rem;
  }
}
.cid-uBFEWTZkm5 .mbr-text,
.cid-uBFEWTZkm5 .mbr-section-btn {
  color: #000000;
}
.cid-uBFEWUMnBd {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #1a449a;
}
.cid-uBFEWUMnBd .mbr-section-title {
  color: #ffffff;
}
.cid-uBFEWUMnBd .mbr-text {
  color: #ffffff;
}
.cid-uBFEWUMnBd .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBFEWUMnBd .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: #1a449a;
}
.cid-uBFEWUMnBd .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFEWUMnBd .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFEWVBHbR {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #f8f8f8;
}
.cid-uBFEWVBHbR .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uBFEWVBHbR .team-card:hover {
  transform: translateY(-10px);
}
.cid-uBFEWVBHbR .image-wrap {
  height: 350px;
  padding-bottom: 1rem;
}
.cid-uBFEWVBHbR .image-wrap img {
  height: 100%;
  object-fit: cover;
}
.cid-uBFEWVBHbR .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: #1a449a;
}
.cid-uBFEWVBHbR .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFEWVBHbR .svg-top {
    width: 1000px;
  }
}
.cid-uBFEWVBHbR .mbr-section-subtitle {
  color: #1a449a;
  text-align: center;
}
.cid-uBFEWVBHbR .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uBFEWVBHbR .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uBFEWVBHbR .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uBFEWVBHbR .social-row {
  text-align: center;
}
.cid-uBFEWVBHbR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #1a449a;
  transition: all 0.3s;
}
.cid-uBFEWVBHbR .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #1a449a;
  font-size: 1.5rem;
}
.cid-uBFEWVBHbR .social-row .soc-item:hover {
  background-color: #1a449a;
}
.cid-uBFEWVBHbR .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uBFEWVBHbR .card-title,
.cid-uBFEWVBHbR .social-row {
  color: #000000;
  text-align: center;
}
.cid-uBFEWVBHbR .mbr-role,
.cid-uBFEWVBHbR .social-row {
  color: #1a449a;
  text-align: center;
}
.cid-uBFEWVBHbR .card-text,
.cid-uBFEWVBHbR .mbr-section-btn,
.cid-uBFEWVBHbR .social-row {
  color: #1a449a;
  text-align: center;
}
.cid-uBFEWVBHbR .mbr-section-title {
  color: #1a449a;
  text-align: center;
}
.cid-uBFEWX78IQ {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #1a449a;
}
.cid-uBFEWX78IQ .mbr-section-title {
  color: #ffffff;
}
.cid-uBFEWX78IQ .mbr-text {
  color: #ffffff;
}
.cid-uBFEWX78IQ .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uBFEWX78IQ .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: #1a449a;
}
.cid-uBFEWX78IQ .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFEWX78IQ .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uBFEWXTJ7v {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBFEWXTJ7v .image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uBFEWXTJ7v .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uBFEWXTJ7v .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: #1a449a;
}
.cid-uBFEWXTJ7v .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBFEWXTJ7v .svg-top {
    width: 1000px;
  }
}
.cid-uBFEWXTJ7v .mbr-text {
  color: #000000;
}
.cid-uBFEWXTJ7v .mbr-section-title {
  color: #000000;
}
.cid-uBFEWXTJ7v .name {
  color: #ffffff;
}
.cid-uBFEWXTJ7v .position {
  color: #ffffff;
}
.cid-uBFEWZ1tMm {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #1a449a;
}
.cid-uBFEWZ1tMm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBFEWZ1tMm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBFEWZ1tMm .container {
    padding: 0 20px;
  }
}
.cid-uBFEWZ1tMm .row {
  margin: 0;
}
.cid-uBFEWZ1tMm .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBFEWZ1tMm .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBFEWZ1tMm .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uBFEWZ1tMm .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uBFEWZ1tMm .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uBFEWZ1tMm .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uBFEWZ1tMm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uBFEWZUIAl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
  margin-bottom: 2px;
}
.cid-uBFEWZUIAl .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uBFEWZUIAl .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uBFEWZUIAl .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uBFEWZUIAl .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uBFEWZUIAl .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uBFEX0OnAh {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #1a449a;
}
.cid-uBFEX0OnAh .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uBFEX0OnAh .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uBFEX0OnAh .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #1a449a;
}
.cid-uBFEX0OnAh .svg-top .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFEX0OnAh .svg-top {
    width: 1000px;
  }
}
.cid-uBFEX0OnAh .card-header {
  border-bottom: 2px solid #1a449a;
  margin-bottom: 0px!important;
}
.cid-uBFEX0OnAh .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uBFEX0OnAh span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-uBFEX0OnAh .collapsed span {
  transform: rotate(0deg);
}
.cid-uBFEX0OnAh .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uBFEX0OnAh .panel-group {
  width: 100%;
}
.cid-uBFEX0OnAh .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-uBFEX0OnAh .card {
  border-radius: 0px;
}
.cid-uBFEX0OnAh .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-uBFEX0OnAh .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uBFEX0OnAh .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uBFEX0OnAh .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-uBFEX0OnAh .panel-text {
  color: #1a449a;
}
.cid-uBFEX0OnAh .header-text,
.cid-uBFEX0OnAh .sign {
  color: #263d5a;
}
.cid-uBFEX0OnAh .mbr-section-title {
  color: #ffffff;
}
.cid-uBFEX0OnAh .header-text,
.cid-uBFEX0OnAh .sign,
.cid-uBFEX0OnAh .card-header {
  color: #ffffff;
}
.cid-uBFEX0OnAh .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uBFEX1Ywbt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
  margin-bottom: 2px;
}
.cid-uBFEX1Ywbt .mbr-section-subtitle {
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.cid-uBFEX1Ywbt .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
}
.cid-uBFEX1Ywbt .mbr-text {
  text-align: center;
  color: #333333;
}
.cid-uBFEX1Ywbt .container-fluid {
  outline: 2px solid #000 !important;
}
.cid-uBFEX1Ywbt .row {
  padding-top: 76px;
  padding-bottom: 76px;
  justify-content: center;
  display: flex;
}
.cid-uBFEX2T2pJ {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-uBFEX2T2pJ {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-uBFEX2T2pJ {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-uBFEX2T2pJ .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uBFEX2T2pJ .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-uBFEX2T2pJ .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-uBFEX2T2pJ .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uBFEX2T2pJ .text {
    min-width: 615px;
    transform: translate(-25%, 4rem);
  }
}
.cid-uBFEX2T2pJ .text-wrapper {
  background: #1a449a;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-uBFEX2T2pJ .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-uBFEX2T2pJ .mbr-text {
  font-weight: 300;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uBFEX2T2pJ .display-1 {
    font-size: 65px;
  }
  .cid-uBFEX2T2pJ .display-5 {
    font-size: 29px;
  }
}
.cid-uBFEX2T2pJ .mbr-section-btn {
  background: #1a449a;
  margin-left: 0;
  margin-right: 0;
}
.cid-uBFEX2T2pJ .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-uBFEX2T2pJ .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-uBFEX2T2pJ .mbr-section-title {
  color: #ffffff;
}
.cid-uBFEX3LnIN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uBFEX3LnIN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBFEX3LnIN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBFEX3LnIN .content-wrapper {
  padding: 80px 90px;
  background-color: #1a449a;
  display: flex;
}
@media (max-width: 1199px) {
  .cid-uBFEX3LnIN .content-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uBFEX3LnIN .content-wrapper {
    padding: 32px 16px;
  }
}
.cid-uBFEX3LnIN .content-wrapper .content-wrap {
  width: 45%;
  padding-right: 48px;
}
@media (max-width: 1199px) {
  .cid-uBFEX3LnIN .content-wrapper .content-wrap {
    margin-bottom: 32px;
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uBFEX3LnIN .content-wrapper .content-wrap {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-uBFEX3LnIN .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-uBFEX3LnIN .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-uBFEX3LnIN .content-wrapper .content-wrap .text-wrapper .mbr-section-title span {
  padding: 0 10px;
  border-radius: 8rem;
  background-color: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFEX3LnIN .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uBFEX3LnIN .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uBFEX3LnIN .content-wrapper .panel-group {
  width: 55%;
}
@media (max-width: 1199px) {
  .cid-uBFEX3LnIN .content-wrapper .panel-group {
    width: 100%;
  }
}
.cid-uBFEX3LnIN .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 16px;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #f7fff7;
}
@media (max-width: 992px) {
  .cid-uBFEX3LnIN .content-wrapper .panel-group .card {
    padding: 16px;
  }
}
.cid-uBFEX3LnIN .content-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uBFEX3LnIN .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uBFEX3LnIN .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBFEX3LnIN .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uBFEX3LnIN .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.cid-uBFEX3LnIN .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #050f0f;
}
.cid-uBFEX3LnIN .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uBFEX3LnIN .content-wrapper .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-uBFEX3LnIN .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 16px;
  }
}
.cid-uBFEX3LnIN .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uBFEX3LnIN .mbr-section-title {
  color: #050f0f;
}
.cid-uBFEX3LnIN .mbr-text {
  color: #ffffff;
}
.cid-uBFEX3LnIN .panel-title-edit {
  color: #050f0f;
}
.cid-uBFEX3LnIN .panel-text {
  color: #050f0f;
}
.cid-uBFEX3LnIN .mbr-section-title,
.cid-uBFEX3LnIN .icon-wrapper {
  color: #ffffff;
}
.cid-uBFEX3LnIN .panel-title-edit,
.cid-uBFEX3LnIN .icon-wrapper {
  color: #000000;
}
.cid-uBFEX4LnBf {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #f8f8f8;
}
.cid-uBFEX4LnBf .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: #1a449a;
}
.cid-uBFEX4LnBf .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uBFEX4LnBf .svg-top {
    width: 1000px;
  }
}
.cid-uBFEX4LnBf .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBFEX4LnBf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uBFEX4LnBf .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uBFEX4LnBf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBFEX4LnBf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBFEX5Qbpv {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #1a449a;
}
.cid-uBFEX5Qbpv svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uBFEX5Qbpv svg .st0 {
  fill: #1a449a;
}
@media (max-width: 992px) {
  .cid-uBFEX5Qbpv svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uBFEX5Qbpv .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBFEX5Qbpv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBFEX5Qbpv .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uBFEX5Qbpv .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uBFEX5Qbpv div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uBFEX5Qbpv .copyright {
  color: #ffffff;
}
.cid-uBFEX5Qbpv .mbr-section-subtitle {
  color: #ffe161;
}
