@import url(https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700);
@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Comfortaa:300,400,700);





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Comfortaa', sans-serif;
  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: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((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: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #1d4266 !important;
}
.bg-info {
  background-color: #cccccc !important;
}
.bg-warning {
  background-color: #cccccc !important;
}
.bg-danger {
  background-color: #cccccc !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #cccccc;
  border-color: #cccccc;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #cccccc;
  border-color: #cccccc;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0c1b2a;
  border-color: #0c1b2a;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1d4266;
  border-color: #1d4266;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #0c1b2a;
  border-color: #0c1b2a;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0c1b2a !important;
  border-color: #0c1b2a !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #cccccc;
  border-color: #cccccc;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #cccccc;
  border-color: #cccccc;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #ffffff !important;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #ffffff !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #999999;
  color: #999999 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #999999;
  color: #999999 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1d4266;
  border-color: #1d4266;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #060f17;
  color: #060f17 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1d4266;
  border-color: #1d4266;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1d4266 !important;
  border-color: #1d4266 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #999999;
  color: #999999 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #999999;
  color: #999999 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  transform: scale(10);
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #cccccc !important;
}
.text-success {
  color: #1d4266 !important;
}
.text-info {
  color: #cccccc !important;
}
.text-warning {
  color: #cccccc !important;
}
.text-danger {
  color: #cccccc !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #999999 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #060f17 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #999999 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #999999 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #999999 !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: #70c770;
}
.alert-info {
  background-color: #cccccc;
}
.alert-warning {
  background-color: #cccccc;
}
.alert-danger {
  background-color: #cccccc;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #3b82c7;
}
.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 {
  opacity: 0 !important;
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.5rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #ffffff;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ffffff;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ffffff;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ffffff;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ffffff;
}
/* Headers*/
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.scroll-background {
  background-repeat: repeat-x !important;
}
.cid-qznANQ1vfZ .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .nav-item:focus,
.cid-qznANQ1vfZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qznANQ1vfZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link {
    position: relative;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qznANQ1vfZ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qznANQ1vfZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qznANQ1vfZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qznANQ1vfZ .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qznANQ1vfZ .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-qznANQ1vfZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qznANQ1vfZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qznANQ1vfZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show .brand-container,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qznANQ1vfZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qznANQ1vfZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qznANQ1vfZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qznANQ1vfZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qznANQ1vfZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-qznANQ1vfZ .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qznANQ1vfZ .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qznANQ1vfZ .dropdown-item.active,
.cid-qznANQ1vfZ .dropdown-item:active {
  background-color: transparent;
}
.cid-qznANQ1vfZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qznANQ1vfZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qznANQ1vfZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qznANQ1vfZ .navbar-buttons {
  margin-left: auto;
}
.cid-qznANQ1vfZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qznANQ1vfZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qznANQ1vfZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qznANQ1vfZ .right-menu,
.cid-qznANQ1vfZ .left-menu {
  flex-basis: 45%;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qznANQ1vfZ .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qznANQ1vfZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qznANQ1vfZ .card-wrapper {
  z-index: 3;
}
.cid-qznANQ1vfZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .full-link {
    height: 2.7rem;
  }
  .cid-qznANQ1vfZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qA2btSN7df {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qA2btSN7df p {
  color: #767676;
}
.cid-qA2btSN7df .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qA2btSN7df .main {
  flex-direction: row-reverse;
}
.cid-qA2btSN7df .row-element,
.cid-qA2btSN7df .image-element {
  padding: 0;
}
.cid-qA2btSN7df .image-element {
  display: flex;
  justify-content: center;
}
.cid-qA2btSN7df .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qA2btSN7df .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qA2btSN7df .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qA2btSN7df .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qA2btSN7df .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qA2btSN7df .text-content {
    padding: 2rem 1rem;
  }
  .cid-qA2btSN7df .underline .line {
    height: 2px;
  }
  .cid-qA2btSN7df .mbr-title,
  .cid-qA2btSN7df .underline,
  .cid-qA2btSN7df .mbr-text,
  .cid-qA2btSN7df .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qA2btSN7df .mbr-text,
.cid-qA2btSN7df .mbr-section-btn {
  color: #1d4266;
  text-align: right;
}
.cid-qA2btSN7df .mbr-title,
.cid-qA2btSN7df .underline {
  color: #1d4266;
  text-align: right;
}
.cid-qA2btvmHih {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qA2btvmHih p {
  color: #767676;
}
.cid-qA2btvmHih .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qA2btvmHih .row-element,
.cid-qA2btvmHih .image-element {
  padding: 0;
}
.cid-qA2btvmHih .image-element {
  display: flex;
  justify-content: center;
}
.cid-qA2btvmHih .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qA2btvmHih .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qA2btvmHih .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qA2btvmHih .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qA2btvmHih .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qA2btvmHih .text-content {
    padding: 2rem 1rem;
  }
  .cid-qA2btvmHih .underline .line {
    height: 2px;
  }
  .cid-qA2btvmHih .mbr-title,
  .cid-qA2btvmHih .underline,
  .cid-qA2btvmHih .mbr-text,
  .cid-qA2btvmHih .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qA2btvmHih .mbr-title,
.cid-qA2btvmHih .underline {
  text-align: left;
  color: #1d4266;
}
.cid-qA2btvmHih .mbr-text,
.cid-qA2btvmHih .mbr-section-btn {
  color: #1d4266;
  text-align: left;
}
.cid-qA2c3AxjZA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qA2c3AxjZA p {
  color: #767676;
}
.cid-qA2c3AxjZA .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qA2c3AxjZA .main {
  flex-direction: row-reverse;
}
.cid-qA2c3AxjZA .row-element,
.cid-qA2c3AxjZA .image-element {
  padding: 0;
}
.cid-qA2c3AxjZA .image-element {
  display: flex;
  justify-content: center;
}
.cid-qA2c3AxjZA .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qA2c3AxjZA .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qA2c3AxjZA .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qA2c3AxjZA .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qA2c3AxjZA .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qA2c3AxjZA .text-content {
    padding: 2rem 1rem;
  }
  .cid-qA2c3AxjZA .underline .line {
    height: 2px;
  }
  .cid-qA2c3AxjZA .mbr-title,
  .cid-qA2c3AxjZA .underline,
  .cid-qA2c3AxjZA .mbr-text,
  .cid-qA2c3AxjZA .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qA2c3AxjZA .mbr-title,
.cid-qA2c3AxjZA .underline {
  color: #1d4266;
  text-align: right;
}
.cid-qA2c3AxjZA .mbr-text,
.cid-qA2c3AxjZA .mbr-section-btn {
  color: #1d4266;
  text-align: right;
}
.cid-qOjJFZ94n6 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1d4266;
}
.cid-qOjJFZ94n6 .mbr-section-title span {
  display: block;
}
.cid-qOjJFZ94n6 .first-column,
.cid-qOjJFZ94n6 .second-column {
  margin-bottom: 1rem;
}
.cid-qOjJFZ94n6 .first-column ul,
.cid-qOjJFZ94n6 .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qOjJFZ94n6 .first-column ul li,
.cid-qOjJFZ94n6 .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qOjJFZ94n6 .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qOjJFZ94n6 .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-qOjJFZ94n6 .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qOjJFZ94n6 .card-support {
    text-align: center;
  }
}
.cid-qOjJFZ94n6 .first-column-item {
  color: #ffffff;
}
.cid-qOjJFZ94n6 .mbr-section-title,
.cid-qOjJFZ94n6 .card-support DIV {
  color: #ffffff;
  text-align: left;
}
.cid-qznANQ1vfZ .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .nav-item:focus,
.cid-qznANQ1vfZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qznANQ1vfZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link {
    position: relative;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qznANQ1vfZ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qznANQ1vfZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qznANQ1vfZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qznANQ1vfZ .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qznANQ1vfZ .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-qznANQ1vfZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qznANQ1vfZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qznANQ1vfZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show .brand-container,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qznANQ1vfZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qznANQ1vfZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qznANQ1vfZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qznANQ1vfZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qznANQ1vfZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-qznANQ1vfZ .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qznANQ1vfZ .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qznANQ1vfZ .dropdown-item.active,
.cid-qznANQ1vfZ .dropdown-item:active {
  background-color: transparent;
}
.cid-qznANQ1vfZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qznANQ1vfZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qznANQ1vfZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qznANQ1vfZ .navbar-buttons {
  margin-left: auto;
}
.cid-qznANQ1vfZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qznANQ1vfZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qznANQ1vfZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qznANQ1vfZ .right-menu,
.cid-qznANQ1vfZ .left-menu {
  flex-basis: 45%;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qznANQ1vfZ .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qznANQ1vfZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qznANQ1vfZ .card-wrapper {
  z-index: 3;
}
.cid-qznANQ1vfZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .full-link {
    height: 2.7rem;
  }
  .cid-qznANQ1vfZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qA24EgiacC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qA24EgiacC p {
  color: #767676;
}
.cid-qA24EgiacC .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qA24EgiacC .row-element,
.cid-qA24EgiacC .image-element {
  padding: 0;
}
.cid-qA24EgiacC .image-element {
  display: flex;
  justify-content: center;
}
.cid-qA24EgiacC .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qA24EgiacC .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qA24EgiacC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qA24EgiacC .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qA24EgiacC .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qA24EgiacC .text-content {
    padding: 2rem 1rem;
  }
  .cid-qA24EgiacC .underline .line {
    height: 2px;
  }
  .cid-qA24EgiacC .mbr-title,
  .cid-qA24EgiacC .underline,
  .cid-qA24EgiacC .mbr-text,
  .cid-qA24EgiacC .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qA24EgiacC .mbr-title,
.cid-qA24EgiacC .underline {
  color: #1d4266;
  text-align: left;
}
.cid-qA24EgiacC .mbr-text,
.cid-qA24EgiacC .mbr-section-btn {
  color: #1d4266;
  text-align: left;
}
.cid-qNMXYgAp1a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qNMXYgAp1a p {
  color: #767676;
}
.cid-qNMXYgAp1a .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qNMXYgAp1a .main {
  flex-direction: row-reverse;
}
.cid-qNMXYgAp1a .row-element,
.cid-qNMXYgAp1a .image-element {
  padding: 0;
}
.cid-qNMXYgAp1a .image-element {
  display: flex;
  justify-content: center;
}
.cid-qNMXYgAp1a .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qNMXYgAp1a .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qNMXYgAp1a .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qNMXYgAp1a .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qNMXYgAp1a .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qNMXYgAp1a .text-content {
    padding: 2rem 1rem;
  }
  .cid-qNMXYgAp1a .underline .line {
    height: 2px;
  }
  .cid-qNMXYgAp1a .mbr-title,
  .cid-qNMXYgAp1a .underline,
  .cid-qNMXYgAp1a .mbr-text,
  .cid-qNMXYgAp1a .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qNMXYgAp1a .mbr-title,
.cid-qNMXYgAp1a .underline {
  text-align: right;
  color: #1d4266;
}
.cid-qNMXYgAp1a .mbr-text,
.cid-qNMXYgAp1a .mbr-section-btn {
  text-align: right;
  color: #1d4266;
}
.cid-qA24F6mfjR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qA24F6mfjR p {
  color: #767676;
}
.cid-qA24F6mfjR .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qA24F6mfjR .row-element,
.cid-qA24F6mfjR .image-element {
  padding: 0;
}
.cid-qA24F6mfjR .image-element {
  display: flex;
  justify-content: center;
}
.cid-qA24F6mfjR .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qA24F6mfjR .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qA24F6mfjR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qA24F6mfjR .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qA24F6mfjR .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qA24F6mfjR .text-content {
    padding: 2rem 1rem;
  }
  .cid-qA24F6mfjR .underline .line {
    height: 2px;
  }
  .cid-qA24F6mfjR .mbr-title,
  .cid-qA24F6mfjR .underline,
  .cid-qA24F6mfjR .mbr-text,
  .cid-qA24F6mfjR .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qA24F6mfjR .mbr-title,
.cid-qA24F6mfjR .underline {
  text-align: right;
  color: #1d4266;
}
.cid-qA24F6mfjR .mbr-text,
.cid-qA24F6mfjR .mbr-section-btn {
  text-align: right;
  color: #1d4266;
}
.cid-qOjJNq7kGT {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1d4266;
}
.cid-qOjJNq7kGT .mbr-section-title span {
  display: block;
}
.cid-qOjJNq7kGT .first-column,
.cid-qOjJNq7kGT .second-column {
  margin-bottom: 1rem;
}
.cid-qOjJNq7kGT .first-column ul,
.cid-qOjJNq7kGT .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qOjJNq7kGT .first-column ul li,
.cid-qOjJNq7kGT .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qOjJNq7kGT .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qOjJNq7kGT .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-qOjJNq7kGT .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qOjJNq7kGT .card-support {
    text-align: center;
  }
}
.cid-qOjJNq7kGT .first-column-item {
  color: #ffffff;
}
.cid-qOjJNq7kGT .mbr-section-title,
.cid-qOjJNq7kGT .card-support DIV {
  color: #ffffff;
  text-align: left;
}
.cid-qzIikMOrS1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzIikMOrS1 .content-slider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.cid-qzIikMOrS1 .modal-body .close {
  background: #1b1b1b;
}
.cid-qzIikMOrS1 .modal-body .close span {
  font-style: normal;
}
.cid-qzIikMOrS1 .carousel-inner > .active,
.cid-qzIikMOrS1 .carousel-inner > .next,
.cid-qzIikMOrS1 .carousel-inner > .prev {
  display: flex;
}
.cid-qzIikMOrS1 .carousel-control .icon-next,
.cid-qzIikMOrS1 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qzIikMOrS1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qzIikMOrS1 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-qzIikMOrS1 .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-qzIikMOrS1 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qzIikMOrS1 .boxed-slider > div {
  position: relative;
}
.cid-qzIikMOrS1 .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkitobject-position: center;
}
.cid-qzIikMOrS1 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-qzIikMOrS1 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qzIikMOrS1 .mbr-table-cell {
  padding: 0;
}
.cid-qzIikMOrS1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qzIikMOrS1 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qzIikMOrS1 .mbr-overlay {
  z-index: 1;
}
.cid-qzIikMOrS1 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-qzIikMOrS1 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-qzIikMOrS1 .carousel-item .container {
    width: 100%;
  }
}
.cid-qzIikMOrS1 .carousel-item-next.carousel-item-left,
.cid-qzIikMOrS1 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qzIikMOrS1 .active.carousel-item-right,
.cid-qzIikMOrS1 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qzIikMOrS1 .active.carousel-item-left,
.cid-qzIikMOrS1 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-qzIikMOrS1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li.active,
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li::after,
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qzIikMOrS1 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qzIikMOrS1 .mbr-slider > .container img {
  width: 100%;
}
.cid-qzIikMOrS1 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qzIikMOrS1 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qzIikMOrS1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qzIikMOrS1 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qzIikMOrS1 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qzIikMOrS1 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-qzIikMOrS1 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qzIikMOrS1 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qzIikMOrS1 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qzIikMOrS1 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qzIikMOrS1 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qzIikMOrS1 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qzIikMOrS1 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qzIikMOrS1 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-qzIikMOrS1 .carousel-inner {
  height: 100%;
}
.cid-qzIikMOrS1 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-qzIikMOrS1 .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 700px;
  overflow: hidden;
}
.cid-qzIikMOrS1 .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-qzIikMOrS1 .content-slider-wrap {
  width: 100%;
}
.cid-qznANQ1vfZ .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .nav-item:focus,
.cid-qznANQ1vfZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qznANQ1vfZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link {
    position: relative;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qznANQ1vfZ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qznANQ1vfZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qznANQ1vfZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qznANQ1vfZ .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qznANQ1vfZ .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-qznANQ1vfZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qznANQ1vfZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qznANQ1vfZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show .brand-container,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qznANQ1vfZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qznANQ1vfZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qznANQ1vfZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qznANQ1vfZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qznANQ1vfZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-qznANQ1vfZ .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qznANQ1vfZ .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qznANQ1vfZ .dropdown-item.active,
.cid-qznANQ1vfZ .dropdown-item:active {
  background-color: transparent;
}
.cid-qznANQ1vfZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qznANQ1vfZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qznANQ1vfZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qznANQ1vfZ .navbar-buttons {
  margin-left: auto;
}
.cid-qznANQ1vfZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qznANQ1vfZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qznANQ1vfZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qznANQ1vfZ .right-menu,
.cid-qznANQ1vfZ .left-menu {
  flex-basis: 45%;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qznANQ1vfZ .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qznANQ1vfZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qznANQ1vfZ .card-wrapper {
  z-index: 3;
}
.cid-qznANQ1vfZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .full-link {
    height: 2.7rem;
  }
  .cid-qznANQ1vfZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qzIkqhKMyu {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-qzIkqhKMyu p {
  color: #767676;
}
.cid-qzIkqhKMyu .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qzIkqhKMyu .row-element,
.cid-qzIkqhKMyu .image-element {
  padding: 0;
}
.cid-qzIkqhKMyu .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzIkqhKMyu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzIkqhKMyu .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzIkqhKMyu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzIkqhKMyu .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzIkqhKMyu .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzIkqhKMyu .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzIkqhKMyu .underline .line {
    height: 2px;
  }
  .cid-qzIkqhKMyu .mbr-title,
  .cid-qzIkqhKMyu .underline,
  .cid-qzIkqhKMyu .mbr-text,
  .cid-qzIkqhKMyu .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzIkqhKMyu .mbr-text,
.cid-qzIkqhKMyu .mbr-section-btn {
  color: #1d4266;
  text-align: left;
}
.cid-qzIkqhKMyu .mbr-title,
.cid-qzIkqhKMyu .underline {
  color: #1d4266;
  text-align: left;
}
.cid-qzIkqhKMyu .mbr-text,
.cid-qzIkqhKMyu .mbr-section-btn P {
  color: #1d4266;
}
.cid-qOjJVrRSUH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1d4266;
}
.cid-qOjJVrRSUH .mbr-section-title span {
  display: block;
}
.cid-qOjJVrRSUH .first-column,
.cid-qOjJVrRSUH .second-column {
  margin-bottom: 1rem;
}
.cid-qOjJVrRSUH .first-column ul,
.cid-qOjJVrRSUH .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qOjJVrRSUH .first-column ul li,
.cid-qOjJVrRSUH .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qOjJVrRSUH .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qOjJVrRSUH .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-qOjJVrRSUH .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qOjJVrRSUH .card-support {
    text-align: center;
  }
}
.cid-qOjJVrRSUH .first-column-item {
  color: #ffffff;
}
.cid-qOjJVrRSUH .mbr-section-title,
.cid-qOjJVrRSUH .card-support DIV {
  color: #ffffff;
  text-align: left;
}
.cid-qznANQ1vfZ .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .nav-item:focus,
.cid-qznANQ1vfZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qznANQ1vfZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link {
    position: relative;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qznANQ1vfZ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qznANQ1vfZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qznANQ1vfZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qznANQ1vfZ .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qznANQ1vfZ .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-qznANQ1vfZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qznANQ1vfZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qznANQ1vfZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show .brand-container,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qznANQ1vfZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qznANQ1vfZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qznANQ1vfZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qznANQ1vfZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qznANQ1vfZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-qznANQ1vfZ .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qznANQ1vfZ .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qznANQ1vfZ .dropdown-item.active,
.cid-qznANQ1vfZ .dropdown-item:active {
  background-color: transparent;
}
.cid-qznANQ1vfZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qznANQ1vfZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qznANQ1vfZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qznANQ1vfZ .navbar-buttons {
  margin-left: auto;
}
.cid-qznANQ1vfZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qznANQ1vfZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qznANQ1vfZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qznANQ1vfZ .right-menu,
.cid-qznANQ1vfZ .left-menu {
  flex-basis: 45%;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qznANQ1vfZ .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qznANQ1vfZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qznANQ1vfZ .card-wrapper {
  z-index: 3;
}
.cid-qznANQ1vfZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .full-link {
    height: 2.7rem;
  }
  .cid-qznANQ1vfZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qzIikMOrS1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzIikMOrS1 .content-slider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.cid-qzIikMOrS1 .modal-body .close {
  background: #1b1b1b;
}
.cid-qzIikMOrS1 .modal-body .close span {
  font-style: normal;
}
.cid-qzIikMOrS1 .carousel-inner > .active,
.cid-qzIikMOrS1 .carousel-inner > .next,
.cid-qzIikMOrS1 .carousel-inner > .prev {
  display: flex;
}
.cid-qzIikMOrS1 .carousel-control .icon-next,
.cid-qzIikMOrS1 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qzIikMOrS1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qzIikMOrS1 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-qzIikMOrS1 .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-qzIikMOrS1 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qzIikMOrS1 .boxed-slider > div {
  position: relative;
}
.cid-qzIikMOrS1 .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkitobject-position: center;
}
.cid-qzIikMOrS1 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-qzIikMOrS1 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qzIikMOrS1 .mbr-table-cell {
  padding: 0;
}
.cid-qzIikMOrS1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qzIikMOrS1 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qzIikMOrS1 .mbr-overlay {
  z-index: 1;
}
.cid-qzIikMOrS1 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-qzIikMOrS1 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-qzIikMOrS1 .carousel-item .container {
    width: 100%;
  }
}
.cid-qzIikMOrS1 .carousel-item-next.carousel-item-left,
.cid-qzIikMOrS1 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qzIikMOrS1 .active.carousel-item-right,
.cid-qzIikMOrS1 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qzIikMOrS1 .active.carousel-item-left,
.cid-qzIikMOrS1 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-qzIikMOrS1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li.active,
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li::after,
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qzIikMOrS1 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qzIikMOrS1 .mbr-slider > .container img {
  width: 100%;
}
.cid-qzIikMOrS1 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qzIikMOrS1 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qzIikMOrS1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qzIikMOrS1 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qzIikMOrS1 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qzIikMOrS1 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-qzIikMOrS1 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qzIikMOrS1 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qzIikMOrS1 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qzIikMOrS1 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qzIikMOrS1 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qzIikMOrS1 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qzIikMOrS1 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qzIikMOrS1 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-qzIikMOrS1 .carousel-inner {
  height: 100%;
}
.cid-qzIikMOrS1 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-qzIikMOrS1 .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 700px;
  overflow: hidden;
}
.cid-qzIikMOrS1 .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-qzIikMOrS1 .content-slider-wrap {
  width: 100%;
}
.cid-qzIkqhKMyu {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-qzIkqhKMyu p {
  color: #767676;
}
.cid-qzIkqhKMyu .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qzIkqhKMyu .row-element,
.cid-qzIkqhKMyu .image-element {
  padding: 0;
}
.cid-qzIkqhKMyu .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzIkqhKMyu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzIkqhKMyu .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzIkqhKMyu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzIkqhKMyu .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzIkqhKMyu .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzIkqhKMyu .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzIkqhKMyu .underline .line {
    height: 2px;
  }
  .cid-qzIkqhKMyu .mbr-title,
  .cid-qzIkqhKMyu .underline,
  .cid-qzIkqhKMyu .mbr-text,
  .cid-qzIkqhKMyu .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzIkqhKMyu .mbr-text,
.cid-qzIkqhKMyu .mbr-section-btn {
  color: #1d4266;
  text-align: left;
}
.cid-qzIkqhKMyu .mbr-title,
.cid-qzIkqhKMyu .underline {
  color: #1d4266;
  text-align: left;
}
.cid-qOjJYQJqJL {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1d4266;
}
.cid-qOjJYQJqJL .mbr-section-title span {
  display: block;
}
.cid-qOjJYQJqJL .first-column,
.cid-qOjJYQJqJL .second-column {
  margin-bottom: 1rem;
}
.cid-qOjJYQJqJL .first-column ul,
.cid-qOjJYQJqJL .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qOjJYQJqJL .first-column ul li,
.cid-qOjJYQJqJL .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qOjJYQJqJL .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qOjJYQJqJL .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-qOjJYQJqJL .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qOjJYQJqJL .card-support {
    text-align: center;
  }
}
.cid-qOjJYQJqJL .first-column-item {
  color: #ffffff;
}
.cid-qOjJYQJqJL .mbr-section-title,
.cid-qOjJYQJqJL .card-support DIV {
  color: #ffffff;
  text-align: left;
}
.cid-qznANQ1vfZ .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .nav-item:focus,
.cid-qznANQ1vfZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qznANQ1vfZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link {
    position: relative;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qznANQ1vfZ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qznANQ1vfZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qznANQ1vfZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qznANQ1vfZ .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qznANQ1vfZ .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-qznANQ1vfZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qznANQ1vfZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qznANQ1vfZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show .brand-container,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qznANQ1vfZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qznANQ1vfZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qznANQ1vfZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qznANQ1vfZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qznANQ1vfZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-qznANQ1vfZ .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qznANQ1vfZ .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qznANQ1vfZ .dropdown-item.active,
.cid-qznANQ1vfZ .dropdown-item:active {
  background-color: transparent;
}
.cid-qznANQ1vfZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qznANQ1vfZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qznANQ1vfZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qznANQ1vfZ .navbar-buttons {
  margin-left: auto;
}
.cid-qznANQ1vfZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qznANQ1vfZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qznANQ1vfZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qznANQ1vfZ .right-menu,
.cid-qznANQ1vfZ .left-menu {
  flex-basis: 45%;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qznANQ1vfZ .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qznANQ1vfZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qznANQ1vfZ .card-wrapper {
  z-index: 3;
}
.cid-qznANQ1vfZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .full-link {
    height: 2.7rem;
  }
  .cid-qznANQ1vfZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qzIikMOrS1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzIikMOrS1 .content-slider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.cid-qzIikMOrS1 .modal-body .close {
  background: #1b1b1b;
}
.cid-qzIikMOrS1 .modal-body .close span {
  font-style: normal;
}
.cid-qzIikMOrS1 .carousel-inner > .active,
.cid-qzIikMOrS1 .carousel-inner > .next,
.cid-qzIikMOrS1 .carousel-inner > .prev {
  display: flex;
}
.cid-qzIikMOrS1 .carousel-control .icon-next,
.cid-qzIikMOrS1 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qzIikMOrS1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qzIikMOrS1 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-qzIikMOrS1 .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-qzIikMOrS1 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qzIikMOrS1 .boxed-slider > div {
  position: relative;
}
.cid-qzIikMOrS1 .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkitobject-position: center;
}
.cid-qzIikMOrS1 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-qzIikMOrS1 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qzIikMOrS1 .mbr-table-cell {
  padding: 0;
}
.cid-qzIikMOrS1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qzIikMOrS1 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qzIikMOrS1 .mbr-overlay {
  z-index: 1;
}
.cid-qzIikMOrS1 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-qzIikMOrS1 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-qzIikMOrS1 .carousel-item .container {
    width: 100%;
  }
}
.cid-qzIikMOrS1 .carousel-item-next.carousel-item-left,
.cid-qzIikMOrS1 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qzIikMOrS1 .active.carousel-item-right,
.cid-qzIikMOrS1 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qzIikMOrS1 .active.carousel-item-left,
.cid-qzIikMOrS1 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-qzIikMOrS1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li.active,
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li::after,
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qzIikMOrS1 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qzIikMOrS1 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qzIikMOrS1 .mbr-slider > .container img {
  width: 100%;
}
.cid-qzIikMOrS1 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qzIikMOrS1 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qzIikMOrS1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qzIikMOrS1 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qzIikMOrS1 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qzIikMOrS1 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-qzIikMOrS1 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qzIikMOrS1 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qzIikMOrS1 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qzIikMOrS1 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qzIikMOrS1 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qzIikMOrS1 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qzIikMOrS1 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qzIikMOrS1 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-qzIikMOrS1 .carousel-inner {
  height: 100%;
}
.cid-qzIikMOrS1 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-qzIikMOrS1 .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 700px;
  overflow: hidden;
}
.cid-qzIikMOrS1 .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-qzIikMOrS1 .content-slider-wrap {
  width: 100%;
}
.cid-qzIkqhKMyu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzIkqhKMyu p {
  color: #767676;
}
.cid-qzIkqhKMyu .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qzIkqhKMyu .row-element,
.cid-qzIkqhKMyu .image-element {
  padding: 0;
}
.cid-qzIkqhKMyu .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzIkqhKMyu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzIkqhKMyu .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzIkqhKMyu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzIkqhKMyu .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzIkqhKMyu .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzIkqhKMyu .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzIkqhKMyu .underline .line {
    height: 2px;
  }
  .cid-qzIkqhKMyu .mbr-title,
  .cid-qzIkqhKMyu .underline,
  .cid-qzIkqhKMyu .mbr-text,
  .cid-qzIkqhKMyu .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzIkqhKMyu .mbr-text,
