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





body {
  font-family: Josefin Sans;
}
.display-1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.25rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.6rem;
}
.display-4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #0196c1 !important;
}
.bg-success {
  background-color: #fff001 !important;
}
.bg-info {
  background-color: #a2d4e3 !important;
}
.bg-warning {
  background-color: #868686 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0196c1 !important;
  border-color: #0196c1 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #015b75 !important;
  border-color: #015b75 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #015b75 !important;
  border-color: #015b75 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #b30000 !important;
  border-color: #b30000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b30000 !important;
  border-color: #b30000 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #a2d4e3 !important;
  border-color: #a2d4e3 !important;
  color: #1f5667 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #1f5667 !important;
  background-color: #67b9d1 !important;
  border-color: #67b9d1 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #1f5667 !important;
  background-color: #67b9d1 !important;
  border-color: #67b9d1 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #fff001 !important;
  border-color: #fff001 !important;
  color: #010100 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #010100 !important;
  background-color: #b3a900 !important;
  border-color: #b3a900 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #010100 !important;
  background-color: #b3a900 !important;
  border-color: #b3a900 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #868686 !important;
  border-color: #868686 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #606060 !important;
  border-color: #606060 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #606060 !important;
  border-color: #606060 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #00475c;
  color: #00475c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #0196c1;
  border-color: #0196c1;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0196c1 !important;
  border-color: #0196c1 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #990000;
  color: #990000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #ff0000;
  border-color: #ff0000;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #54b0cb;
  color: #54b0cb;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #1f5667;
  background-color: #a2d4e3;
  border-color: #a2d4e3;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #1f5667 !important;
  background-color: #a2d4e3 !important;
  border-color: #a2d4e3 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #9a9100;
  color: #9a9100;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #010100;
  background-color: #fff001;
  border-color: #fff001;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #010100 !important;
  background-color: #fff001 !important;
  border-color: #fff001 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #535353;
  color: #535353;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #868686;
  border-color: #868686;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #868686 !important;
  border-color: #868686 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  background-color: #efefef;
  border-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #0196c1 !important;
}
.text-secondary {
  color: #ff0000 !important;
}
.text-success {
  color: #fff001 !important;
}
.text-info {
  color: #a2d4e3 !important;
}
.text-warning {
  color: #868686 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #00475c !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #990000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #9a9100 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #54b0cb !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #535353 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #fff001;
}
.alert-info {
  background-color: #a2d4e3;
}
.alert-warning {
  background-color: #868686;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0196c1;
  border-color: #0196c1;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0196c1;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #43d4fe;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fffccd;
}
.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: #c6c6c6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
#scrollToTop a {
  border: 2px solid #c1c1c1;
}
#scrollToTop a i:before {
  background: #c1c1c1;
}
#scrollToTop a i:after {
  border-top: 2px solid #c1c1c1;
  border-right: 2px solid #c1c1c1;
}
.mbr-arrow a i {
  color: #c1c1c1;
}
.form-control {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #0196c1;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0196c1;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 0;
  background-color: #efefef;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0196c1;
  border-bottom-color: #0196c1;
}
.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: #0196c1 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff0000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230196c1' %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-snsvX4937f {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #0196c1;
}
@media (min-width: 992px) {
  .cid-snsvX4937f .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-snsvX4937f .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-snsvX4937f .mbr-text {
    text-align: center;
  }
}
.cid-snySbvLKoz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-snySbvLKoz .mbr-text {
  line-height: 1.5;
  color: #efefef;
}
.cid-snySbvLKoz .mbr-section-title {
  text-align: left;
  color: #0196c1;
}
.cid-snySbvLKoz img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-snySbvLKoz .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tac3kO621g {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0196c1;
}
.cid-tac3kO621g .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-tac3kO621g .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tac3kO621g .col + .mbr-section-btn .btn,
.cid-tac3kO621g .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-tac3kO621g .col + .mbr-section-btn .btn,
  .cid-tac3kO621g .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-tac3kO621g .dragArea > *:nth-last-child(2).col,
  .cid-tac3kO621g .dragArea > *:nth-last-child(2).col-auto,
  .cid-tac3kO621g .col + .mbr-section-btn,
  .cid-tac3kO621g .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-tac3kO621g .dragArea {
    flex-direction: column;
  }
}
.cid-tac3kO621g .btn-primary {
  border: 1px solid #0196c1 !important;
}
.cid-tac3kO621g .btn-primary:hover {
  border: 1px solid #0196c1 !important;
}
.cid-tac3kO621g .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tac3kO621g .form-group {
  max-width: 220px;
}
.cid-tac3kO621g .mbr-section-btn {
  padding-left: 0;
}
.cid-tac3kO621g .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tac3kO621g .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #0087ab;
  width: 85%;
}
.cid-tac3kO621g .mbr-text {
  color: #444;
}
.cid-tac3kO621g h5 {
  margin-bottom: 0;
}
.cid-tac3kO621g .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tac3kO621g .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tac3kO621g .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tac3kO621g .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tac3kO621g .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tac3kO621g .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tac3kO621g .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tac3kO621g .social-list a:hover {
  opacity: 0.4;
}
.cid-tac3kO621g .media-container-row > div {
  padding: 0px;
}
.cid-tac3kO621g .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-tac3kO621g .group-title {
  text-align: left;
  color: #0196c1;
  padding-bottom: 0.2rem;
}
.cid-tac3kO621g .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tac3kO621g .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tac3kO621g .social-list,
  .cid-tac3kO621g .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tac3kO621g h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tac3kO621g .form-group {
    max-width: 180px;
  }
}
.cid-tac3kO621g .links span {
  color: #9e9e9e;
}
.cid-tac3kO621g .logo-sub-title {
  text-align: center;
  color: #a2d4e3;
}
.cid-tac3kO621g .logo-title {
  text-align: center;
}
.cid-tac3kO621g .logo-title,
.cid-tac3kO621g .logo {
  color: #0196c1;
}
.cid-snsnTFnxH8 .nav-item:focus,
.cid-snsnTFnxH8 .nav-link:focus {
  outline: none;
}
.cid-snsnTFnxH8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snsnTFnxH8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snsnTFnxH8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-snsnTFnxH8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snsnTFnxH8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snsnTFnxH8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-snsnTFnxH8 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-snsnTFnxH8 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-snsnTFnxH8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-snsnTFnxH8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-snsnTFnxH8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-snsnTFnxH8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snsnTFnxH8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snsnTFnxH8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-snsnTFnxH8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snsnTFnxH8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snsnTFnxH8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snsnTFnxH8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snsnTFnxH8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-snsnTFnxH8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snsnTFnxH8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snsnTFnxH8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-snsnTFnxH8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-snsnTFnxH8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snsnTFnxH8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snsnTFnxH8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-snsnTFnxH8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-snsnTFnxH8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snsnTFnxH8 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-snsnTFnxH8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-snsnTFnxH8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-snsnTFnxH8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snsnTFnxH8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snsnTFnxH8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snsnTFnxH8 .dropdown-item.active,
.cid-snsnTFnxH8 .dropdown-item:active {
  background-color: transparent;
}
.cid-snsnTFnxH8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snsnTFnxH8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snsnTFnxH8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snsnTFnxH8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snsnTFnxH8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snsnTFnxH8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snsnTFnxH8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snsnTFnxH8 .navbar-buttons {
  text-align: center;
}
.cid-snsnTFnxH8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-snsnTFnxH8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00617c;
}
.cid-snsnTFnxH8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snsnTFnxH8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snsnTFnxH8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snsnTFnxH8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snsnTFnxH8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snsnTFnxH8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snsnTFnxH8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snsnTFnxH8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snsnTFnxH8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-snsnTFnxH8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-snsnTFnxH8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snsnTFnxH8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-snsnTFnxH8 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-snsnTFnxH8 .nav-link:hover,
.cid-snsnTFnxH8 .dropdown-item:hover,
.cid-snsnTFnxH8 .icons-menu .mbr-iconfont:hover {
  color: #0196c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snsnTFnxH8 .navbar {
    height: 77px;
  }
  .cid-snsnTFnxH8 .navbar.opened {
    height: auto;
  }
}
.cid-stOv5NuJ4c {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #0196c1;
}
@media (min-width: 992px) {
  .cid-stOv5NuJ4c .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-stOv5NuJ4c .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-stOv5NuJ4c .mbr-text {
    text-align: center;
  }
}
.cid-snsnTFnxH8 .nav-item:focus,
.cid-snsnTFnxH8 .nav-link:focus {
  outline: none;
}
.cid-snsnTFnxH8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snsnTFnxH8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snsnTFnxH8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-snsnTFnxH8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snsnTFnxH8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snsnTFnxH8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-snsnTFnxH8 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-snsnTFnxH8 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-snsnTFnxH8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-snsnTFnxH8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-snsnTFnxH8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-snsnTFnxH8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snsnTFnxH8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snsnTFnxH8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-snsnTFnxH8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snsnTFnxH8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snsnTFnxH8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snsnTFnxH8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snsnTFnxH8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-snsnTFnxH8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snsnTFnxH8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snsnTFnxH8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-snsnTFnxH8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-snsnTFnxH8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snsnTFnxH8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snsnTFnxH8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-snsnTFnxH8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-snsnTFnxH8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snsnTFnxH8 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-snsnTFnxH8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-snsnTFnxH8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-snsnTFnxH8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snsnTFnxH8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snsnTFnxH8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snsnTFnxH8 .dropdown-item.active,
.cid-snsnTFnxH8 .dropdown-item:active {
  background-color: transparent;
}
.cid-snsnTFnxH8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snsnTFnxH8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snsnTFnxH8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snsnTFnxH8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snsnTFnxH8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snsnTFnxH8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snsnTFnxH8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snsnTFnxH8 .navbar-buttons {
  text-align: center;
}
.cid-snsnTFnxH8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-snsnTFnxH8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00617c;
}
.cid-snsnTFnxH8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snsnTFnxH8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snsnTFnxH8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snsnTFnxH8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snsnTFnxH8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snsnTFnxH8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snsnTFnxH8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snsnTFnxH8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snsnTFnxH8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-snsnTFnxH8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-snsnTFnxH8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snsnTFnxH8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-snsnTFnxH8 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-snsnTFnxH8 .nav-link:hover,
.cid-snsnTFnxH8 .dropdown-item:hover,
.cid-snsnTFnxH8 .icons-menu .mbr-iconfont:hover {
  color: #0196c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snsnTFnxH8 .navbar {
    height: 77px;
  }
  .cid-snsnTFnxH8 .navbar.opened {
    height: auto;
  }
}
.cid-stOrmSE3Ih {
  padding-top: 30px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-stOrmSE3Ih .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stOrmSE3Ih .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-stOrmSE3Ih .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stOrmSE3Ih .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stOrmSE3Ih .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #0196c1;
}
.cid-stOrmSE3Ih .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stOrmSE3Ih .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stOrmSE3Ih .mbr-card-text {
  margin: 0;
}
.cid-stOFXJnPAK {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-stOFXJnPAK .menu-item {
  padding: 0 1rem 1rem 1rem;
}
.cid-stOFXJnPAK .menu-item .special-label {
  display: none;
}
.cid-stOFXJnPAK .menu-item.special-item {
  padding-bottom: 0;
  margin-bottom: 1rem;
  border: 2px solid #0196c1;
}
.cid-stOFXJnPAK .menu-item.special-item .special-label {
  display: block;
  width: 100%;
  word-break: break-word;
}
.cid-stOFXJnPAK .menu-item.special-item .special-label .label-text {
  max-width: 100%;
  background: #0196c1;
  padding: 0.5rem 1rem;
  display: inline-block;
}
.cid-stOFXJnPAK .special-label {
  color: #fff;
}
.cid-stOFXJnPAK .menu-box {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-stOFXJnPAK .menu-box .box-text {
  word-break: break-word;
  padding-right: 2rem;
  width: 100%;
}
.cid-stOFXJnPAK .menu-box .box-price {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-stOFXJnPAK .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-stOFXJnPAK .menu-row {
  margin: 0;
}
.cid-stOFXJnPAK .group-title {
  color: #0087ab;
  font-weight: bold;
}
.cid-stOu68mUy7 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0196c1;
}
.cid-stOu68mUy7 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-stOu68mUy7 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-stOu68mUy7 .col + .mbr-section-btn .btn,
.cid-stOu68mUy7 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-stOu68mUy7 .col + .mbr-section-btn .btn,
  .cid-stOu68mUy7 .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-stOu68mUy7 .dragArea > *:nth-last-child(2).col,
  .cid-stOu68mUy7 .dragArea > *:nth-last-child(2).col-auto,
  .cid-stOu68mUy7 .col + .mbr-section-btn,
  .cid-stOu68mUy7 .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-stOu68mUy7 .dragArea {
    flex-direction: column;
  }
}
.cid-stOu68mUy7 .btn-primary {
  border: 1px solid #0196c1 !important;
}
.cid-stOu68mUy7 .btn-primary:hover {
  border: 1px solid #0196c1 !important;
}
.cid-stOu68mUy7 .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-stOu68mUy7 .form-group {
  max-width: 220px;
}
.cid-stOu68mUy7 .mbr-section-btn {
  padding-left: 0;
}
.cid-stOu68mUy7 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-stOu68mUy7 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #0087ab;
  width: 85%;
}
.cid-stOu68mUy7 .mbr-text {
  color: #444;
}
.cid-stOu68mUy7 h5 {
  margin-bottom: 0;
}
.cid-stOu68mUy7 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-stOu68mUy7 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stOu68mUy7 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-stOu68mUy7 .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stOu68mUy7 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-stOu68mUy7 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-stOu68mUy7 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stOu68mUy7 .social-list a:hover {
  opacity: 0.4;
}
.cid-stOu68mUy7 .media-container-row > div {
  padding: 0px;
}
.cid-stOu68mUy7 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-stOu68mUy7 .group-title {
  text-align: left;
  color: #0196c1;
  padding-bottom: 0.2rem;
}
.cid-stOu68mUy7 .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stOu68mUy7 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-stOu68mUy7 .social-list,
  .cid-stOu68mUy7 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-stOu68mUy7 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-stOu68mUy7 .form-group {
    max-width: 180px;
  }
}
.cid-stOu68mUy7 .links span {
  color: #9e9e9e;
}
.cid-stOu68mUy7 .logo-sub-title {
  text-align: center;
  color: #a2d4e3;
}
.cid-stOu68mUy7 .logo-title {
  text-align: center;
}
.cid-stOu68mUy7 .logo-title,
.cid-stOu68mUy7 .logo {
  color: #0196c1;
}
.cid-stOScwVFW5 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-stOScwVFW5 .mbr-text {
  line-height: 1.5;
  color: #efefef;
}
.cid-stOScwVFW5 .mbr-section-title {
  text-align: left;
  color: #0196c1;
}
.cid-stOScwVFW5 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-stOScwVFW5 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-stOSCtRUWo {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #0196c1;
}
@media (min-width: 992px) {
  .cid-stOSCtRUWo .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-stOSCtRUWo .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-stOSCtRUWo .mbr-text {
    text-align: center;
  }
}
.cid-stOSCv4xcR .nav-item:focus,
.cid-stOSCv4xcR .nav-link:focus {
  outline: none;
}
.cid-stOSCv4xcR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-stOSCv4xcR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stOSCv4xcR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stOSCv4xcR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-stOSCv4xcR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stOSCv4xcR .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-stOSCv4xcR .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-stOSCv4xcR .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-stOSCv4xcR .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-stOSCv4xcR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-stOSCv4xcR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stOSCv4xcR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stOSCv4xcR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stOSCv4xcR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-stOSCv4xcR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stOSCv4xcR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-stOSCv4xcR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-stOSCv4xcR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stOSCv4xcR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-stOSCv4xcR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stOSCv4xcR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stOSCv4xcR .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-stOSCv4xcR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stOSCv4xcR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stOSCv4xcR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stOSCv4xcR .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stOSCv4xcR .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-stOSCv4xcR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-stOSCv4xcR .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-stOSCv4xcR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stOSCv4xcR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stOSCv4xcR .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stOSCv4xcR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stOSCv4xcR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stOSCv4xcR .dropdown-item.active,
.cid-stOSCv4xcR .dropdown-item:active {
  background-color: transparent;
}
.cid-stOSCv4xcR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stOSCv4xcR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stOSCv4xcR .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stOSCv4xcR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stOSCv4xcR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stOSCv4xcR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stOSCv4xcR ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-stOSCv4xcR .navbar-buttons {
  text-align: center;
}
.cid-stOSCv4xcR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-stOSCv4xcR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00617c;
}
.cid-stOSCv4xcR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stOSCv4xcR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stOSCv4xcR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stOSCv4xcR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stOSCv4xcR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stOSCv4xcR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stOSCv4xcR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stOSCv4xcR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stOSCv4xcR .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-stOSCv4xcR a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stOSCv4xcR .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-stOSCv4xcR .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-stOSCv4xcR .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-stOSCv4xcR .nav-link:hover,
.cid-stOSCv4xcR .dropdown-item:hover,
.cid-stOSCv4xcR .icons-menu .mbr-iconfont:hover {
  color: #0196c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stOSCv4xcR .navbar {
    height: 77px;
  }
  .cid-stOSCv4xcR .navbar.opened {
    height: auto;
  }
}
.cid-stOSCwEtHH {
  padding-top: 30px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-stOSCwEtHH .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stOSCwEtHH .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-stOSCwEtHH .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stOSCwEtHH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stOSCwEtHH .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #0196c1;
}
.cid-stOSCwEtHH .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stOSCwEtHH .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stOSCwEtHH .mbr-card-text {
  margin: 0;
}
.cid-stOSCyEvJy {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-stOSCyEvJy .menu-item {
  padding: 0 1rem 1rem 1rem;
}
.cid-stOSCyEvJy .menu-item .special-label {
  display: none;
}
.cid-stOSCyEvJy .menu-item.special-item {
  padding-bottom: 0;
  margin-bottom: 1rem;
  border: 2px solid #0196c1;
}
.cid-stOSCyEvJy .menu-item.special-item .special-label {
  display: block;
  width: 100%;
  word-break: break-word;
}
.cid-stOSCyEvJy .menu-item.special-item .special-label .label-text {
  max-width: 100%;
  background: #0196c1;
  padding: 0.5rem 1rem;
  display: inline-block;
}
.cid-stOSCyEvJy .special-label {
  color: #fff;
}
.cid-stOSCyEvJy .menu-box {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-stOSCyEvJy .menu-box .box-text {
  word-break: break-word;
  padding-right: 2rem;
  width: 100%;
}
.cid-stOSCyEvJy .menu-box .box-price {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-stOSCyEvJy .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-stOSCyEvJy .menu-row {
  margin: 0;
}
.cid-stOSCyEvJy .group-title {
  color: #0087ab;
  font-weight: bold;
}
.cid-tac6Sy88fB {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0196c1;
}
.cid-tac6Sy88fB .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-tac6Sy88fB .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tac6Sy88fB .col + .mbr-section-btn .btn,
.cid-tac6Sy88fB .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-tac6Sy88fB .col + .mbr-section-btn .btn,
  .cid-tac6Sy88fB .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-tac6Sy88fB .dragArea > *:nth-last-child(2).col,
  .cid-tac6Sy88fB .dragArea > *:nth-last-child(2).col-auto,
  .cid-tac6Sy88fB .col + .mbr-section-btn,
  .cid-tac6Sy88fB .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-tac6Sy88fB .dragArea {
    flex-direction: column;
  }
}
.cid-tac6Sy88fB .btn-primary {
  border: 1px solid #0196c1 !important;
}
.cid-tac6Sy88fB .btn-primary:hover {
  border: 1px solid #0196c1 !important;
}
.cid-tac6Sy88fB .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tac6Sy88fB .form-group {
  max-width: 220px;
}
.cid-tac6Sy88fB .mbr-section-btn {
  padding-left: 0;
}
.cid-tac6Sy88fB .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tac6Sy88fB .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #0087ab;
  width: 85%;
}
.cid-tac6Sy88fB .mbr-text {
  color: #444;
}
.cid-tac6Sy88fB h5 {
  margin-bottom: 0;
}
.cid-tac6Sy88fB .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tac6Sy88fB .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tac6Sy88fB .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tac6Sy88fB .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tac6Sy88fB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tac6Sy88fB .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tac6Sy88fB .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tac6Sy88fB .social-list a:hover {
  opacity: 0.4;
}
.cid-tac6Sy88fB .media-container-row > div {
  padding: 0px;
}
.cid-tac6Sy88fB .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-tac6Sy88fB .group-title {
  text-align: left;
  color: #0196c1;
  padding-bottom: 0.2rem;
}
.cid-tac6Sy88fB .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tac6Sy88fB .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tac6Sy88fB .social-list,
  .cid-tac6Sy88fB .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tac6Sy88fB h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tac6Sy88fB .form-group {
    max-width: 180px;
  }
}
.cid-tac6Sy88fB .links span {
  color: #9e9e9e;
}
.cid-tac6Sy88fB .logo-sub-title {
  text-align: center;
  color: #a2d4e3;
}
.cid-tac6Sy88fB .logo-title {
  text-align: center;
}
.cid-tac6Sy88fB .logo-title,
.cid-tac6Sy88fB .logo {
  color: #0196c1;
}
.cid-stOSCFbdND {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-stOSCFbdND .mbr-text {
  line-height: 1.5;
  color: #efefef;
}
.cid-stOSCFbdND .mbr-section-title {
  text-align: left;
  color: #0196c1;
}
.cid-stOSCFbdND img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-stOSCFbdND .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tacIXgLRMJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tacIXgLRMJ h2,
.cid-tacIXgLRMJ h3,
.cid-tacIXgLRMJ p,
.cid-tacIXgLRMJ h4 {
  color: #0a0a0a;
}
.cid-tacIXgLRMJ .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-tacIXgLRMJ .mbr-iconfont {
  color: #0196c1;
  font-size: 2rem;
}
.cid-tacIXgLRMJ .mbr-text {
  color: #767676;
}
.cid-tacIXgLRMJ a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-tacIXgLRMJ .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tacIXgLRMJ .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-tacIXgLRMJ textarea.form-control {
  resize: none;
}
.cid-tacIXgLRMJ .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-tacIXgLRMJ .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-tacIXgLRMJ .list-block {
  position: relative;
}
.cid-tacIXgLRMJ .list-block h4,
.cid-tacIXgLRMJ .list-block p {
  padding-left: 3.5rem;
}
.cid-tacIXgLRMJ .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-tacIXgLRMJ h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tacIXgLRMJ .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-tacIXgLRMJ .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-tacIXgLRMJ .img-block-wrap {
    position: relative;
  }
  .cid-tacIXgLRMJ .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-tacIXgLRMJ .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-tacIXgLRMJ .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tacIXgLRMJ .google-map {
    padding-bottom: 2rem;
  }
  .cid-tacIXgLRMJ .img-block {
    overflow: hidden;
  }
}
.cid-tacFORNaxx {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tacFORNaxx .mbr-text {
  line-height: 1.5;
  color: #efefef;
}
.cid-tacFORNaxx .mbr-section-title {
  text-align: left;
  color: #0196c1;
}
.cid-tacFORNaxx img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-tacFORNaxx .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-tacFOSJfXe {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0196c1;
}
.cid-tacFOSJfXe .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-tacFOSJfXe .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tacFOSJfXe .col + .mbr-section-btn .btn,
.cid-tacFOSJfXe .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-tacFOSJfXe .col + .mbr-section-btn .btn,
  .cid-tacFOSJfXe .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-tacFOSJfXe .dragArea > *:nth-last-child(2).col,
  .cid-tacFOSJfXe .dragArea > *:nth-last-child(2).col-auto,
  .cid-tacFOSJfXe .col + .mbr-section-btn,
  .cid-tacFOSJfXe .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-tacFOSJfXe .dragArea {
    flex-direction: column;
  }
}
.cid-tacFOSJfXe .btn-primary {
  border: 1px solid #0196c1 !important;
}
.cid-tacFOSJfXe .btn-primary:hover {
  border: 1px solid #0196c1 !important;
}
.cid-tacFOSJfXe .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tacFOSJfXe .form-group {
  max-width: 220px;
}
.cid-tacFOSJfXe .mbr-section-btn {
  padding-left: 0;
}
.cid-tacFOSJfXe .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tacFOSJfXe .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #0087ab;
  width: 85%;
}
.cid-tacFOSJfXe .mbr-text {
  color: #444;
}
.cid-tacFOSJfXe h5 {
  margin-bottom: 0;
}
.cid-tacFOSJfXe .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tacFOSJfXe .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tacFOSJfXe .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-tacFOSJfXe .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tacFOSJfXe .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tacFOSJfXe .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tacFOSJfXe .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tacFOSJfXe .social-list a:hover {
  opacity: 0.4;
}
.cid-tacFOSJfXe .media-container-row > div {
  padding: 0px;
}
.cid-tacFOSJfXe .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-tacFOSJfXe .group-title {
  text-align: left;
  color: #0196c1;
  padding-bottom: 0.2rem;
}
.cid-tacFOSJfXe .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tacFOSJfXe .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tacFOSJfXe .social-list,
  .cid-tacFOSJfXe .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tacFOSJfXe h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tacFOSJfXe .form-group {
    max-width: 180px;
  }
}
.cid-tacFOSJfXe .links span {
  color: #9e9e9e;
}
.cid-tacFOSJfXe .logo-sub-title {
  text-align: center;
  color: #a2d4e3;
}
.cid-tacFOSJfXe .logo-title {
  text-align: center;
}
.cid-tacFOSJfXe .logo-title,
.cid-tacFOSJfXe .logo {
  color: #0196c1;
}
.cid-tacFOUG5Xb .nav-item:focus,
.cid-tacFOUG5Xb .nav-link:focus {
  outline: none;
}
.cid-tacFOUG5Xb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tacFOUG5Xb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tacFOUG5Xb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tacFOUG5Xb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tacFOUG5Xb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tacFOUG5Xb .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tacFOUG5Xb .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tacFOUG5Xb .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tacFOUG5Xb .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tacFOUG5Xb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tacFOUG5Xb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tacFOUG5Xb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tacFOUG5Xb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tacFOUG5Xb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tacFOUG5Xb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tacFOUG5Xb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tacFOUG5Xb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tacFOUG5Xb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tacFOUG5Xb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tacFOUG5Xb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tacFOUG5Xb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tacFOUG5Xb .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tacFOUG5Xb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tacFOUG5Xb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tacFOUG5Xb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tacFOUG5Xb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tacFOUG5Xb .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tacFOUG5Xb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tacFOUG5Xb .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tacFOUG5Xb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tacFOUG5Xb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tacFOUG5Xb .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tacFOUG5Xb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tacFOUG5Xb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tacFOUG5Xb .dropdown-item.active,
.cid-tacFOUG5Xb .dropdown-item:active {
  background-color: transparent;
}
.cid-tacFOUG5Xb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tacFOUG5Xb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tacFOUG5Xb .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tacFOUG5Xb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tacFOUG5Xb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tacFOUG5Xb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tacFOUG5Xb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tacFOUG5Xb .navbar-buttons {
  text-align: center;
}
.cid-tacFOUG5Xb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tacFOUG5Xb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00617c;
}
.cid-tacFOUG5Xb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tacFOUG5Xb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tacFOUG5Xb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tacFOUG5Xb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tacFOUG5Xb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tacFOUG5Xb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tacFOUG5Xb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tacFOUG5Xb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tacFOUG5Xb .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tacFOUG5Xb a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tacFOUG5Xb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tacFOUG5Xb .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tacFOUG5Xb .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tacFOUG5Xb .nav-link:hover,
.cid-tacFOUG5Xb .dropdown-item:hover,
.cid-tacFOUG5Xb .icons-menu .mbr-iconfont:hover {
  color: #0196c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tacFOUG5Xb .navbar {
    height: 77px;
  }
  .cid-tacFOUG5Xb .navbar.opened {
    height: auto;
  }
}
.cid-taEdRJNrWN {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-taEdRJNrWN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-taEdRJNrWN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taEdRJNrWN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taEdRJNrWN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-taEdRJNrWN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #a2d4e3;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #a2d4e3, #ffffff);
}
.cid-taEdRJNrWN .icon-focus {
  display: none;
}
.cid-taEdRJNrWN .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-taEdRJNrWN ul {
  font-size: 0;
}
.cid-taEdRJNrWN .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #0087ab !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-taEdRJNrWN .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-taEdRJNrWN .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0196c1, #ff0000);
}
.cid-taEdRJNrWN .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-taEdRJNrWN .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-taEdRJNrWN .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-taEdRJNrWN .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-taEdRJNrWN .btn:hover {
  background: transparent !important;
}
.cid-taEdRJNrWN .btn:hover:before {
  background: transparent !important;
}
.cid-taEdRJNrWN .btn:before {
  background-color: transparent !important;
}
.cid-taEdRJNrWN .btn:focus {
  box-shadow: none;
}
.cid-taEdRJNrWN .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-taEcgCdf9L {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-taEcgCdf9L .mbr-text {
  line-height: 1.5;
  color: #efefef;
}
.cid-taEcgCdf9L .mbr-section-title {
  text-align: left;
  color: #0196c1;
}
.cid-taEcgCdf9L img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-taEcgCdf9L .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-taEcgCPqVt {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0196c1;
}
.cid-taEcgCPqVt .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-taEcgCPqVt .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-taEcgCPqVt .col + .mbr-section-btn .btn,
.cid-taEcgCPqVt .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-taEcgCPqVt .col + .mbr-section-btn .btn,
  .cid-taEcgCPqVt .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-taEcgCPqVt .dragArea > *:nth-last-child(2).col,
  .cid-taEcgCPqVt .dragArea > *:nth-last-child(2).col-auto,
  .cid-taEcgCPqVt .col + .mbr-section-btn,
  .cid-taEcgCPqVt .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-taEcgCPqVt .dragArea {
    flex-direction: column;
  }
}
.cid-taEcgCPqVt .btn-primary {
  border: 1px solid #0196c1 !important;
}
.cid-taEcgCPqVt .btn-primary:hover {
  border: 1px solid #0196c1 !important;
}
.cid-taEcgCPqVt .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-taEcgCPqVt .form-group {
  max-width: 220px;
}
.cid-taEcgCPqVt .mbr-section-btn {
  padding-left: 0;
}
.cid-taEcgCPqVt .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-taEcgCPqVt .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #0087ab;
  width: 85%;
}
.cid-taEcgCPqVt .mbr-text {
  color: #444;
}
.cid-taEcgCPqVt h5 {
  margin-bottom: 0;
}
.cid-taEcgCPqVt .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-taEcgCPqVt .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-taEcgCPqVt .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-taEcgCPqVt .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-taEcgCPqVt .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-taEcgCPqVt .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-taEcgCPqVt .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-taEcgCPqVt .social-list a:hover {
  opacity: 0.4;
}
.cid-taEcgCPqVt .media-container-row > div {
  padding: 0px;
}
.cid-taEcgCPqVt .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-taEcgCPqVt .group-title {
  text-align: left;
  color: #0196c1;
  padding-bottom: 0.2rem;
}
.cid-taEcgCPqVt .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-taEcgCPqVt .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-taEcgCPqVt .social-list,
  .cid-taEcgCPqVt .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-taEcgCPqVt h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-taEcgCPqVt .form-group {
    max-width: 180px;
  }
}
.cid-taEcgCPqVt .links span {
  color: #9e9e9e;
}
.cid-taEcgCPqVt .logo-sub-title {
  text-align: center;
  color: #a2d4e3;
}
.cid-taEcgCPqVt .logo-title {
  text-align: center;
}
.cid-taEcgCPqVt .logo-title,
.cid-taEcgCPqVt .logo {
  color: #0196c1;
}
.cid-taEcgEwcO3 .nav-item:focus,
.cid-taEcgEwcO3 .nav-link:focus {
  outline: none;
}
.cid-taEcgEwcO3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-taEcgEwcO3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-taEcgEwcO3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-taEcgEwcO3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-taEcgEwcO3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-taEcgEwcO3 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-taEcgEwcO3 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-taEcgEwcO3 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-taEcgEwcO3 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-taEcgEwcO3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-taEcgEwcO3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-taEcgEwcO3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-taEcgEwcO3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-taEcgEwcO3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-taEcgEwcO3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-taEcgEwcO3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-taEcgEwcO3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-taEcgEwcO3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-taEcgEwcO3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-taEcgEwcO3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-taEcgEwcO3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-taEcgEwcO3 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-taEcgEwcO3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-taEcgEwcO3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-taEcgEwcO3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-taEcgEwcO3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-taEcgEwcO3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-taEcgEwcO3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-taEcgEwcO3 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-taEcgEwcO3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-taEcgEwcO3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-taEcgEwcO3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-taEcgEwcO3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-taEcgEwcO3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-taEcgEwcO3 .dropdown-item.active,
.cid-taEcgEwcO3 .dropdown-item:active {
  background-color: transparent;
}
.cid-taEcgEwcO3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-taEcgEwcO3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-taEcgEwcO3 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-taEcgEwcO3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-taEcgEwcO3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-taEcgEwcO3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-taEcgEwcO3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-taEcgEwcO3 .navbar-buttons {
  text-align: center;
}
.cid-taEcgEwcO3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-taEcgEwcO3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00617c;
}
.cid-taEcgEwcO3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-taEcgEwcO3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taEcgEwcO3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taEcgEwcO3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-taEcgEwcO3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taEcgEwcO3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-taEcgEwcO3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-taEcgEwcO3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taEcgEwcO3 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-taEcgEwcO3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-taEcgEwcO3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-taEcgEwcO3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-taEcgEwcO3 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-taEcgEwcO3 .nav-link:hover,
.cid-taEcgEwcO3 .dropdown-item:hover,
.cid-taEcgEwcO3 .icons-menu .mbr-iconfont:hover {
  color: #0196c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-taEcgEwcO3 .navbar {
    height: 77px;
  }
  .cid-taEcgEwcO3 .navbar.opened {
    height: auto;
  }
}