.cid-qzIkqhKMyu .mbr-section-btn {
  color: #1d4266;
  text-align: left;
}
.cid-qzIkqhKMyu .mbr-title,
.cid-qzIkqhKMyu .underline {
  color: #1d4266;
  text-align: left;
}
.cid-qOjK6euC1d {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1d4266;
}
.cid-qOjK6euC1d .mbr-section-title span {
  display: block;
}
.cid-qOjK6euC1d .first-column,
.cid-qOjK6euC1d .second-column {
  margin-bottom: 1rem;
}
.cid-qOjK6euC1d .first-column ul,
.cid-qOjK6euC1d .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qOjK6euC1d .first-column ul li,
.cid-qOjK6euC1d .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qOjK6euC1d .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qOjK6euC1d .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-qOjK6euC1d .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qOjK6euC1d .card-support {
    text-align: center;
  }
}
.cid-qOjK6euC1d .first-column-item {
  color: #ffffff;
}
.cid-qOjK6euC1d .mbr-section-title,
.cid-qOjK6euC1d .card-support DIV {
  color: #ffffff;
  text-align: left;
}
.cid-qzIdADmkwB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzIdADmkwB p {
  color: #767676;
}
.cid-qzIdADmkwB .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qzIdADmkwB .main {
  flex-direction: row-reverse;
}
.cid-qzIdADmkwB .row-element,
.cid-qzIdADmkwB .image-element {
  padding: 0;
}
.cid-qzIdADmkwB .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzIdADmkwB .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzIdADmkwB .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzIdADmkwB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzIdADmkwB .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzIdADmkwB .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzIdADmkwB .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzIdADmkwB .underline .line {
    height: 2px;
  }
  .cid-qzIdADmkwB .mbr-title,
  .cid-qzIdADmkwB .underline,
  .cid-qzIdADmkwB .mbr-text,
  .cid-qzIdADmkwB .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzIdADmkwB .mbr-text,
.cid-qzIdADmkwB .mbr-section-btn {
  text-align: right;
  color: #1d4266;
}
.cid-qzIdADmkwB .mbr-title,
.cid-qzIdADmkwB .underline {
  color: #1d4266;
  text-align: right;
}
.cid-qzIefgxwLZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzIefgxwLZ p {
  color: #767676;
}
.cid-qzIefgxwLZ .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qzIefgxwLZ .row-element,
.cid-qzIefgxwLZ .image-element {
  padding: 0;
}
.cid-qzIefgxwLZ .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzIefgxwLZ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzIefgxwLZ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzIefgxwLZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzIefgxwLZ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzIefgxwLZ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzIefgxwLZ .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzIefgxwLZ .underline .line {
    height: 2px;
  }
  .cid-qzIefgxwLZ .mbr-title,
  .cid-qzIefgxwLZ .underline,
  .cid-qzIefgxwLZ .mbr-text,
  .cid-qzIefgxwLZ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzIefgxwLZ .mbr-title,
.cid-qzIefgxwLZ .underline {
  color: #1d4266;
  text-align: left;
}
.cid-qzIefgxwLZ .mbr-text,
.cid-qzIefgxwLZ .mbr-section-btn {
  text-align: left;
  color: #1d4266;
}
.cid-qzIdZdb4E6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzIdZdb4E6 p {
  color: #767676;
}
.cid-qzIdZdb4E6 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qzIdZdb4E6 .main {
  flex-direction: row-reverse;
}
.cid-qzIdZdb4E6 .row-element,
.cid-qzIdZdb4E6 .image-element {
  padding: 0;
}
.cid-qzIdZdb4E6 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzIdZdb4E6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzIdZdb4E6 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzIdZdb4E6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzIdZdb4E6 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzIdZdb4E6 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzIdZdb4E6 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzIdZdb4E6 .underline .line {
    height: 2px;
  }
  .cid-qzIdZdb4E6 .mbr-title,
  .cid-qzIdZdb4E6 .underline,
  .cid-qzIdZdb4E6 .mbr-text,
  .cid-qzIdZdb4E6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzIdZdb4E6 .mbr-text,
.cid-qzIdZdb4E6 .mbr-section-btn {
  text-align: right;
  color: #1d4266;
}
.cid-qzIdZdb4E6 .mbr-title,
.cid-qzIdZdb4E6 .underline {
  text-align: right;
  color: #1d4266;
}
.cid-qOjKaAO7HT {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1d4266;
}
.cid-qOjKaAO7HT .mbr-section-title span {
  display: block;
}
.cid-qOjKaAO7HT .first-column,
.cid-qOjKaAO7HT .second-column {
  margin-bottom: 1rem;
}
.cid-qOjKaAO7HT .first-column ul,
.cid-qOjKaAO7HT .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qOjKaAO7HT .first-column ul li,
.cid-qOjKaAO7HT .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qOjKaAO7HT .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qOjKaAO7HT .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-qOjKaAO7HT .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qOjKaAO7HT .card-support {
    text-align: center;
  }
}
.cid-qOjKaAO7HT .first-column-item {
  color: #ffffff;
}
.cid-qOjKaAO7HT .mbr-section-title,
.cid-qOjKaAO7HT .card-support DIV {
  color: #ffffff;
  text-align: left;
}
.cid-qznANQ1vfZ .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .nav-item:focus,
.cid-qznANQ1vfZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qznANQ1vfZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link {
    position: relative;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qznANQ1vfZ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qznANQ1vfZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qznANQ1vfZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qznANQ1vfZ .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qznANQ1vfZ .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-qznANQ1vfZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qznANQ1vfZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qznANQ1vfZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show .brand-container,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qznANQ1vfZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qznANQ1vfZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qznANQ1vfZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qznANQ1vfZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qznANQ1vfZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-qznANQ1vfZ .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qznANQ1vfZ .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qznANQ1vfZ .dropdown-item.active,
.cid-qznANQ1vfZ .dropdown-item:active {
  background-color: transparent;
}
.cid-qznANQ1vfZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qznANQ1vfZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qznANQ1vfZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qznANQ1vfZ .navbar-buttons {
  margin-left: auto;
}
.cid-qznANQ1vfZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qznANQ1vfZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qznANQ1vfZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qznANQ1vfZ .right-menu,
.cid-qznANQ1vfZ .left-menu {
  flex-basis: 45%;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qznANQ1vfZ .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qznANQ1vfZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qznANQ1vfZ .card-wrapper {
  z-index: 3;
}
.cid-qznANQ1vfZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .full-link {
    height: 2.7rem;
  }
  .cid-qznANQ1vfZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qznANQ1vfZ .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .nav-item:focus,
.cid-qznANQ1vfZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qznANQ1vfZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link {
    position: relative;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qznANQ1vfZ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qznANQ1vfZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qznANQ1vfZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qznANQ1vfZ .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qznANQ1vfZ .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-qznANQ1vfZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qznANQ1vfZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qznANQ1vfZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show .brand-container,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qznANQ1vfZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qznANQ1vfZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qznANQ1vfZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qznANQ1vfZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qznANQ1vfZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-qznANQ1vfZ .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qznANQ1vfZ .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qznANQ1vfZ .dropdown-item.active,
.cid-qznANQ1vfZ .dropdown-item:active {
  background-color: transparent;
}
.cid-qznANQ1vfZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qznANQ1vfZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qznANQ1vfZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qznANQ1vfZ .navbar-buttons {
  margin-left: auto;
}
.cid-qznANQ1vfZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qznANQ1vfZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qznANQ1vfZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qznANQ1vfZ .right-menu,
.cid-qznANQ1vfZ .left-menu {
  flex-basis: 45%;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qznANQ1vfZ .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qznANQ1vfZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qznANQ1vfZ .card-wrapper {
  z-index: 3;
}
.cid-qznANQ1vfZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .full-link {
    height: 2.7rem;
  }
  .cid-qznANQ1vfZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qA2btSN7df {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qA2btSN7df p {
  color: #767676;
}
.cid-qA2btSN7df .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qA2btSN7df .main {
  flex-direction: row-reverse;
}
.cid-qA2btSN7df .row-element,
.cid-qA2btSN7df .image-element {
  padding: 0;
}
.cid-qA2btSN7df .image-element {
  display: flex;
  justify-content: center;
}
.cid-qA2btSN7df .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qA2btSN7df .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qA2btSN7df .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qA2btSN7df .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qA2btSN7df .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qA2btSN7df .text-content {
    padding: 2rem 1rem;
  }
  .cid-qA2btSN7df .underline .line {
    height: 2px;
  }
  .cid-qA2btSN7df .mbr-title,
  .cid-qA2btSN7df .underline,
  .cid-qA2btSN7df .mbr-text,
  .cid-qA2btSN7df .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qA2btSN7df .mbr-text,
.cid-qA2btSN7df .mbr-section-btn {
  color: #1d4266;
  text-align: right;
}
.cid-qA2btSN7df .mbr-title,
.cid-qA2btSN7df .underline {
  color: #1d4266;
  text-align: right;
}
.cid-qOjJKdsAJH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1d4266;
}
.cid-qOjJKdsAJH .mbr-section-title span {
  display: block;
}
.cid-qOjJKdsAJH .first-column,
.cid-qOjJKdsAJH .second-column {
  margin-bottom: 1rem;
}
.cid-qOjJKdsAJH .first-column ul,
.cid-qOjJKdsAJH .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qOjJKdsAJH .first-column ul li,
.cid-qOjJKdsAJH .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qOjJKdsAJH .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qOjJKdsAJH .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-qOjJKdsAJH .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qOjJKdsAJH .card-support {
    text-align: center;
  }
}
.cid-qOjJKdsAJH .first-column-item {
  color: #ffffff;
}
.cid-qOjJKdsAJH .mbr-section-title,
.cid-qOjJKdsAJH .card-support DIV {
  color: #ffffff;
  text-align: left;
}
.cid-qznANQ1vfZ .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .nav-item:focus,
.cid-qznANQ1vfZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qznANQ1vfZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link {
    position: relative;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qznANQ1vfZ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qznANQ1vfZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qznANQ1vfZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qznANQ1vfZ .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qznANQ1vfZ .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-qznANQ1vfZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qznANQ1vfZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qznANQ1vfZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show .brand-container,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qznANQ1vfZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qznANQ1vfZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qznANQ1vfZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qznANQ1vfZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qznANQ1vfZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-qznANQ1vfZ .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qznANQ1vfZ .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qznANQ1vfZ .dropdown-item.active,
.cid-qznANQ1vfZ .dropdown-item:active {
  background-color: transparent;
}
.cid-qznANQ1vfZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qznANQ1vfZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qznANQ1vfZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qznANQ1vfZ .navbar-buttons {
  margin-left: auto;
}
.cid-qznANQ1vfZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qznANQ1vfZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qznANQ1vfZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qznANQ1vfZ .right-menu,
.cid-qznANQ1vfZ .left-menu {
  flex-basis: 45%;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qznANQ1vfZ .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qznANQ1vfZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qznANQ1vfZ .card-wrapper {
  z-index: 3;
}
.cid-qznANQ1vfZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .full-link {
    height: 2.7rem;
  }
  .cid-qznANQ1vfZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qNLijs5TMB .modal-body .close {
  background: #1b1b1b;
}
.cid-qNLijs5TMB .modal-body .close span {
  font-style: normal;
}
.cid-qNLijs5TMB .carousel-inner > .active,
.cid-qNLijs5TMB .carousel-inner > .next,
.cid-qNLijs5TMB .carousel-inner > .prev {
  display: table;
}
.cid-qNLijs5TMB .carousel-control .icon-next,
.cid-qNLijs5TMB .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qNLijs5TMB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qNLijs5TMB .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qNLijs5TMB .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qNLijs5TMB .boxed-slider > div {
  position: relative;
}
.cid-qNLijs5TMB .container img {
  width: 100%;
}
.cid-qNLijs5TMB .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-qNLijs5TMB .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qNLijs5TMB .mbr-table-cell {
  padding: 0;
}
.cid-qNLijs5TMB .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qNLijs5TMB .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qNLijs5TMB .mbr-overlay {
  z-index: 1;
}
.cid-qNLijs5TMB .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qNLijs5TMB .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-qNLijs5TMB .carousel-item .container {
    width: 100%;
  }
}
.cid-qNLijs5TMB .carousel-item-next.carousel-item-left,
.cid-qNLijs5TMB .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qNLijs5TMB .active.carousel-item-right,
.cid-qNLijs5TMB .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qNLijs5TMB .active.carousel-item-left,
.cid-qNLijs5TMB .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qNLijs5TMB .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-qNLijs5TMB .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qNLijs5TMB .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qNLijs5TMB .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-qNLijs5TMB .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qNLijs5TMB .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qNLijs5TMB .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-qNLijs5TMB .mbr-slider .carousel-indicators li.active,
.cid-qNLijs5TMB .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-qNLijs5TMB .mbr-slider .carousel-indicators li::after,
.cid-qNLijs5TMB .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qNLijs5TMB .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qNLijs5TMB .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qNLijs5TMB .mbr-slider > .container img {
  width: 100%;
}
.cid-qNLijs5TMB .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qNLijs5TMB .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qNLijs5TMB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qNLijs5TMB .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qNLijs5TMB .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qNLijs5TMB .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-qNLijs5TMB .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qNLijs5TMB .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qNLijs5TMB .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qNLijs5TMB .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qNLijs5TMB .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qNLijs5TMB .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qNLijs5TMB .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qznCrZ4FTO {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qznCrZ4FTO .container-fluid {
  padding: 0 3rem;
}
.cid-qznCrZ4FTO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
.cid-qznCrZ4FTO .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-qznCrZ4FTO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qznCrZ4FTO .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qznCrZ4FTO .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qznCrZ4FTO .container-fluid {
    padding: 0 1rem;
  }
  .cid-qznCrZ4FTO .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qznCrZ4FTO .mbr-section-title,
.cid-qznCrZ4FTO .underline {
  color: #1d4266;
}
.cid-qznCrZ4FTO .mbr-text,
.cid-qznCrZ4FTO .card-btn {
  color: #1d4266;
}
.cid-qznCrZ4FTO .mbr-section-subtitle {
  color: #1d4266;
  text-align: left;
}
.cid-r7zb94CIni {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r7zb94CIni .container-fluid {
  padding: 0 3rem;
}
.cid-r7zb94CIni .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
.cid-r7zb94CIni .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-r7zb94CIni .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-r7zb94CIni .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-r7zb94CIni .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-r7zb94CIni .container-fluid {
    padding: 0 1rem;
  }
  .cid-r7zb94CIni .text-row {
    padding-bottom: 1rem;
  }
}
.cid-r7zb94CIni .mbr-section-title,
.cid-r7zb94CIni .underline {
  color: #1d4266;
}
.cid-r7zb94CIni .mbr-text,
.cid-r7zb94CIni .card-btn {
  color: #1d4266;
}
.cid-r7zb94CIni .mbr-section-subtitle {
  color: #1d4266;
  text-align: left;
}
.cid-qFAsPHSGNC {
  background-image: url("../../../assets/images/the-rake-federico-fellini-1-1200x803.jpg");
  overflow: hidden !important;
}
.cid-qFAsPHSGNC .container-fluid {
  padding: 0 3rem;
}
.cid-qFAsPHSGNC .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-qFAsPHSGNC .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qFAsPHSGNC .mbr-section-title {
  color: #ffffff;
}
.cid-qzrOUCrp42 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-qzrOUCrp42 p {
  color: #767676;
}
.cid-qzrOUCrp42 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qzrOUCrp42 .row-element,
.cid-qzrOUCrp42 .image-element {
  padding: 0;
}
.cid-qzrOUCrp42 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzrOUCrp42 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzrOUCrp42 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzrOUCrp42 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzrOUCrp42 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzrOUCrp42 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzrOUCrp42 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzrOUCrp42 .underline .line {
    height: 2px;
  }
  .cid-qzrOUCrp42 .mbr-title,
  .cid-qzrOUCrp42 .underline,
  .cid-qzrOUCrp42 .mbr-text,
  .cid-qzrOUCrp42 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzrOUCrp42 .mbr-text,
.cid-qzrOUCrp42 .mbr-section-btn {
  color: #1d4266;
  text-align: left;
}
.cid-qzrOUCrp42 .mbr-title,
.cid-qzrOUCrp42 .underline {
  color: #1d4266;
  text-align: left;
}
.cid-qFAtk5pLyZ {
  background-image: url("../../../assets/images/film-crew-01-2000x1628.jpg");
  overflow: hidden !important;
}
.cid-qFAtk5pLyZ .container-fluid {
  padding: 0 3rem;
}
.cid-qFAtk5pLyZ .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-qFAtk5pLyZ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qFAtk5pLyZ .mbr-section-title {
  color: #ffffff;
}
.cid-qzrZAkobnM {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-qzrZAkobnM p {
  color: #767676;
}
.cid-qzrZAkobnM .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qzrZAkobnM .main {
  flex-direction: row-reverse;
}
.cid-qzrZAkobnM .row-element,
.cid-qzrZAkobnM .image-element {
  padding: 0;
}
.cid-qzrZAkobnM .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzrZAkobnM .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzrZAkobnM .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzrZAkobnM .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzrZAkobnM .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzrZAkobnM .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzrZAkobnM .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzrZAkobnM .underline .line {
    height: 2px;
  }
  .cid-qzrZAkobnM .mbr-title,
  .cid-qzrZAkobnM .underline,
  .cid-qzrZAkobnM .mbr-text,
  .cid-qzrZAkobnM .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzrZAkobnM .mbr-title,
.cid-qzrZAkobnM .underline {
  color: #1d4266;
  text-align: right;
}
.cid-qzrZAkobnM .mbr-text,
.cid-qzrZAkobnM .mbr-section-btn {
  color: #1d4266;
  text-align: right;
}
.cid-qFAB77qVfB {
  background-image: url("../../../assets/images/wrist-suit-cuff-bw-01-alvin-mahmudov-181257.jpg");
  overflow: hidden !important;
}
.cid-qFAB77qVfB .container-fluid {
  padding: 0 3rem;
}
.cid-qFAB77qVfB .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-qFAB77qVfB .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qFAB77qVfB .mbr-section-title {
  color: #ffffff;
}
.cid-qFBkEuK38K {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/wildtextures-seamless-industrial-concrete-texture-1-1500x1500.jpg");
}
.cid-qFBkEuK38K .container-fluid {
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-qFBkEuK38K .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qFBkEuK38K .mbr-section-subtitle,
.cid-qFBkEuK38K .mbr-section-btn {
  text-align: center;
  color: #1d4266;
}
.cid-qFBkEuK38K .mbr-section-title {
  text-align: center;
  color: #1d4266;
}
.cid-qzIcnb9Nny {
  background-image: url("../../../assets/images/mark-iv-01-testx-2000x1333.jpg");
  overflow: hidden !important;
}
.cid-qzIcnb9Nny .container-fluid {
  padding: 0 3rem;
}
.cid-qzIcnb9Nny .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-qzIcnb9Nny .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qzIcnb9Nny .mbr-section-title {
  color: #ffffff;
}
.cid-qzIcnb9Nny .mbr-section-subtitle,
.cid-qzIcnb9Nny .mbr-section-btn {
  color: #cccccc;
}
#instagram-feed-block-2t .inst__title {
  color: #1d4266;
}
.cid-qP4VQhQ0Cs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1d4266;
}
.cid-qP4VQhQ0Cs .mbr-section-title span {
  display: block;
}
.cid-qP4VQhQ0Cs .first-column,
.cid-qP4VQhQ0Cs .second-column {
  margin-bottom: 1rem;
}
.cid-qP4VQhQ0Cs .first-column ul,
.cid-qP4VQhQ0Cs .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qP4VQhQ0Cs .first-column ul li,
.cid-qP4VQhQ0Cs .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qP4VQhQ0Cs .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qP4VQhQ0Cs .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-qP4VQhQ0Cs .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qP4VQhQ0Cs .card-support {
    text-align: center;
  }
}
.cid-qP4VQhQ0Cs .mbr-section-title,
.cid-qP4VQhQ0Cs .card-support DIV {
  color: #ffffff;
}
.cid-qP4VQhQ0Cs .first-column-item {
  color: #ffffff;
}
.cid-qP4VQhQ0Cs .second-column-item {
  color: #ffffff;
}
.cid-qP51RT0bb8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qP51RT0bb8 p {
  color: #767676;
}
.cid-qP51RT0bb8 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qP51RT0bb8 .row-element,
.cid-qP51RT0bb8 .image-element {
  padding: 0;
}
.cid-qP51RT0bb8 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qP51RT0bb8 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qP51RT0bb8 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qP51RT0bb8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qP51RT0bb8 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qP51RT0bb8 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qP51RT0bb8 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qP51RT0bb8 .underline .line {
    height: 2px;
  }
  .cid-qP51RT0bb8 .mbr-title,
  .cid-qP51RT0bb8 .underline,
  .cid-qP51RT0bb8 .mbr-text,
  .cid-qP51RT0bb8 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qP51RT0bb8 .mbr-text,
.cid-qP51RT0bb8 .mbr-section-btn {
  color: #1d4266;
  text-align: left;
}
.cid-qP51RT0bb8 .mbr-title,
.cid-qP51RT0bb8 .underline {
  color: #1d4266;
  text-align: left;
}
.cid-qznANQ1vfZ .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .nav-item:focus,
.cid-qznANQ1vfZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qznANQ1vfZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link {
    position: relative;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qznANQ1vfZ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qznANQ1vfZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qznANQ1vfZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qznANQ1vfZ .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qznANQ1vfZ .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-qznANQ1vfZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qznANQ1vfZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qznANQ1vfZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show .brand-container,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qznANQ1vfZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qznANQ1vfZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qznANQ1vfZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qznANQ1vfZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qznANQ1vfZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-qznANQ1vfZ .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qznANQ1vfZ .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qznANQ1vfZ .dropdown-item.active,
.cid-qznANQ1vfZ .dropdown-item:active {
  background-color: transparent;
}
.cid-qznANQ1vfZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qznANQ1vfZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qznANQ1vfZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qznANQ1vfZ .navbar-buttons {
  margin-left: auto;
}
.cid-qznANQ1vfZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qznANQ1vfZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qznANQ1vfZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qznANQ1vfZ .right-menu,
.cid-qznANQ1vfZ .left-menu {
  flex-basis: 45%;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qznANQ1vfZ .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qznANQ1vfZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qznANQ1vfZ .card-wrapper {
  z-index: 3;
}
.cid-qznANQ1vfZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .full-link {
    height: 2.7rem;
  }
  .cid-qznANQ1vfZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qP4VQhQ0Cs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1d4266;
}
.cid-qP4VQhQ0Cs .mbr-section-title span {
  display: block;
}
.cid-qP4VQhQ0Cs .first-column,
.cid-qP4VQhQ0Cs .second-column {
  margin-bottom: 1rem;
}
.cid-qP4VQhQ0Cs .first-column ul,
.cid-qP4VQhQ0Cs .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qP4VQhQ0Cs .first-column ul li,
.cid-qP4VQhQ0Cs .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qP4VQhQ0Cs .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qP4VQhQ0Cs .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-qP4VQhQ0Cs .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qP4VQhQ0Cs .card-support {
    text-align: center;
  }
}
.cid-qP4VQhQ0Cs .mbr-section-title,
.cid-qP4VQhQ0Cs .card-support DIV {
  color: #ffffff;
}
.cid-qP4VQhQ0Cs .first-column-item {
  color: #ffffff;
}
.cid-qP4VQhQ0Cs .second-column-item {
  color: #ffffff;
}
.cid-qP5c5cNuMD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1d4266;
}
.cid-qP5c5cNuMD .mbr-text,
.cid-qP5c5cNuMD blockquote {
  color: #232323;
}
.cid-qP5c5cNuMD .mbr-text DIV {
  color: #ffffff;
  text-align: left;
}
.cid-qznANQ1vfZ .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .nav-item:focus,
.cid-qznANQ1vfZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qznANQ1vfZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link {
    position: relative;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qznANQ1vfZ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qznANQ1vfZ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qznANQ1vfZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qznANQ1vfZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qznANQ1vfZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qznANQ1vfZ .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qznANQ1vfZ .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-qznANQ1vfZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qznANQ1vfZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qznANQ1vfZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qznANQ1vfZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qznANQ1vfZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qznANQ1vfZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .navbar-collapse.show .brand-container,
  .cid-qznANQ1vfZ .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qznANQ1vfZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qznANQ1vfZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qznANQ1vfZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qznANQ1vfZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qznANQ1vfZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qznANQ1vfZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-qznANQ1vfZ .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qznANQ1vfZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qznANQ1vfZ .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qznANQ1vfZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qznANQ1vfZ .dropdown-item.active,
.cid-qznANQ1vfZ .dropdown-item:active {
  background-color: transparent;
}
.cid-qznANQ1vfZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qznANQ1vfZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-qznANQ1vfZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qznANQ1vfZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qznANQ1vfZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qznANQ1vfZ .navbar-buttons {
  margin-left: auto;
}
.cid-qznANQ1vfZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qznANQ1vfZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qznANQ1vfZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qznANQ1vfZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qznANQ1vfZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qznANQ1vfZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qznANQ1vfZ .right-menu,
.cid-qznANQ1vfZ .left-menu {
  flex-basis: 45%;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qznANQ1vfZ .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qznANQ1vfZ .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-qznANQ1vfZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qznANQ1vfZ .card-wrapper {
  z-index: 3;
}
.cid-qznANQ1vfZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-qznANQ1vfZ .full-link {
    height: 2.7rem;
  }
  .cid-qznANQ1vfZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qP4VQhQ0Cs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1d4266;
}
.cid-qP4VQhQ0Cs .mbr-section-title span {
  display: block;
}
.cid-qP4VQhQ0Cs .first-column,
.cid-qP4VQhQ0Cs .second-column {
  margin-bottom: 1rem;
}
.cid-qP4VQhQ0Cs .first-column ul,
.cid-qP4VQhQ0Cs .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qP4VQhQ0Cs .first-column ul li,
.cid-qP4VQhQ0Cs .second-column ul li {
  margin-bottom: 1rem;
}
.cid-qP4VQhQ0Cs .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-qP4VQhQ0Cs .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-qP4VQhQ0Cs .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-qP4VQhQ0Cs .card-support {
    text-align: center;
  }
}
.cid-qP4VQhQ0Cs .mbr-section-title,
.cid-qP4VQhQ0Cs .card-support DIV {
  color: #ffffff;
}
.cid-qP4VQhQ0Cs .first-column-item {
  color: #ffffff;
}
.cid-qP4VQhQ0Cs .second-column-item {
  color: #ffffff;
}
.cid-r7zgibeqf7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r7zgibeqf7 .content-slider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.cid-r7zgibeqf7 .modal-body .close {
  background: #1b1b1b;
}
.cid-r7zgibeqf7 .modal-body .close span {
  font-style: normal;
}
.cid-r7zgibeqf7 .carousel-inner > .active,
.cid-r7zgibeqf7 .carousel-inner > .next,
.cid-r7zgibeqf7 .carousel-inner > .prev {
  display: flex;
}
.cid-r7zgibeqf7 .carousel-control .icon-next,
.cid-r7zgibeqf7 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-r7zgibeqf7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-r7zgibeqf7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-r7zgibeqf7 .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-r7zgibeqf7 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-r7zgibeqf7 .boxed-slider > div {
  position: relative;
}
.cid-r7zgibeqf7 .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkitobject-position: center;
}
.cid-r7zgibeqf7 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-r7zgibeqf7 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-r7zgibeqf7 .mbr-table-cell {
  padding: 0;
}
.cid-r7zgibeqf7 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-r7zgibeqf7 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-r7zgibeqf7 .mbr-overlay {
  z-index: 1;
}
.cid-r7zgibeqf7 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-r7zgibeqf7 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-r7zgibeqf7 .carousel-item .container {
    width: 100%;
  }
}
.cid-r7zgibeqf7 .carousel-item-next.carousel-item-left,
.cid-r7zgibeqf7 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-r7zgibeqf7 .active.carousel-item-right,
.cid-r7zgibeqf7 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-r7zgibeqf7 .active.carousel-item-left,
.cid-r7zgibeqf7 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-r7zgibeqf7 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-r7zgibeqf7 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-r7zgibeqf7 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-r7zgibeqf7 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-r7zgibeqf7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-r7zgibeqf7 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-r7zgibeqf7 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-r7zgibeqf7 .mbr-slider .carousel-indicators li.active,
.cid-r7zgibeqf7 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-r7zgibeqf7 .mbr-slider .carousel-indicators li::after,
.cid-r7zgibeqf7 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-r7zgibeqf7 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-r7zgibeqf7 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-r7zgibeqf7 .mbr-slider > .container img {
  width: 100%;
}
.cid-r7zgibeqf7 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-r7zgibeqf7 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-r7zgibeqf7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-r7zgibeqf7 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-r7zgibeqf7 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-r7zgibeqf7 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-r7zgibeqf7 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-r7zgibeqf7 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-r7zgibeqf7 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-r7zgibeqf7 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-r7zgibeqf7 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-r7zgibeqf7 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-r7zgibeqf7 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-r7zgibeqf7 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-r7zgibeqf7 .carousel-inner {
  height: 100%;
}
.cid-r7zgibeqf7 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-r7zgibeqf7 .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 700px;
  overflow: hidden;
}
.cid-r7zgibeqf7 .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-r7zgibeqf7 .content-slider-wrap {
  width: 100%;
}
.cid-r7zgicKcZw .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r7zgicKcZw .nav-item:focus,
.cid-r7zgicKcZw .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r7zgicKcZw .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r7zgicKcZw .nav-item .nav-link {
    position: relative;
  }
  .cid-r7zgicKcZw .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-r7zgicKcZw .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-r7zgicKcZw .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r7zgicKcZw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r7zgicKcZw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r7zgicKcZw .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r7zgicKcZw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r7zgicKcZw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r7zgicKcZw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r7zgicKcZw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r7zgicKcZw .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-r7zgicKcZw .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-r7zgicKcZw .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-r7zgicKcZw .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-r7zgicKcZw .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-r7zgicKcZw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r7zgicKcZw .navbar.collapsed .navbar-collapse.show,
.cid-r7zgicKcZw .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-r7zgicKcZw .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-r7zgicKcZw .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-r7zgicKcZw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r7zgicKcZw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r7zgicKcZw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r7zgicKcZw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-r7zgicKcZw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r7zgicKcZw .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-r7zgicKcZw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-r7zgicKcZw .navbar .navbar-collapse.show,
  .cid-r7zgicKcZw .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-r7zgicKcZw .navbar .navbar-collapse.show .brand-container,
  .cid-r7zgicKcZw .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-r7zgicKcZw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r7zgicKcZw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r7zgicKcZw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r7zgicKcZw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r7zgicKcZw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-r7zgicKcZw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r7zgicKcZw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r7zgicKcZw .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-r7zgicKcZw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-r7zgicKcZw .navbar.navbar-short {
  min-height: 60px;
}
.cid-r7zgicKcZw .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-r7zgicKcZw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r7zgicKcZw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r7zgicKcZw .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-r7zgicKcZw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r7zgicKcZw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r7zgicKcZw .dropdown-item.active,
.cid-r7zgicKcZw .dropdown-item:active {
  background-color: transparent;
}
.cid-r7zgicKcZw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r7zgicKcZw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r7zgicKcZw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r7zgicKcZw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-r7zgicKcZw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r7zgicKcZw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r7zgicKcZw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-r7zgicKcZw .navbar-buttons {
  margin-left: auto;
}
.cid-r7zgicKcZw button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-r7zgicKcZw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r7zgicKcZw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r7zgicKcZw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r7zgicKcZw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r7zgicKcZw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r7zgicKcZw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r7zgicKcZw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-r7zgicKcZw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-r7zgicKcZw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r7zgicKcZw .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r7zgicKcZw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r7zgicKcZw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-r7zgicKcZw .right-menu,
.cid-r7zgicKcZw .left-menu {
  flex-basis: 45%;
}
.cid-r7zgicKcZw .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-r7zgicKcZw .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-r7zgicKcZw .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-r7zgicKcZw .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-r7zgicKcZw .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-r7zgicKcZw .card-wrapper {
  z-index: 3;
}
.cid-r7zgicKcZw .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-r7zgicKcZw .full-link {
    height: 2.7rem;
  }
  .cid-r7zgicKcZw .navbar-collapse {
    padding-top: 0;
  }
}
.cid-r7zgie73L7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-r7zgie73L7 p {
  color: #767676;
}
.cid-r7zgie73L7 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-r7zgie73L7 .row-element,
.cid-r7zgie73L7 .image-element {
  padding: 0;
}
.cid-r7zgie73L7 .image-element {
  display: flex;
  justify-content: center;
}
.cid-r7zgie73L7 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r7zgie73L7 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-r7zgie73L7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-r7zgie73L7 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-r7zgie73L7 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-r7zgie73L7 .text-content {
    padding: 2rem 1rem;
  }
  .cid-r7zgie73L7 .underline .line {
    height: 2px;
  }
  .cid-r7zgie73L7 .mbr-title,
  .cid-r7zgie73L7 .underline,
  .cid-r7zgie73L7 .mbr-text,
  .cid-r7zgie73L7 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r7zgie73L7 .mbr-text,
.cid-r7zgie73L7 .mbr-section-btn {
  color: #1d4266;
  text-align: left;
}
.cid-r7zgie73L7 .mbr-title,
.cid-r7zgie73L7 .underline {
  color: #1d4266;
  text-align: left;
}
.cid-r7zgie73L7 .mbr-text,
.cid-r7zgie73L7 .mbr-section-btn P {
  color: #1d4266;
}
.cid-r7zgifBsYk {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1d4266;
}
.cid-r7zgifBsYk .mbr-section-title span {
  display: block;
}
.cid-r7zgifBsYk .first-column,
.cid-r7zgifBsYk .second-column {
  margin-bottom: 1rem;
}
.cid-r7zgifBsYk .first-column ul,
.cid-r7zgifBsYk .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-r7zgifBsYk .first-column ul li,
.cid-r7zgifBsYk .second-column ul li {
  margin-bottom: 1rem;
}
.cid-r7zgifBsYk .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-r7zgifBsYk .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-r7zgifBsYk .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-r7zgifBsYk .card-support {
    text-align: center;
  }
}
.cid-r7zgifBsYk .first-column-item {
  color: #ffffff;
}
.cid-r7zgifBsYk .mbr-section-title,
.cid-r7zgifBsYk .card-support DIV {
  color: #ffffff;
  text-align: left;
}
.cid-r7zgPXDAyf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r7zgPXDAyf .content-slider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.cid-r7zgPXDAyf .modal-body .close {
  background: #1b1b1b;
}
.cid-r7zgPXDAyf .modal-body .close span {
  font-style: normal;
}
.cid-r7zgPXDAyf .carousel-inner > .active,
.cid-r7zgPXDAyf .carousel-inner > .next,
.cid-r7zgPXDAyf .carousel-inner > .prev {
  display: flex;
}
.cid-r7zgPXDAyf .carousel-control .icon-next,
.cid-r7zgPXDAyf .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-r7zgPXDAyf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-r7zgPXDAyf .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-r7zgPXDAyf .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-r7zgPXDAyf .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-r7zgPXDAyf .boxed-slider > div {
  position: relative;
}
.cid-r7zgPXDAyf .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkitobject-position: center;
}
.cid-r7zgPXDAyf .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-r7zgPXDAyf .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-r7zgPXDAyf .mbr-table-cell {
  padding: 0;
}
.cid-r7zgPXDAyf .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-r7zgPXDAyf .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-r7zgPXDAyf .mbr-overlay {
  z-index: 1;
}
.cid-r7zgPXDAyf .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-r7zgPXDAyf .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-r7zgPXDAyf .carousel-item .container {
    width: 100%;
  }
}
.cid-r7zgPXDAyf .carousel-item-next.carousel-item-left,
.cid-r7zgPXDAyf .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-r7zgPXDAyf .active.carousel-item-right,
.cid-r7zgPXDAyf .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-r7zgPXDAyf .active.carousel-item-left,
.cid-r7zgPXDAyf .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-r7zgPXDAyf .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-r7zgPXDAyf .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-r7zgPXDAyf .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-r7zgPXDAyf .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-r7zgPXDAyf .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-r7zgPXDAyf .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-r7zgPXDAyf .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-r7zgPXDAyf .mbr-slider .carousel-indicators li.active,
.cid-r7zgPXDAyf .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-r7zgPXDAyf .mbr-slider .carousel-indicators li::after,
.cid-r7zgPXDAyf .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-r7zgPXDAyf .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-r7zgPXDAyf .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-r7zgPXDAyf .mbr-slider > .container img {
  width: 100%;
}
.cid-r7zgPXDAyf .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-r7zgPXDAyf .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-r7zgPXDAyf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-r7zgPXDAyf .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-r7zgPXDAyf .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-r7zgPXDAyf .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-r7zgPXDAyf .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-r7zgPXDAyf .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-r7zgPXDAyf .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-r7zgPXDAyf .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-r7zgPXDAyf .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-r7zgPXDAyf .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-r7zgPXDAyf .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-r7zgPXDAyf .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-r7zgPXDAyf .carousel-inner {
  height: 100%;
}
.cid-r7zgPXDAyf .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-r7zgPXDAyf .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 700px;
  overflow: hidden;
}
.cid-r7zgPXDAyf .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-r7zgPXDAyf .content-slider-wrap {
  width: 100%;
}
.cid-r7zgPYBdZ8 .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r7zgPYBdZ8 .nav-item:focus,
.cid-r7zgPYBdZ8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r7zgPYBdZ8 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r7zgPYBdZ8 .nav-item .nav-link {
    position: relative;
  }
  .cid-r7zgPYBdZ8 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-r7zgPYBdZ8 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-r7zgPYBdZ8 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r7zgPYBdZ8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r7zgPYBdZ8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r7zgPYBdZ8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r7zgPYBdZ8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r7zgPYBdZ8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r7zgPYBdZ8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r7zgPYBdZ8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r7zgPYBdZ8 .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-r7zgPYBdZ8 .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-r7zgPYBdZ8 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-r7zgPYBdZ8 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-r7zgPYBdZ8 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-r7zgPYBdZ8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r7zgPYBdZ8 .navbar.collapsed .navbar-collapse.show,
.cid-r7zgPYBdZ8 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-r7zgPYBdZ8 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-r7zgPYBdZ8 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-r7zgPYBdZ8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r7zgPYBdZ8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r7zgPYBdZ8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r7zgPYBdZ8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-r7zgPYBdZ8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r7zgPYBdZ8 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-r7zgPYBdZ8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-r7zgPYBdZ8 .navbar .navbar-collapse.show,
  .cid-r7zgPYBdZ8 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-r7zgPYBdZ8 .navbar .navbar-collapse.show .brand-container,
  .cid-r7zgPYBdZ8 .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-r7zgPYBdZ8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r7zgPYBdZ8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r7zgPYBdZ8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r7zgPYBdZ8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r7zgPYBdZ8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-r7zgPYBdZ8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r7zgPYBdZ8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r7zgPYBdZ8 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-r7zgPYBdZ8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-r7zgPYBdZ8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-r7zgPYBdZ8 .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-r7zgPYBdZ8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r7zgPYBdZ8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r7zgPYBdZ8 .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-r7zgPYBdZ8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r7zgPYBdZ8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r7zgPYBdZ8 .dropdown-item.active,
.cid-r7zgPYBdZ8 .dropdown-item:active {
  background-color: transparent;
}
.cid-r7zgPYBdZ8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r7zgPYBdZ8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r7zgPYBdZ8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r7zgPYBdZ8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-r7zgPYBdZ8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r7zgPYBdZ8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r7zgPYBdZ8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-r7zgPYBdZ8 .navbar-buttons {
  margin-left: auto;
}
.cid-r7zgPYBdZ8 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-r7zgPYBdZ8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r7zgPYBdZ8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r7zgPYBdZ8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r7zgPYBdZ8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r7zgPYBdZ8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r7zgPYBdZ8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r7zgPYBdZ8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-r7zgPYBdZ8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-r7zgPYBdZ8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r7zgPYBdZ8 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r7zgPYBdZ8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r7zgPYBdZ8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-r7zgPYBdZ8 .right-menu,
.cid-r7zgPYBdZ8 .left-menu {
  flex-basis: 45%;
}
.cid-r7zgPYBdZ8 .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-r7zgPYBdZ8 .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-r7zgPYBdZ8 .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-r7zgPYBdZ8 .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-r7zgPYBdZ8 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-r7zgPYBdZ8 .card-wrapper {
  z-index: 3;
}
.cid-r7zgPYBdZ8 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-r7zgPYBdZ8 .full-link {
    height: 2.7rem;
  }
  .cid-r7zgPYBdZ8 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-r7zgPZHxtg {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-r7zgPZHxtg p {
  color: #767676;
}
.cid-r7zgPZHxtg .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-r7zgPZHxtg .row-element,
.cid-r7zgPZHxtg .image-element {
  padding: 0;
}
.cid-r7zgPZHxtg .image-element {
  display: flex;
  justify-content: center;
}
.cid-r7zgPZHxtg .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r7zgPZHxtg .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-r7zgPZHxtg .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-r7zgPZHxtg .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-r7zgPZHxtg .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-r7zgPZHxtg .text-content {
    padding: 2rem 1rem;
  }
  .cid-r7zgPZHxtg .underline .line {
    height: 2px;
  }
  .cid-r7zgPZHxtg .mbr-title,
  .cid-r7zgPZHxtg .underline,
  .cid-r7zgPZHxtg .mbr-text,
  .cid-r7zgPZHxtg .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r7zgPZHxtg .mbr-text,
.cid-r7zgPZHxtg .mbr-section-btn {
  color: #1d4266;
  text-align: left;
}
.cid-r7zgPZHxtg .mbr-title,
.cid-r7zgPZHxtg .underline {
  color: #1d4266;
  text-align: left;
}
.cid-r7zgPZHxtg .mbr-text,
.cid-r7zgPZHxtg .mbr-section-btn P {
  color: #1d4266;
}
.cid-r7zgQ0VLQd {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1d4266;
}
.cid-r7zgQ0VLQd .mbr-section-title span {
  display: block;
}
.cid-r7zgQ0VLQd .first-column,
.cid-r7zgQ0VLQd .second-column {
  margin-bottom: 1rem;
}
.cid-r7zgQ0VLQd .first-column ul,
.cid-r7zgQ0VLQd .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-r7zgQ0VLQd .first-column ul li,
.cid-r7zgQ0VLQd .second-column ul li {
  margin-bottom: 1rem;
}
.cid-r7zgQ0VLQd .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-r7zgQ0VLQd .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-r7zgQ0VLQd .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-r7zgQ0VLQd .card-support {
    text-align: center;
  }
}
.cid-r7zgQ0VLQd .first-column-item {
  color: #ffffff;
}
.cid-r7zgQ0VLQd .mbr-section-title,
.cid-r7zgQ0VLQd .card-support DIV {
  color: #ffffff;
  text-align: left;
}
.cid-r7zhzTGezr .dropdown-item:before {
  font-family: MobiriseIcons !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);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r7zhzTGezr .nav-item:focus,
.cid-r7zhzTGezr .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r7zhzTGezr .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-r7zhzTGezr .nav-item .nav-link {
    position: relative;
  }
  .cid-r7zhzTGezr .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-r7zhzTGezr .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-r7zhzTGezr .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-r7zhzTGezr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-r7zhzTGezr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r7zhzTGezr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r7zhzTGezr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r7zhzTGezr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r7zhzTGezr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r7zhzTGezr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r7zhzTGezr .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-r7zhzTGezr .navbar .mbr-overlay {
  transition: all .3s;
  background: #1d4266;
  background: none;
}
.cid-r7zhzTGezr .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #1d4266 !important;
}
.cid-r7zhzTGezr .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-r7zhzTGezr .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-r7zhzTGezr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r7zhzTGezr .navbar.collapsed .navbar-collapse.show,
.cid-r7zhzTGezr .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-r7zhzTGezr .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-r7zhzTGezr .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-r7zhzTGezr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r7zhzTGezr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r7zhzTGezr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r7zhzTGezr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-r7zhzTGezr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r7zhzTGezr .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-r7zhzTGezr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-r7zhzTGezr .navbar .navbar-collapse.show,
  .cid-r7zhzTGezr .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-r7zhzTGezr .navbar .navbar-collapse.show .brand-container,
  .cid-r7zhzTGezr .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-r7zhzTGezr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r7zhzTGezr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r7zhzTGezr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r7zhzTGezr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r7zhzTGezr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-r7zhzTGezr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r7zhzTGezr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r7zhzTGezr .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-r7zhzTGezr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-r7zhzTGezr .navbar.navbar-short {
  min-height: 60px;
}
.cid-r7zhzTGezr .navbar.navbar-short .mbr-overlay {
  background: #1d4266 !important;
}
.cid-r7zhzTGezr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r7zhzTGezr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r7zhzTGezr .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-r7zhzTGezr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r7zhzTGezr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r7zhzTGezr .dropdown-item.active,
.cid-r7zhzTGezr .dropdown-item:active {
  background-color: transparent;
}
.cid-r7zhzTGezr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r7zhzTGezr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r7zhzTGezr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r7zhzTGezr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1d4266;
}
.cid-r7zhzTGezr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r7zhzTGezr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r7zhzTGezr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-r7zhzTGezr .navbar-buttons {
  margin-left: auto;
}
.cid-r7zhzTGezr button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-r7zhzTGezr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-r7zhzTGezr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r7zhzTGezr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r7zhzTGezr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r7zhzTGezr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r7zhzTGezr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r7zhzTGezr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-r7zhzTGezr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-r7zhzTGezr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r7zhzTGezr .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r7zhzTGezr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-r7zhzTGezr .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-r7zhzTGezr .right-menu,
.cid-r7zhzTGezr .left-menu {
  flex-basis: 45%;
}
.cid-r7zhzTGezr .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-r7zhzTGezr .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-r7zhzTGezr .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-r7zhzTGezr .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-r7zhzTGezr .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-r7zhzTGezr .card-wrapper {
  z-index: 3;
}
.cid-r7zhzTGezr .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-r7zhzTGezr .full-link {
    height: 2.7rem;
  }
  .cid-r7zhzTGezr .navbar-collapse {
    padding-top: 0;
  }
}
.cid-r7zhzUOoNw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r7zhzUOoNw .content-slider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.cid-r7zhzUOoNw .modal-body .close {
  background: #1b1b1b;
}
.cid-r7zhzUOoNw .modal-body .close span {
  font-style: normal;
}
.cid-r7zhzUOoNw .carousel-inner > .active,
.cid-r7zhzUOoNw .carousel-inner > .next,
.cid-r7zhzUOoNw .carousel-inner > .prev {
  display: flex;
}
.cid-r7zhzUOoNw .carousel-control .icon-next,
.cid-r7zhzUOoNw .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-r7zhzUOoNw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-r7zhzUOoNw .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-r7zhzUOoNw .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-r7zhzUOoNw .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-r7zhzUOoNw .boxed-slider > div {
  position: relative;
}
.cid-r7zhzUOoNw .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkitobject-position: center;
}
.cid-r7zhzUOoNw .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-r7zhzUOoNw .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-r7zhzUOoNw .mbr-table-cell {
  padding: 0;
}
.cid-r7zhzUOoNw .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-r7zhzUOoNw .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-r7zhzUOoNw .mbr-overlay {
  z-index: 1;
}
.cid-r7zhzUOoNw .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-r7zhzUOoNw .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-r7zhzUOoNw .carousel-item .container {
    width: 100%;
  }
}
.cid-r7zhzUOoNw .carousel-item-next.carousel-item-left,
.cid-r7zhzUOoNw .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-r7zhzUOoNw .active.carousel-item-right,
.cid-r7zhzUOoNw .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-r7zhzUOoNw .active.carousel-item-left,
.cid-r7zhzUOoNw .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-r7zhzUOoNw .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-r7zhzUOoNw .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-r7zhzUOoNw .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-r7zhzUOoNw .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-r7zhzUOoNw .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-r7zhzUOoNw .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-r7zhzUOoNw .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-r7zhzUOoNw .mbr-slider .carousel-indicators li.active,
.cid-r7zhzUOoNw .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-r7zhzUOoNw .mbr-slider .carousel-indicators li::after,
.cid-r7zhzUOoNw .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-r7zhzUOoNw .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-r7zhzUOoNw .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-r7zhzUOoNw .mbr-slider > .container img {
  width: 100%;
}
.cid-r7zhzUOoNw .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-r7zhzUOoNw .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-r7zhzUOoNw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-r7zhzUOoNw .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-r7zhzUOoNw .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-r7zhzUOoNw .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-r7zhzUOoNw .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-r7zhzUOoNw .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-r7zhzUOoNw .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-r7zhzUOoNw .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-r7zhzUOoNw .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-r7zhzUOoNw .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-r7zhzUOoNw .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-r7zhzUOoNw .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-r7zhzUOoNw .carousel-inner {
  height: 100%;
}
.cid-r7zhzUOoNw .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-r7zhzUOoNw .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 700px;
  overflow: hidden;
}
.cid-r7zhzUOoNw .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-r7zhzUOoNw .content-slider-wrap {
  width: 100%;
}
.cid-r7zhzVPRt8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r7zhzVPRt8 p {
  color: #767676;
}
.cid-r7zhzVPRt8 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-r7zhzVPRt8 .row-element,
.cid-r7zhzVPRt8 .image-element {
  padding: 0;
}
.cid-r7zhzVPRt8 .image-element {
  display: flex;
  justify-content: center;
}
.cid-r7zhzVPRt8 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-r7zhzVPRt8 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-r7zhzVPRt8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-r7zhzVPRt8 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-r7zhzVPRt8 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-r7zhzVPRt8 .text-content {
    padding: 2rem 1rem;
  }
  .cid-r7zhzVPRt8 .underline .line {
    height: 2px;
  }
  .cid-r7zhzVPRt8 .mbr-title,
  .cid-r7zhzVPRt8 .underline,
  .cid-r7zhzVPRt8 .mbr-text,
  .cid-r7zhzVPRt8 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-r7zhzVPRt8 .mbr-text,
.cid-r7zhzVPRt8 .mbr-section-btn {
  color: #1d4266;
  text-align: left;
}
.cid-r7zhzVPRt8 .mbr-title,
.cid-r7zhzVPRt8 .underline {
  color: #1d4266;
  text-align: left;
}
.cid-r7zhzX6OSF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1d4266;
}
.cid-r7zhzX6OSF .mbr-section-title span {
  display: block;
}
.cid-r7zhzX6OSF .first-column,
.cid-r7zhzX6OSF .second-column {
  margin-bottom: 1rem;
}
.cid-r7zhzX6OSF .first-column ul,
.cid-r7zhzX6OSF .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-r7zhzX6OSF .first-column ul li,
.cid-r7zhzX6OSF .second-column ul li {
  margin-bottom: 1rem;
}
.cid-r7zhzX6OSF .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-r7zhzX6OSF .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-r7zhzX6OSF .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-r7zhzX6OSF .card-support {
    text-align: center;
  }
}
.cid-r7zhzX6OSF .first-column-item {
  color: #ffffff;
}
.cid-r7zhzX6OSF .mbr-section-title,
.cid-r7zhzX6OSF .card-support DIV {
  color: #ffffff;
  text-align: left;
}
