body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.3rem;
}
/* ---- 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: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #67a1e5 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #f3ef7d !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #ffa0a4 !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #2679da;
  border-color: #2679da;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #67a1e5 !important;
  border-color: #67a1e5 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #2679da !important;
  border-color: #2679da !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2679da !important;
  border-color: #2679da !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1a095d;
  border-color: #1a095d;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2d10a3 !important;
  border-color: #2d10a3 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #1a095d !important;
  border-color: #1a095d !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1a095d !important;
  border-color: #1a095d !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ede637;
  border-color: #ede637;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #f3ef7d !important;
  border-color: #f3ef7d !important;
  color: #67640a !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #67640a !important;
  background-color: #ede637 !important;
  border-color: #ede637 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #67640a !important;
  background-color: #ede637 !important;
  border-color: #ede637 !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ff545b;
  border-color: #ff545b;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffa0a4 !important;
  border-color: #ffa0a4 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #ff545b !important;
  border-color: #ff545b !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff545b !important;
  border-color: #ff545b !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #67a1e5;
  border-color: #67a1e5;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #226dc4;
  color: #226dc4 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #67a1e5;
  border-color: #67a1e5;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #67a1e5 !important;
  border-color: #67a1e5 !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #2d10a3;
  border-color: #2d10a3;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #130746;
  color: #130746 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2d10a3;
  border-color: #2d10a3;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2d10a3 !important;
  border-color: #2d10a3 !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #f3ef7d;
  border-color: #f3ef7d;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #eae420;
  color: #eae420 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #67640a !important;
  background-color: #f3ef7d;
  border-color: #f3ef7d;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #67640a !important;
  background-color: #f3ef7d !important;
  border-color: #f3ef7d !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffa0a4;
  border-color: #ffa0a4;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #ff3a42;
  color: #ff3a42 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #ffa0a4;
  border-color: #ffa0a4;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa0a4 !important;
  border-color: #ffa0a4 !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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.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 {
  -webkit-transform: scale(10);
  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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.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 {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #67a1e5 !important;
}
.text-secondary {
  color: #2d10a3 !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #f3ef7d !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #ffa0a4 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #226dc4 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #130746 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #eae420 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ff3a42 !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: #ffffff;
}
.alert-info {
  background-color: #f3ef7d;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #ffa0a4;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #67a1e5;
  border-color: #67a1e5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #67a1e5;
}
.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: #ffffff;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.3rem;
}
blockquote {
  border-color: #67a1e5;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #67a1e5;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #67a1e5;
  border-bottom-color: #67a1e5;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #67a1e5 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #2d10a3 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2367a1e5' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uGdrMyOK6m {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGdrMyOK6m nav.navbar {
  position: fixed;
}
.cid-uGdrMyOK6m .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGdrMyOK6m .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uGdrMyOK6m .dropdown-item:hover,
.cid-uGdrMyOK6m .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uGdrMyOK6m .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uGdrMyOK6m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGdrMyOK6m .nav-link {
  position: relative;
  padding: 0;
}
.cid-uGdrMyOK6m .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uGdrMyOK6m .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGdrMyOK6m .dropdown-menu,
.cid-uGdrMyOK6m .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uGdrMyOK6m .nav-item:focus,
.cid-uGdrMyOK6m .nav-link:focus {
  outline: none;
}
.cid-uGdrMyOK6m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGdrMyOK6m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGdrMyOK6m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGdrMyOK6m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGdrMyOK6m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGdrMyOK6m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGdrMyOK6m .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uGdrMyOK6m .navbar.opened {
  transition: all 0.3s;
}
.cid-uGdrMyOK6m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGdrMyOK6m .navbar .navbar-logo img {
  width: auto;
}
.cid-uGdrMyOK6m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGdrMyOK6m .navbar.collapsed {
  justify-content: center;
}
.cid-uGdrMyOK6m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGdrMyOK6m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGdrMyOK6m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGdrMyOK6m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGdrMyOK6m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGdrMyOK6m .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGdrMyOK6m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGdrMyOK6m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGdrMyOK6m .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGdrMyOK6m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGdrMyOK6m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGdrMyOK6m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGdrMyOK6m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGdrMyOK6m .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGdrMyOK6m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGdrMyOK6m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGdrMyOK6m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGdrMyOK6m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGdrMyOK6m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGdrMyOK6m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGdrMyOK6m .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGdrMyOK6m .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uGdrMyOK6m .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGdrMyOK6m .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGdrMyOK6m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGdrMyOK6m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGdrMyOK6m .dropdown-item.active,
.cid-uGdrMyOK6m .dropdown-item:active {
  background-color: transparent;
}
.cid-uGdrMyOK6m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGdrMyOK6m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGdrMyOK6m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGdrMyOK6m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uGdrMyOK6m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGdrMyOK6m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGdrMyOK6m ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGdrMyOK6m .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGdrMyOK6m button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGdrMyOK6m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGdrMyOK6m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGdrMyOK6m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGdrMyOK6m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGdrMyOK6m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGdrMyOK6m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGdrMyOK6m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGdrMyOK6m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGdrMyOK6m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGdrMyOK6m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGdrMyOK6m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGdrMyOK6m .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGdrMyOK6m .navbar {
    height: 70px;
  }
  .cid-uGdrMyOK6m .navbar.opened {
    height: auto;
  }
  .cid-uGdrMyOK6m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGdrMyOK6m .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uGdrMyOK6m .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uGdrMyOK6m a {
  display: inline;
  font-weight: bold;
}
.cid-uGdrMyOK6m img {
  display: inline;
  padding-right: 10px;
}
.cid-uGdrMyOK6m .dropdown-toggle:after {
  display: none;
}
.cid-uGdrMyOK6m .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uGdrMyOK6m .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uGdrMyOK6m .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uGeTiHbLpv {
  background-image: url("../../../assets/images/brooke-lark-08boynh-r-e-unsplashaigs-4.jpg-2000x1587.jpeg");
}
.cid-uGeTiHbLpv .card-wrapper {
  z-index: 3;
}
.cid-uGeTiHbLpv .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-uGeTiHbLpv:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-uGeTiHbLpv .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uGeTiHbLpv .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-uGeTiHbLpv .text-block {
  text-align: left !important;
}
.cid-uGeTiHbLpv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGeTiHbLpv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGeTiHbLpv H2 {
  text-align: right;
  color: #ffffff;
}
.cid-uGdyOoVmaJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uGdyOoVmaJ p {
  color: #767676;
}
.cid-uGdyOoVmaJ .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uGdyOoVmaJ .row-element,
.cid-uGdyOoVmaJ .image-element {
  padding: 0;
}
.cid-uGdyOoVmaJ .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uGdyOoVmaJ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uGdyOoVmaJ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGdyOoVmaJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uGdyOoVmaJ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uGdyOoVmaJ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGdyOoVmaJ .text-content {
    padding: 2rem 1rem;
  }
  .cid-uGdyOoVmaJ .underline .line {
    height: 2px;
  }
  .cid-uGdyOoVmaJ .mbr-title,
  .cid-uGdyOoVmaJ .underline,
  .cid-uGdyOoVmaJ .mbr-text,
  .cid-uGdyOoVmaJ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uGdyOoVmaJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGdyOoVmaJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGf6Z4XQKY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uGf6Z4XQKY .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uGf6Z4XQKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGf6Z4XQKY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGf6Z4XQKY .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uGf6Z4XQKY .content-wrap .card {
  justify-content: space-between;
}
.cid-uGf6Z4XQKY .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uGf6Z4XQKY .content-wrapper {
    padding: 0;
  }
}
.cid-uGf6Z4XQKY .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 16px;
  background-color: #efefef;
}
.cid-uGf6Z4XQKY .content-wrapper .mbr-section-title {
  margin-bottom: 104px;
}
@media (max-width: 992px) {
  .cid-uGf6Z4XQKY .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uGf6Z4XQKY .content-wrapper .items-wrapper .items-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uGf6Z4XQKY .content-wrapper .items-wrapper .items-wrap .item {
  margin-bottom: 16px;
}
.cid-uGf6Z4XQKY .content-wrapper .items-wrapper .items-wrap .item .item-wrapper {
  padding: 0 16px;
}
.cid-uGf6Z4XQKY .content-wrapper .items-wrapper .items-wrap .item .item-wrapper .item-img img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}
.cid-uGf6Z4XQKY .mbr-section-title {
  color: #f4f2ef;
}
.cid-uGf6Z4XQKY .mbr-desc,
.cid-uGf6Z4XQKY .desc-wrapper {
  color: #67a1e5;
  text-align: center;
}
.cid-uGf6Z4XQKY .mbr-section-title,
.cid-uGf6Z4XQKY .items-wrapper {
  text-align: center;
}
.cid-uNyYLrAzD0 {
  background-image: url("../../../assets/images/autoenhancer-img-3254.jpg-2000x1500.jpg");
}
.cid-uNyYLrAzD0 .container-fluid {
  padding: 0 3rem;
}
.cid-uNyYLrAzD0 .media-container-column {
  padding: 0 2rem;
}
.cid-uNyYLrAzD0 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uNyYLrAzD0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNyYLrAzD0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNyYLrAzD0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGdP7mPOxm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGdP7mPOxm .item:focus,
.cid-uGdP7mPOxm span:focus {
  outline: none;
}
.cid-uGdP7mPOxm .item {
  cursor: pointer;
}
.cid-uGdP7mPOxm .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uGdP7mPOxm .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uGdP7mPOxm .grid-container-1,
.cid-uGdP7mPOxm .grid-container-2 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uGdP7mPOxm .grid-container-1,
  .cid-uGdP7mPOxm .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-uGdP7mPOxm .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGdP7mPOxm .mbr-section-title {
    margin-bottom: 35px;
  }
}
.cid-uGdP7mPOxm .content-head {
  max-width: 800px;
}
.cid-uGdP7mPOxm .container,
.cid-uGdP7mPOxm .container-fluid {
  overflow: hidden;
}
.cid-uGdP7mPOxm .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uGdP7mPOxm .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uGdP7mPOxm .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uGdP7mPOxm .grid-item img {
    min-width: 35vw;
    height: 160px;
  }
}
.cid-uGdP7mPOxm .grid-container-1,
.cid-uGdP7mPOxm .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uGdP7mPOxm .grid-container-1 {
  align-items: flex-end;
}
.cid-uGdP7mPOxm .grid-container-2 {
  align-items: flex-start;
}
.cid-uPyyYBRB7S {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uPVWMKnZLN {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #67a1e5;
}
.cid-qOEElYEa4t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2d10a3;
}
.cid-qOEElYEa4t p {
  color: #767676;
}
.cid-qOEElYEa4t .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qOEElYEa4t .row-element,
.cid-qOEElYEa4t .image-element {
  padding: 0;
}
.cid-qOEElYEa4t .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOEElYEa4t .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOEElYEa4t .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qOEElYEa4t .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qOEElYEa4t .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qOEElYEa4t .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qOEElYEa4t .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOEElYEa4t .underline .line {
    height: 2px;
  }
  .cid-qOEElYEa4t .mbr-title,
  .cid-qOEElYEa4t .underline,
  .cid-qOEElYEa4t .mbr-text,
  .cid-qOEElYEa4t .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOEElYEa4t .mbr-text,
.cid-qOEElYEa4t .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-qOEElYEa4t .mbr-title,
.cid-qOEElYEa4t .underline {
  color: #ffffff;
}
.cid-qOEEnSi78W {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #b09677;
}
.cid-qOEEnSi78W p {
  color: #767676;
}
.cid-qOEEnSi78W .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qOEEnSi78W .main {
  flex-direction: row-reverse;
}
.cid-qOEEnSi78W .row-element,
.cid-qOEEnSi78W .image-element {
  padding: 0;
}
.cid-qOEEnSi78W .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOEEnSi78W .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOEEnSi78W .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qOEEnSi78W .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qOEEnSi78W .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qOEEnSi78W .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qOEEnSi78W .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOEEnSi78W .underline .line {
    height: 2px;
  }
  .cid-qOEEnSi78W .mbr-title,
  .cid-qOEEnSi78W .underline,
  .cid-qOEEnSi78W .mbr-text,
  .cid-qOEEnSi78W .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOEEnSi78W .mbr-text,
.cid-qOEEnSi78W .mbr-section-btn {
  color: #232323;
}
.cid-qOEEnSi78W .mbr-title,
.cid-qOEEnSi78W .underline {
  color: #232323;
}
.cid-rfKfULhPui {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/coffee-x-5-2000x515.png");
}
.cid-rfKfULhPui .container-fluid {
  padding: 0 3rem;
}
.cid-rfKfULhPui .media-container-column {
  padding: 0 2rem;
}
.cid-rfKfULhPui .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rfKfULhPui .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qOKi1YPVQR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/sausage-soup-1-1392x2088.jpeg");
}
.cid-qOKi1YPVQR p {
  color: #767676;
}
.cid-qOKi1YPVQR .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qOKi1YPVQR .main {
  flex-direction: row-reverse;
}
.cid-qOKi1YPVQR .row-element,
.cid-qOKi1YPVQR .image-element {
  padding: 0;
}
.cid-qOKi1YPVQR .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOKi1YPVQR .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOKi1YPVQR .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qOKi1YPVQR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qOKi1YPVQR .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qOKi1YPVQR .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qOKi1YPVQR .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOKi1YPVQR .underline .line {
    height: 2px;
  }
  .cid-qOKi1YPVQR .mbr-title,
  .cid-qOKi1YPVQR .underline,
  .cid-qOKi1YPVQR .mbr-text,
  .cid-qOKi1YPVQR .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOKi1YPVQR .mbr-text,
.cid-qOKi1YPVQR .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-qOKi1YPVQR .mbr-title,
.cid-qOKi1YPVQR .underline {
  color: #2d10a3;
}
.cid-uPVX3OE6D3 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #67a1e5;
}
.cid-qOKu5VLMin {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qOKu5VLMin p {
  color: #767676;
}
.cid-qOKu5VLMin .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qOKu5VLMin .main {
  flex-direction: row-reverse;
}
.cid-qOKu5VLMin .row-element,
.cid-qOKu5VLMin .image-element {
  padding: 0;
}
.cid-qOKu5VLMin .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOKu5VLMin .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOKu5VLMin .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qOKu5VLMin .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qOKu5VLMin .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qOKu5VLMin .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qOKu5VLMin .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOKu5VLMin .underline .line {
    height: 2px;
  }
  .cid-qOKu5VLMin .mbr-title,
  .cid-qOKu5VLMin .underline,
  .cid-qOKu5VLMin .mbr-text,
  .cid-qOKu5VLMin .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOKu5VLMin .mbr-text,
.cid-qOKu5VLMin .mbr-section-btn {
  text-align: center;
  color: #16a16c;
}
.cid-qOKu5VLMin .mbr-title,
.cid-qOKu5VLMin .underline {
  color: #16a16c;
}
.cid-qOKmmvJItq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qOKmmvJItq p {
  color: #767676;
}
.cid-qOKmmvJItq .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qOKmmvJItq .row-element,
.cid-qOKmmvJItq .image-element {
  padding: 0;
}
.cid-qOKmmvJItq .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOKmmvJItq .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOKmmvJItq .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qOKmmvJItq .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qOKmmvJItq .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qOKmmvJItq .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qOKmmvJItq .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOKmmvJItq .underline .line {
    height: 2px;
  }
  .cid-qOKmmvJItq .mbr-title,
  .cid-qOKmmvJItq .underline,
  .cid-qOKmmvJItq .mbr-text,
  .cid-qOKmmvJItq .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOKmmvJItq .mbr-text,
.cid-qOKmmvJItq .mbr-section-btn {
  text-align: center;
  color: #096693;
}
.cid-qOKmmvJItq .mbr-title,
.cid-qOKmmvJItq .underline {
  color: #096693;
}
.cid-qOEFfChgLN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qOEFfChgLN p {
  color: #767676;
}
.cid-qOEFfChgLN .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qOEFfChgLN .main {
  flex-direction: row-reverse;
}
.cid-qOEFfChgLN .row-element,
.cid-qOEFfChgLN .image-element {
  padding: 0;
}
.cid-qOEFfChgLN .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOEFfChgLN .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOEFfChgLN .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qOEFfChgLN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qOEFfChgLN .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qOEFfChgLN .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qOEFfChgLN .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOEFfChgLN .underline .line {
    height: 2px;
  }
  .cid-qOEFfChgLN .mbr-title,
  .cid-qOEFfChgLN .underline,
  .cid-qOEFfChgLN .mbr-text,
  .cid-qOEFfChgLN .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOEFfChgLN .mbr-text,
.cid-qOEFfChgLN .mbr-section-btn {
  color: #000000;
}
.cid-qOEFfChgLN .mbr-title,
.cid-qOEFfChgLN .underline {
  color: #fe525b;
}
.cid-qOKt3mpL3q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qOKt3mpL3q p {
  color: #767676;
}
.cid-qOKt3mpL3q .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qOKt3mpL3q .row-element,
.cid-qOKt3mpL3q .image-element {
  padding: 0;
}
.cid-qOKt3mpL3q .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOKt3mpL3q .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOKt3mpL3q .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qOKt3mpL3q .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qOKt3mpL3q .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qOKt3mpL3q .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qOKt3mpL3q .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOKt3mpL3q .underline .line {
    height: 2px;
  }
  .cid-qOKt3mpL3q .mbr-title,
  .cid-qOKt3mpL3q .underline,
  .cid-qOKt3mpL3q .mbr-text,
  .cid-qOKt3mpL3q .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOKt3mpL3q .mbr-text,
.cid-qOKt3mpL3q .mbr-section-btn {
  text-align: center;
  color: #67a1e5;
}
.cid-qOKt3mpL3q .mbr-title,
.cid-qOKt3mpL3q .underline {
  color: #67a1e5;
  text-align: center;
}
.cid-qOKu53g6au {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qOKu53g6au p {
  color: #767676;
}
.cid-qOKu53g6au .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qOKu53g6au .main {
  flex-direction: row-reverse;
}
.cid-qOKu53g6au .row-element,
.cid-qOKu53g6au .image-element {
  padding: 0;
}
.cid-qOKu53g6au .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOKu53g6au .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOKu53g6au .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qOKu53g6au .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qOKu53g6au .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qOKu53g6au .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qOKu53g6au .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOKu53g6au .underline .line {
    height: 2px;
  }
  .cid-qOKu53g6au .mbr-title,
  .cid-qOKu53g6au .underline,
  .cid-qOKu53g6au .mbr-text,
  .cid-qOKu53g6au .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOKu53g6au .mbr-text,
.cid-qOKu53g6au .mbr-section-btn {
  text-align: center;
  color: #767676;
}
.cid-qOKu53g6au .mbr-title,
.cid-qOKu53g6au .underline {
  color: #767676;
}
.cid-qOKmlmXkky {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qOKmlmXkky p {
  color: #767676;
}
.cid-qOKmlmXkky .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qOKmlmXkky .row-element,
.cid-qOKmlmXkky .image-element {
  padding: 0;
}
.cid-qOKmlmXkky .image-element {
  display: flex;
  justify-content: center;
}
.cid-qOKmlmXkky .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qOKmlmXkky .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qOKmlmXkky .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qOKmlmXkky .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qOKmlmXkky .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qOKmlmXkky .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOKmlmXkky .underline .line {
    height: 2px;
  }
  .cid-qOKmlmXkky .mbr-title,
  .cid-qOKmlmXkky .underline,
  .cid-qOKmlmXkky .mbr-text,
  .cid-qOKmlmXkky .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOKmlmXkky .mbr-text,
.cid-qOKmlmXkky .mbr-section-btn {
  text-align: center;
  color: #67a1e5;
}
.cid-qOKmlmXkky .mbr-title,
.cid-qOKmlmXkky .underline {
  color: #67a1e5;
}
.cid-uPVXeMiYEU {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #67a1e5;
}
.cid-rfKhpgNNTT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rfKhpgNNTT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rfKhpgNNTT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rfKhpgNNTT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rfKhpgNNTT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rfKhpgNNTT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rfKhpgNNTT .icon-focus {
  display: none;
}
.cid-rfKhpgNNTT .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-rfKhpgNNTT ul {
  font-size: 0;
}
.cid-rfKhpgNNTT .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rfKhpgNNTT .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rfKhpgNNTT .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
}
.cid-rfKhpgNNTT .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rfKhpgNNTT .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rfKhpgNNTT .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-rfKhpgNNTT .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rfKhpgNNTT .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-rfKhpgNNTT .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rfKhpgNNTT .btn:hover {
  background: transparent !important;
}
.cid-rfKhpgNNTT .btn:hover:before {
  background: transparent !important;
}
.cid-rfKhpgNNTT .btn:before {
  background-color: transparent !important;
}
.cid-rfKhpgNNTT .btn:focus {
  box-shadow: none;
}
.cid-rfKhpgNNTT .mbr-section-title,
.cid-rfKhpgNNTT .underline {
  color: #000000;
}
.cid-qPqGPaRORK {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qPqGPaRORK .container-fluid {
  padding: 0 3rem;
}
.cid-qPqGPaRORK .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-qPqGPaRORK .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qPqGPaRORK .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qPqGPaRORK .card .card-wrapper {
  height: 1%;
}
.cid-qPqGPaRORK .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qPqGPaRORK .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qPqGPaRORK .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-qPqGPaRORK .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qPqGPaRORK .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qPqGPaRORK .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qPqGPaRORK .img-text {
  color: #ffffff;
}
.cid-qPqGPaRORK .mbr-section-title,
.cid-qPqGPaRORK .underline {
  color: #fe525b;
}
.cid-qPqGPaRORK .mbr-card-text,
.cid-qPqGPaRORK .mbr-section-btn {
  color: #000000;
}
.cid-qPqCo1baUi {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qPqCo1baUi .container-fluid {
  padding: 0 3rem;
}
.cid-qPqCo1baUi .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-qPqCo1baUi .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qPqCo1baUi .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qPqCo1baUi .card .card-wrapper {
  height: 1%;
}
.cid-qPqCo1baUi .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qPqCo1baUi .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qPqCo1baUi .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #16a16c;
}
.cid-qPqCo1baUi .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qPqCo1baUi .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qPqCo1baUi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qPqCo1baUi .img-text {
  color: #ffffff;
}
.cid-qPqCo1baUi .mbr-section-title,
.cid-qPqCo1baUi .underline {
  color: #16a16c;
}
.cid-qPqCo1baUi .mbr-card-text,
.cid-qPqCo1baUi .mbr-section-btn {
  color: #000000;
}
.cid-qOKoORyCSj {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qOKoORyCSj .container-fluid {
  padding: 0 3rem;
}
.cid-qOKoORyCSj .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-qOKoORyCSj .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qOKoORyCSj .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qOKoORyCSj .card .card-wrapper {
  height: 1%;
}
.cid-qOKoORyCSj .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qOKoORyCSj .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qOKoORyCSj .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ffffff;
}
.cid-qOKoORyCSj .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qOKoORyCSj .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qOKoORyCSj .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qOKoORyCSj .img-text {
  color: #232323;
}
.cid-qOKoORyCSj .mbr-card-text,
.cid-qOKoORyCSj .mbr-section-btn {
  color: #232323;
}
.cid-qOKoORyCSj .mbr-section-title,
.cid-qOKoORyCSj .underline {
  color: #465052;
}
.cid-qOKuTcZHwT {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffa0a4;
}
.cid-qOKuTcZHwT .container-fluid {
  padding: 0 3rem;
}
.cid-qOKuTcZHwT .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-qOKuTcZHwT .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qOKuTcZHwT .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qOKuTcZHwT .card .card-wrapper {
  height: 1%;
}
.cid-qOKuTcZHwT .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qOKuTcZHwT .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qOKuTcZHwT .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #bf5e63;
}
.cid-qOKuTcZHwT .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qOKuTcZHwT .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qOKuTcZHwT .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qOKuTcZHwT .img-text {
  color: #ffffff;
}
.cid-qOKuTcZHwT .mbr-section-title,
.cid-qOKuTcZHwT .underline {
  color: #ffffff;
}
.cid-qOKuTcZHwT .mbr-card-text,
.cid-qOKuTcZHwT .mbr-section-btn {
  color: #000000;
}
.cid-qOEsDYSUEi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  padding-left: 0;
  padding-right: 0;
}
.cid-qOEsDYSUEi ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-qOEsDYSUEi ul li {
  padding: 1rem 0;
}
.cid-qOEsDYSUEi ul li:hover {
  color: #67a1e5;
}
.cid-qOEsDYSUEi .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-qOEsDYSUEi .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-qOEsDYSUEi .google-map {
  height: 100%;
  position: relative;
}
.cid-qOEsDYSUEi .map {
  padding: 0;
  height: inherit !important;
}
.cid-qOEsDYSUEi .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.cid-qOEsDYSUEi .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
}
.cid-qOEsDYSUEi .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qOEsDYSUEi .social-list a:hover {
  opacity: 1;
}
.cid-qOEsDYSUEi .row-element,
.cid-qOEsDYSUEi .image-element {
  padding: 0;
}
.cid-qOEsDYSUEi .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qOEsDYSUEi .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qOEsDYSUEi .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qOEsDYSUEi .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qOEsDYSUEi .text-content {
    padding: 2rem 1rem;
  }
  .cid-qOEsDYSUEi .underline .line {
    height: 2px;
  }
  .cid-qOEsDYSUEi .mbr-title,
  .cid-qOEsDYSUEi .underline,
  .cid-qOEsDYSUEi .mbr-text,
  .cid-qOEsDYSUEi .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qOEsDYSUEi .mbr-title,
.cid-qOEsDYSUEi .underline {
  color: #000000;
  text-align: center;
}
.cid-qOEsDYSUEi .mbr-text,
.cid-qOEsDYSUEi .mbr-section-btn {
  color: #ffffff;
}
.cid-qOEsDYSUEi mbr-list LI {
  color: #ffffff;
}
.cid-qOEsDYSUEi mbr-list {
  text-align: center;
}
.cid-qOEsDYSUEi .mbr-list,
.cid-qOEsDYSUEi .social-list mbr-list {
  color: #465052;
}
.cid-qOEsDYSUEi .mbr-text P {
  color: #465052;
}
.cid-qOEsDYSUEi P {
  text-align: right;
}
.cid-uPz9Golkyr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPz9Golkyr .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPz9Golkyr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPz9Golkyr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPz9Golkyr .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPz9Golkyr .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPz9Golkyr .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPz9Golkyr .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPz9Golkyr .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPz9Golkyr .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPz9Golkyr .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uPW7VAXPi6.popup-builder {
  background-color: #ffffff;
}
.cid-uPW7VAXPi6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uPW7VAXPi6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uPW7VAXPi6 .modal-content,
.cid-uPW7VAXPi6 .modal-dialog {
  height: auto;
}
.cid-uPW7VAXPi6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPW7VAXPi6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uPW7VAXPi6 .form-wrapper .mbr-form .form-group,
  .cid-uPW7VAXPi6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uPW7VAXPi6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uPW7VAXPi6 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPW7VAXPi6 .mbr-text {
  text-align: center;
}
.cid-uPW7VAXPi6 .pt-0 {
  padding-top: 0 !important;
}
.cid-uPW7VAXPi6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uPW7VAXPi6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uPW7VAXPi6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uPW7VAXPi6 .modal-open {
  overflow: hidden;
}
.cid-uPW7VAXPi6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uPW7VAXPi6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uPW7VAXPi6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uPW7VAXPi6 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uPW7VAXPi6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uPW7VAXPi6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uPW7VAXPi6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uPW7VAXPi6 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uPW7VAXPi6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uPW7VAXPi6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uPW7VAXPi6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uPW7VAXPi6 .modal-backdrop.show {
  opacity: .5;
}
.cid-uPW7VAXPi6 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uPW7VAXPi6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uPW7VAXPi6 .modal-header {
    padding: 1rem;
  }
}
.cid-uPW7VAXPi6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uPW7VAXPi6 .modal-header .close svg {
  fill: #353535;
}
.cid-uPW7VAXPi6 .modal-header .close:hover {
  opacity: 1;
}
.cid-uPW7VAXPi6 .modal-header .close:focus {
  outline: none;
}
.cid-uPW7VAXPi6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uPW7VAXPi6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uPW7VAXPi6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPW7VAXPi6 .modal-body {
    padding: 1rem;
  }
}
.cid-uPW7VAXPi6 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uPW7VAXPi6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPW7VAXPi6 .modal-footer {
    padding: 1rem;
  }
}
.cid-uPW7VAXPi6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uPW7VAXPi6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uPW7VAXPi6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uPW7VAXPi6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uPW7VAXPi6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uPW7VAXPi6 .modal-lg,
  .cid-uPW7VAXPi6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uPW7VAXPi6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uPW7VAXPi6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uPW7VAXPi6 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uPW7VAXPi6 .form-group {
  margin-bottom: 1rem;
}
.cid-uPW7VAXPi6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uPW7VAXPi6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uPW7VAXPi6 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uPW7VAXPi6 .mbr-section-btn {
  margin: 0;
}
.cid-uPW7VAXPi6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uNviKhFZFb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNviKhFZFb nav.navbar {
  position: fixed;
}
.cid-uNviKhFZFb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNviKhFZFb .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uNviKhFZFb .dropdown-item:hover,
.cid-uNviKhFZFb .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uNviKhFZFb .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uNviKhFZFb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNviKhFZFb .nav-link {
  position: relative;
  padding: 0;
}
.cid-uNviKhFZFb .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uNviKhFZFb .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNviKhFZFb .dropdown-menu,
.cid-uNviKhFZFb .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uNviKhFZFb .nav-item:focus,
.cid-uNviKhFZFb .nav-link:focus {
  outline: none;
}
.cid-uNviKhFZFb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNviKhFZFb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNviKhFZFb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNviKhFZFb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNviKhFZFb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNviKhFZFb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNviKhFZFb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uNviKhFZFb .navbar.opened {
  transition: all 0.3s;
}
.cid-uNviKhFZFb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNviKhFZFb .navbar .navbar-logo img {
  width: auto;
}
.cid-uNviKhFZFb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNviKhFZFb .navbar.collapsed {
  justify-content: center;
}
.cid-uNviKhFZFb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNviKhFZFb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNviKhFZFb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uNviKhFZFb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNviKhFZFb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNviKhFZFb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uNviKhFZFb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNviKhFZFb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNviKhFZFb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNviKhFZFb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNviKhFZFb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNviKhFZFb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNviKhFZFb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNviKhFZFb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uNviKhFZFb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNviKhFZFb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNviKhFZFb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNviKhFZFb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNviKhFZFb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNviKhFZFb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uNviKhFZFb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNviKhFZFb .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uNviKhFZFb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNviKhFZFb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uNviKhFZFb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNviKhFZFb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNviKhFZFb .dropdown-item.active,
.cid-uNviKhFZFb .dropdown-item:active {
  background-color: transparent;
}
.cid-uNviKhFZFb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNviKhFZFb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNviKhFZFb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNviKhFZFb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uNviKhFZFb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNviKhFZFb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNviKhFZFb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNviKhFZFb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNviKhFZFb button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNviKhFZFb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uNviKhFZFb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNviKhFZFb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNviKhFZFb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNviKhFZFb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNviKhFZFb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNviKhFZFb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNviKhFZFb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNviKhFZFb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNviKhFZFb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNviKhFZFb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNviKhFZFb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNviKhFZFb .navbar {
    height: 70px;
  }
  .cid-uNviKhFZFb .navbar.opened {
    height: auto;
  }
  .cid-uNviKhFZFb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNviKhFZFb .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uNviKhFZFb .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uNviKhFZFb a {
  display: inline;
  font-weight: bold;
}
.cid-uNviKhFZFb img {
  display: inline;
  padding-right: 10px;
}
.cid-uNviKhFZFb .dropdown-toggle:after {
  display: none;
}
.cid-uNviKhFZFb .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uNviKhFZFb .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uNviKhFZFb .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uNzQhBcUXH {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/aigs-rentals-uhaul-img-9054-1160x520.jpg");
}
.cid-uNzQhBcUXH .container-fluid {
  padding: 0 3rem;
}
.cid-uNzQhBcUXH .media-container-column {
  padding: 0 2rem;
}
.cid-uNzQhBcUXH .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uNzQhBcUXH .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNzQhBcUXH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNzQhBcUXH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNviKulOKs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  padding-left: 0;
  padding-right: 0;
}
.cid-uNviKulOKs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uNviKulOKs ul li {
  padding: 1rem 0;
}
.cid-uNviKulOKs ul li:hover {
  color: #67a1e5;
}
.cid-uNviKulOKs .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-uNviKulOKs .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-uNviKulOKs .google-map {
  height: 100%;
  position: relative;
}
.cid-uNviKulOKs .map {
  padding: 0;
  height: inherit !important;
}
.cid-uNviKulOKs .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.cid-uNviKulOKs .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
}
.cid-uNviKulOKs .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uNviKulOKs .social-list a:hover {
  opacity: 1;
}
.cid-uNviKulOKs .row-element,
.cid-uNviKulOKs .image-element {
  padding: 0;
}
.cid-uNviKulOKs .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uNviKulOKs .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uNviKulOKs .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uNviKulOKs .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uNviKulOKs .text-content {
    padding: 2rem 1rem;
  }
  .cid-uNviKulOKs .underline .line {
    height: 2px;
  }
  .cid-uNviKulOKs .mbr-title,
  .cid-uNviKulOKs .underline,
  .cid-uNviKulOKs .mbr-text,
  .cid-uNviKulOKs .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNviKulOKs .mbr-title,
.cid-uNviKulOKs .underline {
  color: #ffffff;
}
.cid-uNviKulOKs .mbr-text,
.cid-uNviKulOKs .mbr-section-btn {
  color: #ffffff;
}
.cid-uNviKulOKs mbr-list LI {
  color: #ffffff;
}
.cid-uNviKulOKs mbr-list {
  text-align: center;
}
.cid-uNviKulOKs .mbr-list,
.cid-uNviKulOKs .social-list mbr-list {
  color: #465052;
}
.cid-uNviKulOKs .mbr-text P {
  color: #465052;
}
.cid-uNviKulOKs P {
  text-align: right;
  color: #bbbbbb;
}
.cid-uNviKuPauv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/img-0658.jpg-1440x1080.jpg");
  overflow: hidden !important;
}
.cid-uNviKuPauv .container-fluid {
  padding: 0 5rem;
}
.cid-uNviKuPauv .animated-element {
  color: #465052;
}
.cid-uNviKuPauv .img-block {
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-uNviKuPauv .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uNviKuPauv .container-fluid {
    padding: 0 1rem;
  }
  .cid-uNviKuPauv .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-uNviKuPauv .mbr-section-subtitle,
.cid-uNviKuPauv .mbr-section-btn {
  color: #ffffff;
}
.cid-uNviKuPauv .mbr-section-title {
  color: #ffffff;
}
.cid-uPz9Golkyr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPz9Golkyr .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPz9Golkyr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPz9Golkyr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPz9Golkyr .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPz9Golkyr .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPz9Golkyr .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPz9Golkyr .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPz9Golkyr .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPz9Golkyr .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPz9Golkyr .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uGC4IT5Up9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGC4IT5Up9 nav.navbar {
  position: fixed;
}
.cid-uGC4IT5Up9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGC4IT5Up9 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uGC4IT5Up9 .dropdown-item:hover,
.cid-uGC4IT5Up9 .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uGC4IT5Up9 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uGC4IT5Up9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGC4IT5Up9 .nav-link {
  position: relative;
  padding: 0;
}
.cid-uGC4IT5Up9 .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uGC4IT5Up9 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGC4IT5Up9 .dropdown-menu,
.cid-uGC4IT5Up9 .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uGC4IT5Up9 .nav-item:focus,
.cid-uGC4IT5Up9 .nav-link:focus {
  outline: none;
}
.cid-uGC4IT5Up9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGC4IT5Up9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGC4IT5Up9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGC4IT5Up9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGC4IT5Up9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGC4IT5Up9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGC4IT5Up9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uGC4IT5Up9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGC4IT5Up9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGC4IT5Up9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uGC4IT5Up9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGC4IT5Up9 .navbar.collapsed {
  justify-content: center;
}
.cid-uGC4IT5Up9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGC4IT5Up9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGC4IT5Up9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGC4IT5Up9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGC4IT5Up9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGC4IT5Up9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGC4IT5Up9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGC4IT5Up9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGC4IT5Up9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGC4IT5Up9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGC4IT5Up9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGC4IT5Up9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGC4IT5Up9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGC4IT5Up9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGC4IT5Up9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGC4IT5Up9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGC4IT5Up9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGC4IT5Up9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGC4IT5Up9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGC4IT5Up9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGC4IT5Up9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGC4IT5Up9 .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uGC4IT5Up9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGC4IT5Up9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGC4IT5Up9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGC4IT5Up9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGC4IT5Up9 .dropdown-item.active,
.cid-uGC4IT5Up9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGC4IT5Up9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGC4IT5Up9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGC4IT5Up9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGC4IT5Up9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uGC4IT5Up9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGC4IT5Up9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGC4IT5Up9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGC4IT5Up9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGC4IT5Up9 button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGC4IT5Up9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGC4IT5Up9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGC4IT5Up9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGC4IT5Up9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGC4IT5Up9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGC4IT5Up9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGC4IT5Up9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGC4IT5Up9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGC4IT5Up9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGC4IT5Up9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGC4IT5Up9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGC4IT5Up9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGC4IT5Up9 .navbar {
    height: 70px;
  }
  .cid-uGC4IT5Up9 .navbar.opened {
    height: auto;
  }
  .cid-uGC4IT5Up9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGC4IT5Up9 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uGC4IT5Up9 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uGC4IT5Up9 a {
  display: inline;
  font-weight: bold;
}
.cid-uGC4IT5Up9 img {
  display: inline;
  padding-right: 10px;
}
.cid-uGC4IT5Up9 .dropdown-toggle:after {
  display: none;
}
.cid-uGC4IT5Up9 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uGC4IT5Up9 .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uGC4IT5Up9 .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uGC4J007NZ {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/img-1106.jpg-1440x1080.jpeg");
}
.cid-uGC4J007NZ p {
  color: #767676;
}
.cid-uGC4J007NZ .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uGC4J007NZ .main {
  flex-direction: row-reverse;
}
.cid-uGC4J007NZ .row-element,
.cid-uGC4J007NZ .image-element {
  padding: 0;
}
.cid-uGC4J007NZ .img-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.cid-uGC4J007NZ .image-element {
  display: flex;
  justify-content: center;
}
.cid-uGC4J007NZ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uGC4J007NZ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGC4J007NZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uGC4J007NZ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uGC4J007NZ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGC4J007NZ .text-content {
    padding: 2rem 1rem;
  }
  .cid-uGC4J007NZ .underline .line {
    height: 2px;
  }
  .cid-uGC4J007NZ .mbr-title,
  .cid-uGC4J007NZ .underline,
  .cid-uGC4J007NZ .mbr-text,
  .cid-uGC4J007NZ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uGC4J007NZ .mbr-text,
.cid-uGC4J007NZ .mbr-section-btn {
  color: #ffffff;
}
.cid-uGC4J007NZ .mbr-title,
.cid-uGC4J007NZ .underline {
  color: #16a16c;
}
.cid-uGC4J47R1a {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #bf5e63;
}
.cid-uGC4J47R1a .container-fluid {
  padding: 0 3rem;
}
.cid-uGC4J47R1a .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uGC4J47R1a .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uGC4J47R1a .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uGC4J47R1a .card .card-wrapper {
  height: 1%;
}
.cid-uGC4J47R1a .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uGC4J47R1a .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uGC4J47R1a .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #55b993;
}
.cid-uGC4J47R1a .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uGC4J47R1a .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uGC4J47R1a .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uGC4J47R1a .img-text {
  color: #ffffff;
}
.cid-uGC4J47R1a .mbr-card-text,
.cid-uGC4J47R1a .mbr-section-btn {
  color: #ffffff;
}
.cid-uGC4J47R1a .mbr-section-title,
.cid-uGC4J47R1a .underline {
  color: #ffffff;
}
.cid-uGC4IZzNyw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffa0a4;
}
.cid-uGC4IZzNyw p {
  color: #767676;
}
.cid-uGC4IZzNyw .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uGC4IZzNyw .row-element,
.cid-uGC4IZzNyw .image-element {
  padding: 0;
}
.cid-uGC4IZzNyw .image-element {
  display: flex;
  justify-content: center;
}
.cid-uGC4IZzNyw .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uGC4IZzNyw .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGC4IZzNyw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uGC4IZzNyw .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uGC4IZzNyw .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGC4IZzNyw .text-content {
    padding: 2rem 1rem;
  }
  .cid-uGC4IZzNyw .underline .line {
    height: 2px;
  }
  .cid-uGC4IZzNyw .mbr-title,
  .cid-uGC4IZzNyw .underline,
  .cid-uGC4IZzNyw .mbr-text,
  .cid-uGC4IZzNyw .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uGC4IZzNyw .mbr-text,
.cid-uGC4IZzNyw .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uGC4IZzNyw .mbr-title,
.cid-uGC4IZzNyw .underline {
  color: #ffffff;
}
.cid-uNzIKgt05D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-20250607-231130.jpg-1280x1069.jpg");
}
.cid-uNzIKgt05D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNzIKgt05D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNzIKgt05D .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uNzIKgt05D .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uNzIKgt05D .title-wrapper .mbr-label {
  margin-bottom: 22px;
}
.cid-uNzIKgt05D .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNzIKgt05D .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-uNzIKgt05D .items-wrapper {
  justify-content: center;
  margin: 0 -24px;
}
.cid-uNzIKgt05D .items-wrapper .item {
  padding: 0 24px;
  margin-bottom: 82px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uNzIKgt05D .items-wrapper .item {
    margin-bottom: 32px;
  }
}
.cid-uNzIKgt05D .items-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uNzIKgt05D .items-wrapper .item .item-wrapper {
    padding-right: 0;
    display: block;
  }
}
.cid-uNzIKgt05D .items-wrapper .item .item-wrapper .iconfont-wrapper {
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uNzIKgt05D .items-wrapper .item .item-wrapper .iconfont-wrapper {
    padding-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uNzIKgt05D .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  display: inline-block;
  font-size: 104px;
  color: #fe525b;
}
@media (max-width: 1640px) {
  .cid-uNzIKgt05D .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
    font-size: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-uNzIKgt05D .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
    font-size: 48px;
  }
}
.cid-uNzIKgt05D .items-wrapper .item .item-wrapper .item-content {
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uNzIKgt05D .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
  }
}
.cid-uNzIKgt05D .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-uNzIKgt05D .mbr-label {
  color: #fe525b;
  text-align: center;
}
.cid-uNzIKgt05D .mbr-section-title {
  color: #c10b02;
}
.cid-uNzIKgt05D .item-title {
  color: #1ba1e2;
}
.cid-uNzIKgt05D .mbr-section-title,
.cid-uNzIKgt05D .title-wrap {
  color: #150764;
  text-align: center;
}
.cid-uNzGXFBIQb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #c54e33;
}
.cid-uNzGXFBIQb p {
  color: #767676;
}
.cid-uNzGXFBIQb .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uNzGXFBIQb .main {
  flex-direction: row-reverse;
}
.cid-uNzGXFBIQb .row-element,
.cid-uNzGXFBIQb .image-element {
  padding: 0;
}
.cid-uNzGXFBIQb .image-element {
  display: flex;
  justify-content: center;
}
.cid-uNzGXFBIQb .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uNzGXFBIQb .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uNzGXFBIQb .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uNzGXFBIQb .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uNzGXFBIQb .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uNzGXFBIQb .text-content {
    padding: 2rem 1rem;
  }
  .cid-uNzGXFBIQb .underline .line {
    height: 2px;
  }
  .cid-uNzGXFBIQb .mbr-title,
  .cid-uNzGXFBIQb .underline,
  .cid-uNzGXFBIQb .mbr-text,
  .cid-uNzGXFBIQb .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNzGXFBIQb .mbr-text,
.cid-uNzGXFBIQb .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uNzGXFBIQb .mbr-title,
.cid-uNzGXFBIQb .underline {
  color: #ffffff;
}
.cid-uNzOC4HkJg {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #a6422b;
}
.cid-uNzOC4HkJg .container-fluid {
  padding: 0 3rem;
}
.cid-uNzOC4HkJg .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uNzOC4HkJg .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uNzOC4HkJg .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNzOC4HkJg .card .card-wrapper {
  height: 1%;
}
.cid-uNzOC4HkJg .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNzOC4HkJg .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNzOC4HkJg .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #c54e33;
}
.cid-uNzOC4HkJg .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNzOC4HkJg .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNzOC4HkJg .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNzOC4HkJg .img-text {
  color: #ffffff;
}
.cid-uNzOC4HkJg .mbr-card-text,
.cid-uNzOC4HkJg .mbr-section-btn {
  color: #ffffff;
}
.cid-uNzOC4HkJg .mbr-section-title,
.cid-uNzOC4HkJg .underline {
  color: #ffffff;
}
.cid-uPz9Golkyr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPz9Golkyr .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPz9Golkyr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPz9Golkyr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPz9Golkyr .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPz9Golkyr .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPz9Golkyr .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPz9Golkyr .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPz9Golkyr .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPz9Golkyr .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPz9Golkyr .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uGdrMyOK6m {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGdrMyOK6m nav.navbar {
  position: fixed;
}
.cid-uGdrMyOK6m .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGdrMyOK6m .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uGdrMyOK6m .dropdown-item:hover,
.cid-uGdrMyOK6m .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uGdrMyOK6m .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uGdrMyOK6m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGdrMyOK6m .nav-link {
  position: relative;
  padding: 0;
}
.cid-uGdrMyOK6m .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uGdrMyOK6m .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGdrMyOK6m .dropdown-menu,
.cid-uGdrMyOK6m .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uGdrMyOK6m .nav-item:focus,
.cid-uGdrMyOK6m .nav-link:focus {
  outline: none;
}
.cid-uGdrMyOK6m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGdrMyOK6m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGdrMyOK6m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGdrMyOK6m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGdrMyOK6m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGdrMyOK6m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGdrMyOK6m .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uGdrMyOK6m .navbar.opened {
  transition: all 0.3s;
}
.cid-uGdrMyOK6m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGdrMyOK6m .navbar .navbar-logo img {
  width: auto;
}
.cid-uGdrMyOK6m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGdrMyOK6m .navbar.collapsed {
  justify-content: center;
}
.cid-uGdrMyOK6m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGdrMyOK6m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGdrMyOK6m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGdrMyOK6m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGdrMyOK6m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGdrMyOK6m .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGdrMyOK6m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGdrMyOK6m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGdrMyOK6m .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGdrMyOK6m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGdrMyOK6m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGdrMyOK6m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGdrMyOK6m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGdrMyOK6m .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGdrMyOK6m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGdrMyOK6m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGdrMyOK6m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGdrMyOK6m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGdrMyOK6m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGdrMyOK6m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGdrMyOK6m .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGdrMyOK6m .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uGdrMyOK6m .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGdrMyOK6m .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGdrMyOK6m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGdrMyOK6m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGdrMyOK6m .dropdown-item.active,
.cid-uGdrMyOK6m .dropdown-item:active {
  background-color: transparent;
}
.cid-uGdrMyOK6m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGdrMyOK6m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGdrMyOK6m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGdrMyOK6m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uGdrMyOK6m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGdrMyOK6m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGdrMyOK6m ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGdrMyOK6m .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGdrMyOK6m button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGdrMyOK6m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGdrMyOK6m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGdrMyOK6m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGdrMyOK6m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGdrMyOK6m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGdrMyOK6m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGdrMyOK6m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGdrMyOK6m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGdrMyOK6m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGdrMyOK6m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGdrMyOK6m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGdrMyOK6m .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGdrMyOK6m .navbar {
    height: 70px;
  }
  .cid-uGdrMyOK6m .navbar.opened {
    height: auto;
  }
  .cid-uGdrMyOK6m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGdrMyOK6m .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uGdrMyOK6m .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uGdrMyOK6m a {
  display: inline;
  font-weight: bold;
}
.cid-uGdrMyOK6m img {
  display: inline;
  padding-right: 10px;
}
.cid-uGdrMyOK6m .dropdown-toggle:after {
  display: none;
}
.cid-uGdrMyOK6m .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uGdrMyOK6m .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uGdrMyOK6m .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uNzVeCGfKY {
  overflow: hidden !important;
  background-image: url("../../../assets/images/aigs-exterior-2-img-9045-2000x887.jpg");
}
.cid-uNzVeCGfKY .container-fluid {
  padding: 0 3rem;
}
.cid-uNzVeCGfKY .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-uNzVeCGfKY .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNzVeCGfKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNzVeCGfKY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPz9Golkyr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPz9Golkyr .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPz9Golkyr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPz9Golkyr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPz9Golkyr .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPz9Golkyr .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPz9Golkyr .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPz9Golkyr .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPz9Golkyr .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPz9Golkyr .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPz9Golkyr .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uNz9GkeiZh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNz9GkeiZh nav.navbar {
  position: fixed;
}
.cid-uNz9GkeiZh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNz9GkeiZh .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uNz9GkeiZh .dropdown-item:hover,
.cid-uNz9GkeiZh .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uNz9GkeiZh .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uNz9GkeiZh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNz9GkeiZh .nav-link {
  position: relative;
  padding: 0;
}
.cid-uNz9GkeiZh .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uNz9GkeiZh .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNz9GkeiZh .dropdown-menu,
.cid-uNz9GkeiZh .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uNz9GkeiZh .nav-item:focus,
.cid-uNz9GkeiZh .nav-link:focus {
  outline: none;
}
.cid-uNz9GkeiZh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNz9GkeiZh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNz9GkeiZh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNz9GkeiZh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNz9GkeiZh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNz9GkeiZh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNz9GkeiZh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uNz9GkeiZh .navbar.opened {
  transition: all 0.3s;
}
.cid-uNz9GkeiZh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNz9GkeiZh .navbar .navbar-logo img {
  width: auto;
}
.cid-uNz9GkeiZh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNz9GkeiZh .navbar.collapsed {
  justify-content: center;
}
.cid-uNz9GkeiZh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNz9GkeiZh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNz9GkeiZh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uNz9GkeiZh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNz9GkeiZh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNz9GkeiZh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uNz9GkeiZh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNz9GkeiZh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNz9GkeiZh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNz9GkeiZh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNz9GkeiZh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNz9GkeiZh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNz9GkeiZh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNz9GkeiZh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uNz9GkeiZh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNz9GkeiZh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNz9GkeiZh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNz9GkeiZh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNz9GkeiZh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNz9GkeiZh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uNz9GkeiZh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNz9GkeiZh .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uNz9GkeiZh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNz9GkeiZh .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uNz9GkeiZh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNz9GkeiZh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNz9GkeiZh .dropdown-item.active,
.cid-uNz9GkeiZh .dropdown-item:active {
  background-color: transparent;
}
.cid-uNz9GkeiZh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNz9GkeiZh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNz9GkeiZh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNz9GkeiZh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uNz9GkeiZh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNz9GkeiZh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNz9GkeiZh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNz9GkeiZh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNz9GkeiZh button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNz9GkeiZh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uNz9GkeiZh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNz9GkeiZh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNz9GkeiZh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNz9GkeiZh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNz9GkeiZh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNz9GkeiZh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNz9GkeiZh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNz9GkeiZh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNz9GkeiZh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uNz9GkeiZh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNz9GkeiZh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNz9GkeiZh .navbar {
    height: 70px;
  }
  .cid-uNz9GkeiZh .navbar.opened {
    height: auto;
  }
  .cid-uNz9GkeiZh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNz9GkeiZh .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uNz9GkeiZh .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uNz9GkeiZh a {
  display: inline;
  font-weight: bold;
}
.cid-uNz9GkeiZh img {
  display: inline;
  padding-right: 10px;
}
.cid-uNz9GkeiZh .dropdown-toggle:after {
  display: none;
}
.cid-uNz9GkeiZh .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uNz9GkeiZh .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uNz9GkeiZh .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uNzAMWfCtg {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/img-0653.jpg-1440x1080.jpg");
}
.cid-uNzAMWfCtg .container-fluid {
  padding: 0 3rem;
}
.cid-uNzAMWfCtg .media-container-column {
  padding: 0 2rem;
}
.cid-uNzAMWfCtg .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uNzAMWfCtg .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNzAMWfCtg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNzAMWfCtg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNz9GrcesS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #767676;
}
.cid-uNz9GrcesS p {
  color: #767676;
}
.cid-uNz9GrcesS .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uNz9GrcesS .main {
  flex-direction: row-reverse;
}
.cid-uNz9GrcesS .row-element,
.cid-uNz9GrcesS .image-element {
  padding: 0;
}
.cid-uNz9GrcesS .image-element {
  display: flex;
  justify-content: center;
}
.cid-uNz9GrcesS .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uNz9GrcesS .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uNz9GrcesS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uNz9GrcesS .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uNz9GrcesS .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uNz9GrcesS .text-content {
    padding: 2rem 1rem;
  }
  .cid-uNz9GrcesS .underline .line {
    height: 2px;
  }
  .cid-uNz9GrcesS .mbr-title,
  .cid-uNz9GrcesS .underline,
  .cid-uNz9GrcesS .mbr-text,
  .cid-uNz9GrcesS .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNz9GrcesS .mbr-text,
.cid-uNz9GrcesS .mbr-section-btn {
  text-align: center;
  color: #ffef00;
}
.cid-uNz9GrcesS .mbr-title,
.cid-uNz9GrcesS .underline {
  color: #ffffff;
}
.cid-uNz9GrHGJp {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uNz9GrHGJp .container-fluid {
  padding: 0 3rem;
}
.cid-uNz9GrHGJp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uNz9GrHGJp .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uNz9GrHGJp .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNz9GrHGJp .card .card-wrapper {
  height: 1%;
}
.cid-uNz9GrHGJp .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNz9GrHGJp .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNz9GrHGJp .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #096693;
}
.cid-uNz9GrHGJp .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNz9GrHGJp .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNz9GrHGJp .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNz9GrHGJp .img-text {
  color: #ffffff;
}
.cid-uNz9GrHGJp .mbr-section-title,
.cid-uNz9GrHGJp .underline {
  color: #ffffff;
}
.cid-uNz9GrHGJp .mbr-card-text,
.cid-uNz9GrHGJp .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uNz9GsR8zn {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1268d7;
}
.cid-uNz9GsR8zn .container-fluid {
  padding: 0 3rem;
}
.cid-uNz9GsR8zn .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uNz9GsR8zn .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uNz9GsR8zn .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNz9GsR8zn .card .card-wrapper {
  height: 1%;
}
.cid-uNz9GsR8zn .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNz9GsR8zn .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNz9GsR8zn .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #16a16c;
}
.cid-uNz9GsR8zn .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNz9GsR8zn .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNz9GsR8zn .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNz9GsR8zn .img-text {
  color: #ffffff;
}
.cid-uNz9GsR8zn .mbr-card-text,
.cid-uNz9GsR8zn .mbr-section-btn {
  color: #e3e6c1;
}
.cid-uNz9GsR8zn .mbr-section-title,
.cid-uNz9GsR8zn .underline {
  color: #ffffff;
}
.cid-uNz9GshEuE {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #bbbbbb;
}
.cid-uNz9GshEuE .container-fluid {
  padding: 0 3rem;
}
.cid-uNz9GshEuE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uNz9GshEuE .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uNz9GshEuE .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNz9GshEuE .card .card-wrapper {
  height: 1%;
}
.cid-uNz9GshEuE .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNz9GshEuE .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNz9GshEuE .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #767676;
}
.cid-uNz9GshEuE .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNz9GshEuE .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNz9GshEuE .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNz9GshEuE .img-text {
  color: #ffffff;
}
.cid-uNz9GshEuE .mbr-section-title,
.cid-uNz9GshEuE .underline {
  color: #000000;
}
.cid-uNz9GshEuE .mbr-card-text,
.cid-uNz9GshEuE .mbr-section-btn {
  color: #000000;
}
.cid-uPz9Golkyr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPz9Golkyr .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPz9Golkyr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPz9Golkyr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPz9Golkyr .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPz9Golkyr .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPz9Golkyr .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPz9Golkyr .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPz9Golkyr .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPz9Golkyr .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPz9Golkyr .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uKyZiaXlmU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKyZiaXlmU nav.navbar {
  position: fixed;
}
.cid-uKyZiaXlmU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKyZiaXlmU .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uKyZiaXlmU .dropdown-item:hover,
.cid-uKyZiaXlmU .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uKyZiaXlmU .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uKyZiaXlmU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKyZiaXlmU .nav-link {
  position: relative;
  padding: 0;
}
.cid-uKyZiaXlmU .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uKyZiaXlmU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKyZiaXlmU .dropdown-menu,
.cid-uKyZiaXlmU .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uKyZiaXlmU .nav-item:focus,
.cid-uKyZiaXlmU .nav-link:focus {
  outline: none;
}
.cid-uKyZiaXlmU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKyZiaXlmU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKyZiaXlmU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKyZiaXlmU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKyZiaXlmU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKyZiaXlmU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKyZiaXlmU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uKyZiaXlmU .navbar.opened {
  transition: all 0.3s;
}
.cid-uKyZiaXlmU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKyZiaXlmU .navbar .navbar-logo img {
  width: auto;
}
.cid-uKyZiaXlmU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKyZiaXlmU .navbar.collapsed {
  justify-content: center;
}
.cid-uKyZiaXlmU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKyZiaXlmU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKyZiaXlmU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uKyZiaXlmU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKyZiaXlmU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKyZiaXlmU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKyZiaXlmU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKyZiaXlmU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKyZiaXlmU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKyZiaXlmU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKyZiaXlmU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKyZiaXlmU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKyZiaXlmU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKyZiaXlmU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKyZiaXlmU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKyZiaXlmU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKyZiaXlmU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKyZiaXlmU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKyZiaXlmU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKyZiaXlmU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKyZiaXlmU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKyZiaXlmU .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uKyZiaXlmU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKyZiaXlmU .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKyZiaXlmU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKyZiaXlmU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKyZiaXlmU .dropdown-item.active,
.cid-uKyZiaXlmU .dropdown-item:active {
  background-color: transparent;
}
.cid-uKyZiaXlmU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKyZiaXlmU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKyZiaXlmU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKyZiaXlmU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uKyZiaXlmU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKyZiaXlmU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKyZiaXlmU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKyZiaXlmU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKyZiaXlmU button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKyZiaXlmU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKyZiaXlmU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKyZiaXlmU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKyZiaXlmU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKyZiaXlmU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKyZiaXlmU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKyZiaXlmU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKyZiaXlmU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKyZiaXlmU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKyZiaXlmU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKyZiaXlmU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKyZiaXlmU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKyZiaXlmU .navbar {
    height: 70px;
  }
  .cid-uKyZiaXlmU .navbar.opened {
    height: auto;
  }
  .cid-uKyZiaXlmU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKyZiaXlmU .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uKyZiaXlmU .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uKyZiaXlmU a {
  display: inline;
  font-weight: bold;
}
.cid-uKyZiaXlmU img {
  display: inline;
  padding-right: 10px;
}
.cid-uKyZiaXlmU .dropdown-toggle:after {
  display: none;
}
.cid-uKyZiaXlmU .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uKyZiaXlmU .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uKyZiaXlmU .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uNvAjtXFMF {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-0658.jpg-1440x1080.jpg");
}
.cid-uNvAjtXFMF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNvAjtXFMF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNvAjtXFMF .row {
  justify-content: space-between;
}
.cid-uNvAjtXFMF .title-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uNvAjtXFMF .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uNvAjtXFMF .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #67a1e5;
}
.cid-uNvAjtXFMF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNvAjtXFMF .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  flex-direction: column;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uNvAjtXFMF .tabs-wrapper .nav.nav-tabs {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uNvAjtXFMF .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-top: 0;
}
.cid-uNvAjtXFMF .tabs-wrapper .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uNvAjtXFMF .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  position: relative;
  color: #67a1e5;
  padding: 20px 0;
  border: none;
  border-top: 1px solid #e0e0e0;
  box-shadow: none;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
  border-radius: 0 !important;
}
.cid-uNvAjtXFMF .tabs-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uNvAjtXFMF .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  color: #ffffff;
}
.cid-uNvAjtXFMF .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  width: 100%;
}
.cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .card-wrapper {
  position: relative;
  margin-bottom: 30px;
  will-change: transform;
  animation: none !important;
}
@media (max-width: 992px) {
  .cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .card-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .card-wrapper .image-wrap img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .card-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .card-wrapper .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 60px;
  background-color: "file:///C:/Users/chris/AppData/Local/Mobirise.com/Mobirise/projects/project-2025-06-07_224734/assets/images/img-0658.jpg-1440x1080.jpg";
  border-top-right-radius: 30px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .card-wrapper .decor-wrap {
    width: 120px;
  }
}
.cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .card-wrapper .decor-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-bottom-left-radius: 30px;
  box-shadow: -10px 10px 0 10px "file:///C:/Users/chris/AppData/Local/Mobirise.com/Mobirise/projects/project-2025-06-07_224734/assets/images/img-0658.jpg-1440x1080.jpg";
}
.cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .card-wrapper .decor-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-bottom-left-radius: 30px;
  box-shadow: -10px 10px 0 10px "file:///C:/Users/chris/AppData/Local/Mobirise.com/Mobirise/projects/project-2025-06-07_224734/assets/images/img-0658.jpg-1440x1080.jpg";
}
.cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .text-wrap .item-title {
  margin-bottom: 20px;
}
.cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uNvAjtXFMF .tab-content .tab-pane .content-wrap .text-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-uNvAjtXFMF .mbr-label {
  color: #000000;
}
.cid-uNvAjtXFMF .mbr-section-title {
  color: #000000;
}
.cid-uNvAjtXFMF .item-title {
  color: #000000;
}
.cid-uNvAjtXFMF .item-text {
  color: #ffffff;
}
.cid-uNvAjtXFMF .mbr-section-title,
.cid-uNvAjtXFMF .tabs-wrapper {
  color: #ffffff;
}
.cid-uNvAjtXFMF .mbr-label,
.cid-uNvAjtXFMF .label-wrapper {
  color: #ffffff;
}
.cid-uNvAjtXFMF .item-title,
.cid-uNvAjtXFMF .mbr-section-btn {
  color: #ffffff;
}
.cid-uKyZiilbUk {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uKyZiilbUk .container-fluid {
  padding: 0 3rem;
}
.cid-uKyZiilbUk .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uKyZiilbUk .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uKyZiilbUk .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uKyZiilbUk .card .card-wrapper {
  height: 1%;
}
.cid-uKyZiilbUk .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uKyZiilbUk .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uKyZiilbUk .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #67a1e5;
}
.cid-uKyZiilbUk .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uKyZiilbUk .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uKyZiilbUk .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uKyZiilbUk .img-text {
  color: #ffffff;
}
.cid-uKyZiilbUk .mbr-section-title,
.cid-uKyZiilbUk .underline {
  color: #67a1e5;
}
.cid-uKyZiilbUk .mbr-card-text,
.cid-uKyZiilbUk .mbr-section-btn {
  color: #ffffff;
}
.cid-uKyZiiMWbV {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uKyZiiMWbV .container-fluid {
  padding: 0 3rem;
}
.cid-uKyZiiMWbV .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uKyZiiMWbV .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uKyZiiMWbV .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uKyZiiMWbV .card .card-wrapper {
  height: 1%;
}
.cid-uKyZiiMWbV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uKyZiiMWbV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uKyZiiMWbV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ffffff;
}
.cid-uKyZiiMWbV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uKyZiiMWbV .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uKyZiiMWbV .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uKyZiiMWbV .img-text {
  color: #232323;
}
.cid-uKyZiiMWbV .mbr-card-text,
.cid-uKyZiiMWbV .mbr-section-btn {
  color: #ffffff;
}
.cid-uKyZiiMWbV .mbr-section-title,
.cid-uKyZiiMWbV .underline {
  color: #ffffff;
}
.cid-uPz9Golkyr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPz9Golkyr .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPz9Golkyr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPz9Golkyr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPz9Golkyr .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPz9Golkyr .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPz9Golkyr .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPz9Golkyr .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPz9Golkyr .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPz9Golkyr .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPz9Golkyr .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uI1nYvB6kz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uI1nYvB6kz nav.navbar {
  position: fixed;
}
.cid-uI1nYvB6kz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI1nYvB6kz .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uI1nYvB6kz .dropdown-item:hover,
.cid-uI1nYvB6kz .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uI1nYvB6kz .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uI1nYvB6kz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uI1nYvB6kz .nav-link {
  position: relative;
  padding: 0;
}
.cid-uI1nYvB6kz .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uI1nYvB6kz .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uI1nYvB6kz .dropdown-menu,
.cid-uI1nYvB6kz .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uI1nYvB6kz .nav-item:focus,
.cid-uI1nYvB6kz .nav-link:focus {
  outline: none;
}
.cid-uI1nYvB6kz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI1nYvB6kz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI1nYvB6kz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uI1nYvB6kz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI1nYvB6kz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI1nYvB6kz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI1nYvB6kz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uI1nYvB6kz .navbar.opened {
  transition: all 0.3s;
}
.cid-uI1nYvB6kz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uI1nYvB6kz .navbar .navbar-logo img {
  width: auto;
}
.cid-uI1nYvB6kz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uI1nYvB6kz .navbar.collapsed {
  justify-content: center;
}
.cid-uI1nYvB6kz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uI1nYvB6kz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uI1nYvB6kz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uI1nYvB6kz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uI1nYvB6kz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uI1nYvB6kz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uI1nYvB6kz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uI1nYvB6kz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uI1nYvB6kz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uI1nYvB6kz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uI1nYvB6kz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uI1nYvB6kz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uI1nYvB6kz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uI1nYvB6kz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uI1nYvB6kz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uI1nYvB6kz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uI1nYvB6kz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uI1nYvB6kz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uI1nYvB6kz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uI1nYvB6kz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uI1nYvB6kz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uI1nYvB6kz .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uI1nYvB6kz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uI1nYvB6kz .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uI1nYvB6kz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uI1nYvB6kz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uI1nYvB6kz .dropdown-item.active,
.cid-uI1nYvB6kz .dropdown-item:active {
  background-color: transparent;
}
.cid-uI1nYvB6kz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uI1nYvB6kz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uI1nYvB6kz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uI1nYvB6kz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uI1nYvB6kz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uI1nYvB6kz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI1nYvB6kz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uI1nYvB6kz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uI1nYvB6kz button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uI1nYvB6kz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uI1nYvB6kz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI1nYvB6kz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI1nYvB6kz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI1nYvB6kz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI1nYvB6kz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI1nYvB6kz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI1nYvB6kz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI1nYvB6kz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI1nYvB6kz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uI1nYvB6kz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uI1nYvB6kz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uI1nYvB6kz .navbar {
    height: 70px;
  }
  .cid-uI1nYvB6kz .navbar.opened {
    height: auto;
  }
  .cid-uI1nYvB6kz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uI1nYvB6kz .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uI1nYvB6kz .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uI1nYvB6kz a {
  display: inline;
  font-weight: bold;
}
.cid-uI1nYvB6kz img {
  display: inline;
  padding-right: 10px;
}
.cid-uI1nYvB6kz .dropdown-toggle:after {
  display: none;
}
.cid-uI1nYvB6kz .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uI1nYvB6kz .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uI1nYvB6kz .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uI1nYzIjqC {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uI1nYzIjqC p {
  color: #767676;
}
.cid-uI1nYzIjqC .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uI1nYzIjqC .main {
  flex-direction: row-reverse;
}
.cid-uI1nYzIjqC .row-element,
.cid-uI1nYzIjqC .image-element {
  padding: 0;
}
.cid-uI1nYzIjqC .image-element {
  display: flex;
  justify-content: center;
}
.cid-uI1nYzIjqC .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uI1nYzIjqC .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uI1nYzIjqC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uI1nYzIjqC .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uI1nYzIjqC .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uI1nYzIjqC .text-content {
    padding: 2rem 1rem;
  }
  .cid-uI1nYzIjqC .underline .line {
    height: 2px;
  }
  .cid-uI1nYzIjqC .mbr-title,
  .cid-uI1nYzIjqC .underline,
  .cid-uI1nYzIjqC .mbr-text,
  .cid-uI1nYzIjqC .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uI1nYzIjqC .mbr-text,
.cid-uI1nYzIjqC .mbr-section-btn {
  color: #000000;
}
.cid-uI1nYzIjqC .mbr-title,
.cid-uI1nYzIjqC .underline {
  color: #fe525b;
}
#Custom_EmbeddedUSPS {
  /* Type valid CSS here */
}
#Custom_EmbeddedUSPS div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#Custom_EmbeddedUSPS p {
  font-size: 60px;
  color: #777;
}
.cid-uPz9Golkyr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPz9Golkyr .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPz9Golkyr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPz9Golkyr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPz9Golkyr .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPz9Golkyr .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPz9Golkyr .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPz9Golkyr .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPz9Golkyr .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPz9Golkyr .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPz9Golkyr .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uGC41xPm3U {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGC41xPm3U nav.navbar {
  position: fixed;
}
.cid-uGC41xPm3U .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGC41xPm3U .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uGC41xPm3U .dropdown-item:hover,
.cid-uGC41xPm3U .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uGC41xPm3U .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uGC41xPm3U .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGC41xPm3U .nav-link {
  position: relative;
  padding: 0;
}
.cid-uGC41xPm3U .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uGC41xPm3U .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGC41xPm3U .dropdown-menu,
.cid-uGC41xPm3U .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uGC41xPm3U .nav-item:focus,
.cid-uGC41xPm3U .nav-link:focus {
  outline: none;
}
.cid-uGC41xPm3U .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGC41xPm3U .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGC41xPm3U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGC41xPm3U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGC41xPm3U .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGC41xPm3U .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGC41xPm3U .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uGC41xPm3U .navbar.opened {
  transition: all 0.3s;
}
.cid-uGC41xPm3U .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGC41xPm3U .navbar .navbar-logo img {
  width: auto;
}
.cid-uGC41xPm3U .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGC41xPm3U .navbar.collapsed {
  justify-content: center;
}
.cid-uGC41xPm3U .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGC41xPm3U .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGC41xPm3U .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGC41xPm3U .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGC41xPm3U .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGC41xPm3U .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGC41xPm3U .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGC41xPm3U .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGC41xPm3U .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGC41xPm3U .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGC41xPm3U .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGC41xPm3U .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGC41xPm3U .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGC41xPm3U .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGC41xPm3U .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGC41xPm3U .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGC41xPm3U .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGC41xPm3U .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGC41xPm3U .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGC41xPm3U .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGC41xPm3U .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGC41xPm3U .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uGC41xPm3U .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGC41xPm3U .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGC41xPm3U .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGC41xPm3U .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGC41xPm3U .dropdown-item.active,
.cid-uGC41xPm3U .dropdown-item:active {
  background-color: transparent;
}
.cid-uGC41xPm3U .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGC41xPm3U .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGC41xPm3U .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGC41xPm3U .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uGC41xPm3U .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGC41xPm3U .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGC41xPm3U ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGC41xPm3U .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGC41xPm3U button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGC41xPm3U button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGC41xPm3U button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGC41xPm3U button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGC41xPm3U button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGC41xPm3U button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGC41xPm3U nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGC41xPm3U nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGC41xPm3U nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGC41xPm3U nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGC41xPm3U .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGC41xPm3U a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGC41xPm3U .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGC41xPm3U .navbar {
    height: 70px;
  }
  .cid-uGC41xPm3U .navbar.opened {
    height: auto;
  }
  .cid-uGC41xPm3U .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGC41xPm3U .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uGC41xPm3U .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uGC41xPm3U a {
  display: inline;
  font-weight: bold;
}
.cid-uGC41xPm3U img {
  display: inline;
  padding-right: 10px;
}
.cid-uGC41xPm3U .dropdown-toggle:after {
  display: none;
}
.cid-uGC41xPm3U .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uGC41xPm3U .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uGC41xPm3U .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uGC41DFMOp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #1268d7;
}
.cid-uGC41DFMOp p {
  color: #767676;
}
.cid-uGC41DFMOp .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uGC41DFMOp .main {
  flex-direction: row-reverse;
}
.cid-uGC41DFMOp .row-element,
.cid-uGC41DFMOp .image-element {
  padding: 0;
}
.cid-uGC41DFMOp .image-element {
  display: flex;
  justify-content: center;
}
.cid-uGC41DFMOp .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uGC41DFMOp .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGC41DFMOp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uGC41DFMOp .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uGC41DFMOp .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGC41DFMOp .text-content {
    padding: 2rem 1rem;
  }
  .cid-uGC41DFMOp .underline .line {
    height: 2px;
  }
  .cid-uGC41DFMOp .mbr-title,
  .cid-uGC41DFMOp .underline,
  .cid-uGC41DFMOp .mbr-text,
  .cid-uGC41DFMOp .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uGC41DFMOp .mbr-text,
.cid-uGC41DFMOp .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uGC41DFMOp .mbr-title,
.cid-uGC41DFMOp .underline {
  color: #ff7d84;
}
.cid-uKtXiWHpZN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/img-3254.jpg-1440x1080.jpeg");
}
.cid-uKtXiWHpZN .container-fluid {
  padding: 0 3rem;
}
.cid-uKtXiWHpZN .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uKtXiWHpZN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uKtXiWHpZN .card {
  margin-bottom: 2rem;
}
.cid-uKtXiWHpZN .card-img {
  width: auto !important;
}
.cid-uKtXiWHpZN .card-img .mbr-iconfont {
  color: #ffa0a4;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #ffa0a4, #1ba1e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uKtXiWHpZN .content-row {
  word-wrap: break-word;
}
.cid-uKtXiWHpZN .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKtXiWHpZN .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-uKtXiWHpZN .mbr-text {
  color: #ffffff;
  margin: 0;
}
.cid-uKtXiWHpZN .card-title {
  color: #fe525b;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uKtXiWHpZN .card-title,
  .cid-uKtXiWHpZN .card-box {
    text-align: left;
  }
  .cid-uKtXiWHpZN .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uKtXiWHpZN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKtXiWHpZN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKtXiWHpZN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uKtXiWHpZN .mbr-section-title,
.cid-uKtXiWHpZN .underline {
  color: #ffffff;
}
.cid-uNvGoNini4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  background-color: #67a1e5;
}
.cid-uNvGoNini4 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uNvGoNini4 .item:focus,
.cid-uNvGoNini4 span:focus {
  outline: none;
}
.cid-uNvGoNini4 .item {
  cursor: pointer;
}
.cid-uNvGoNini4 .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uNvGoNini4 .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uNvGoNini4 .grid-container-1,
.cid-uNvGoNini4 .grid-container-2 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uNvGoNini4 .grid-container-1,
  .cid-uNvGoNini4 .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-uNvGoNini4 .mbr-section-title {
  margin-bottom: 104px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uNvGoNini4 .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNvGoNini4 .content-head {
  max-width: 800px;
}
.cid-uNvGoNini4 .container,
.cid-uNvGoNini4 .container-fluid {
  overflow: hidden;
}
.cid-uNvGoNini4 .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uNvGoNini4 .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
.cid-uNvGoNini4 .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
  border: 2px solid #150764;
  box-shadow: 4px 4px #150764;
}
@media (max-width: 1200px) {
  .cid-uNvGoNini4 .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uNvGoNini4 .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-uNvGoNini4 .grid-container-1,
.cid-uNvGoNini4 .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uNvGoNini4 .grid-container-1 {
  align-items: flex-end;
}
.cid-uNvGoNini4 .grid-container-2 {
  align-items: flex-start;
}
.cid-uNy2t0ErT7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  background-color: #bf5e63;
}
.cid-uNy2t0ErT7 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uNy2t0ErT7 .item:focus,
.cid-uNy2t0ErT7 span:focus {
  outline: none;
}
.cid-uNy2t0ErT7 .item {
  cursor: pointer;
}
.cid-uNy2t0ErT7 .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uNy2t0ErT7 .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uNy2t0ErT7 .grid-container-1,
.cid-uNy2t0ErT7 .grid-container-2 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uNy2t0ErT7 .grid-container-1,
  .cid-uNy2t0ErT7 .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-uNy2t0ErT7 .mbr-section-title {
  margin-bottom: 104px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uNy2t0ErT7 .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNy2t0ErT7 .content-head {
  max-width: 800px;
}
.cid-uNy2t0ErT7 .container,
.cid-uNy2t0ErT7 .container-fluid {
  overflow: hidden;
}
.cid-uNy2t0ErT7 .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uNy2t0ErT7 .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
.cid-uNy2t0ErT7 .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
  border: 2px solid #150764;
  box-shadow: 4px 4px #150764;
}
@media (max-width: 1200px) {
  .cid-uNy2t0ErT7 .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uNy2t0ErT7 .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-uNy2t0ErT7 .grid-container-1,
.cid-uNy2t0ErT7 .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uNy2t0ErT7 .grid-container-1 {
  align-items: flex-end;
}
.cid-uNy2t0ErT7 .grid-container-2 {
  align-items: flex-start;
}
.cid-uNvIHGNRD1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uNvIHGNRD1 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uNvIHGNRD1 .item:focus,
.cid-uNvIHGNRD1 span:focus {
  outline: none;
}
.cid-uNvIHGNRD1 .item {
  cursor: pointer;
}
.cid-uNvIHGNRD1 .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uNvIHGNRD1 .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uNvIHGNRD1 .grid-container-1,
.cid-uNvIHGNRD1 .grid-container-2 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uNvIHGNRD1 .grid-container-1,
  .cid-uNvIHGNRD1 .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-uNvIHGNRD1 .mbr-section-title {
  margin-bottom: 104px;
  color: #2d10a3;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uNvIHGNRD1 .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNvIHGNRD1 .content-head {
  max-width: 800px;
}
.cid-uNvIHGNRD1 .container,
.cid-uNvIHGNRD1 .container-fluid {
  overflow: hidden;
}
.cid-uNvIHGNRD1 .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uNvIHGNRD1 .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
.cid-uNvIHGNRD1 .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
  border: 2px solid #150764;
  box-shadow: 4px 4px #150764;
}
@media (max-width: 1200px) {
  .cid-uNvIHGNRD1 .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uNvIHGNRD1 .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-uNvIHGNRD1 .grid-container-1,
.cid-uNvIHGNRD1 .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uNvIHGNRD1 .grid-container-1 {
  align-items: flex-end;
}
.cid-uNvIHGNRD1 .grid-container-2 {
  align-items: flex-start;
}
.cid-uNAAuDu29K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffba00;
}
.cid-uNAAuDu29K p {
  color: #767676;
}
.cid-uNAAuDu29K .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uNAAuDu29K .row-element,
.cid-uNAAuDu29K .image-element {
  padding: 0;
}
.cid-uNAAuDu29K .image-element {
  display: flex;
  justify-content: center;
}
.cid-uNAAuDu29K .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uNAAuDu29K .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uNAAuDu29K .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uNAAuDu29K .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uNAAuDu29K .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uNAAuDu29K .text-content {
    padding: 2rem 1rem;
  }
  .cid-uNAAuDu29K .underline .line {
    height: 2px;
  }
  .cid-uNAAuDu29K .mbr-title,
  .cid-uNAAuDu29K .underline,
  .cid-uNAAuDu29K .mbr-text,
  .cid-uNAAuDu29K .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uNAAuDu29K .mbr-text,
.cid-uNAAuDu29K .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uNAAuDu29K .mbr-title,
.cid-uNAAuDu29K .underline {
  color: #ffffff;
}
.cid-uGC41D1dkp {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/coffee-x-5-2000x515.png");
}
.cid-uGC41D1dkp .container-fluid {
  padding: 0 3rem;
}
.cid-uGC41D1dkp .media-container-column {
  padding: 0 2rem;
}
.cid-uGC41D1dkp .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uGC41D1dkp .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNyArNX3nE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  background-color: #b09677;
}
.cid-uNyArNX3nE .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uNyArNX3nE .item:focus,
.cid-uNyArNX3nE span:focus {
  outline: none;
}
.cid-uNyArNX3nE .item {
  cursor: pointer;
}
.cid-uNyArNX3nE .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uNyArNX3nE .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uNyArNX3nE .grid-container-1,
.cid-uNyArNX3nE .grid-container-2 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uNyArNX3nE .grid-container-1,
  .cid-uNyArNX3nE .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-uNyArNX3nE .mbr-section-title {
  margin-bottom: 104px;
  color: #f3e3cf;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uNyArNX3nE .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uNyArNX3nE .content-head {
  max-width: 800px;
}
.cid-uNyArNX3nE .container,
.cid-uNyArNX3nE .container-fluid {
  overflow: hidden;
}
.cid-uNyArNX3nE .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uNyArNX3nE .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
.cid-uNyArNX3nE .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
  border: 2px solid #150764;
  box-shadow: 4px 4px #150764;
}
@media (max-width: 1200px) {
  .cid-uNyArNX3nE .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uNyArNX3nE .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-uNyArNX3nE .grid-container-1,
.cid-uNyArNX3nE .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uNyArNX3nE .grid-container-1 {
  align-items: flex-end;
}
.cid-uNyArNX3nE .grid-container-2 {
  align-items: flex-start;
}
.cid-uGC41Es2Qb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #67a1e5;
}
.cid-uGC41Es2Qb p {
  color: #767676;
}
.cid-uGC41Es2Qb .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uGC41Es2Qb .main {
  flex-direction: row-reverse;
}
.cid-uGC41Es2Qb .row-element,
.cid-uGC41Es2Qb .image-element {
  padding: 0;
}
.cid-uGC41Es2Qb .image-element {
  display: flex;
  justify-content: center;
}
.cid-uGC41Es2Qb .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uGC41Es2Qb .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGC41Es2Qb .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uGC41Es2Qb .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uGC41Es2Qb .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGC41Es2Qb .text-content {
    padding: 2rem 1rem;
  }
  .cid-uGC41Es2Qb .underline .line {
    height: 2px;
  }
  .cid-uGC41Es2Qb .mbr-title,
  .cid-uGC41Es2Qb .underline,
  .cid-uGC41Es2Qb .mbr-text,
  .cid-uGC41Es2Qb .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uGC41Es2Qb .mbr-text,
.cid-uGC41Es2Qb .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uGC41Es2Qb .mbr-title,
.cid-uGC41Es2Qb .underline {
  color: #c2daf6;
}
.cid-uKwgPw3bc8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fe525b;
}
.cid-uKwgPw3bc8 p {
  color: #767676;
}
.cid-uKwgPw3bc8 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uKwgPw3bc8 .row-element,
.cid-uKwgPw3bc8 .image-element {
  padding: 0;
}
.cid-uKwgPw3bc8 .image-element {
  display: flex;
  justify-content: center;
}
.cid-uKwgPw3bc8 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uKwgPw3bc8 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uKwgPw3bc8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uKwgPw3bc8 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uKwgPw3bc8 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uKwgPw3bc8 .text-content {
    padding: 2rem 1rem;
  }
  .cid-uKwgPw3bc8 .underline .line {
    height: 2px;
  }
  .cid-uKwgPw3bc8 .mbr-title,
  .cid-uKwgPw3bc8 .underline,
  .cid-uKwgPw3bc8 .mbr-text,
  .cid-uKwgPw3bc8 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uKwgPw3bc8 .mbr-text,
.cid-uKwgPw3bc8 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uKwgPw3bc8 .mbr-title,
.cid-uKwgPw3bc8 .underline {
  color: #ffa0a4;
}
.cid-uGC41LGJms {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uGC41LGJms .container-fluid {
  padding: 0 3rem;
}
.cid-uGC41LGJms .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uGC41LGJms .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uGC41LGJms .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uGC41LGJms .card .card-wrapper {
  height: 1%;
}
.cid-uGC41LGJms .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uGC41LGJms .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uGC41LGJms .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #096693;
}
.cid-uGC41LGJms .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uGC41LGJms .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uGC41LGJms .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uGC41LGJms .img-text {
  color: #ffffff;
}
.cid-uGC41LGJms .mbr-section-title,
.cid-uGC41LGJms .underline {
  color: #096693;
  text-align: right;
}
.cid-uGC41LGJms .mbr-card-text,
.cid-uGC41LGJms .mbr-section-btn {
  color: #000000;
}
.cid-uNyS17phUU {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #73383b;
}
.cid-uNyS17phUU .container-fluid {
  padding: 0 3rem;
}
.cid-uNyS17phUU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uNyS17phUU .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uNyS17phUU .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNyS17phUU .card .card-wrapper {
  height: 1%;
}
.cid-uNyS17phUU .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNyS17phUU .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNyS17phUU .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #bf5e63;
}
.cid-uNyS17phUU .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNyS17phUU .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNyS17phUU .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNyS17phUU .img-text {
  color: #ffffff;
}
.cid-uNyS17phUU .mbr-section-title,
.cid-uNyS17phUU .underline {
  color: #ffa0a4;
}
.cid-uNyS17phUU .mbr-card-text,
.cid-uNyS17phUU .mbr-section-btn {
  color: #000000;
}
.cid-uNyOVTP45d {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uNyOVTP45d .container-fluid {
  padding: 0 3rem;
}
.cid-uNyOVTP45d .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uNyOVTP45d .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-uNyOVTP45d .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uNyOVTP45d .card .card-wrapper {
  height: 1%;
}
.cid-uNyOVTP45d .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-uNyOVTP45d .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uNyOVTP45d .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #bf5e63;
}
.cid-uNyOVTP45d .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-uNyOVTP45d .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-uNyOVTP45d .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNyOVTP45d .img-text {
  color: #ffffff;
}
.cid-uNyOVTP45d .mbr-section-title,
.cid-uNyOVTP45d .underline {
  color: #bf5e63;
}
.cid-uNyOVTP45d .mbr-card-text,
.cid-uNyOVTP45d .mbr-section-btn {
  color: #000000;
}
.cid-uGC41Mn7Fl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  padding-left: 0;
  padding-right: 0;
}
.cid-uGC41Mn7Fl ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uGC41Mn7Fl ul li {
  padding: 1rem 0;
}
.cid-uGC41Mn7Fl ul li:hover {
  color: #67a1e5;
}
.cid-uGC41Mn7Fl .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-uGC41Mn7Fl .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-uGC41Mn7Fl .google-map {
  height: 100%;
  position: relative;
}
.cid-uGC41Mn7Fl .map {
  padding: 0;
  height: inherit !important;
}
.cid-uGC41Mn7Fl .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.cid-uGC41Mn7Fl .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
}
.cid-uGC41Mn7Fl .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uGC41Mn7Fl .social-list a:hover {
  opacity: 1;
}
.cid-uGC41Mn7Fl .row-element,
.cid-uGC41Mn7Fl .image-element {
  padding: 0;
}
.cid-uGC41Mn7Fl .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGC41Mn7Fl .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uGC41Mn7Fl .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uGC41Mn7Fl .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGC41Mn7Fl .text-content {
    padding: 2rem 1rem;
  }
  .cid-uGC41Mn7Fl .underline .line {
    height: 2px;
  }
  .cid-uGC41Mn7Fl .mbr-title,
  .cid-uGC41Mn7Fl .underline,
  .cid-uGC41Mn7Fl .mbr-text,
  .cid-uGC41Mn7Fl .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uGC41Mn7Fl .mbr-title,
.cid-uGC41Mn7Fl .underline {
  color: #2d10a3;
}
.cid-uGC41Mn7Fl .mbr-text,
.cid-uGC41Mn7Fl .mbr-section-btn {
  color: #ffffff;
}
.cid-uGC41Mn7Fl mbr-list LI {
  color: #ffffff;
}
.cid-uGC41Mn7Fl mbr-list {
  text-align: center;
}
.cid-uGC41Mn7Fl .mbr-list,
.cid-uGC41Mn7Fl .social-list mbr-list {
  color: #465052;
}
.cid-uGC41Mn7Fl .mbr-text P {
  color: #465052;
}
.cid-uGC41Mn7Fl P {
  text-align: right;
}
.cid-uGC41N4bKl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/aigs-exterior-sunny-1998x852.jpg");
  overflow: hidden !important;
}
.cid-uGC41N4bKl .container-fluid {
  padding: 0 5rem;
}
.cid-uGC41N4bKl .animated-element {
  color: #465052;
}
.cid-uGC41N4bKl .img-block {
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-uGC41N4bKl .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uGC41N4bKl .container-fluid {
    padding: 0 1rem;
  }
  .cid-uGC41N4bKl .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-uGC41N4bKl .mbr-section-subtitle,
.cid-uGC41N4bKl .mbr-section-btn {
  color: #ffffff;
}
.cid-uGC41N4bKl .mbr-section-title {
  color: #1268d7;
}
.cid-uPz9Golkyr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPz9Golkyr .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPz9Golkyr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPz9Golkyr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPz9Golkyr .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPz9Golkyr .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPz9Golkyr .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPz9Golkyr .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPz9Golkyr .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPz9Golkyr .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPz9Golkyr .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uPytjB5ohk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPytjB5ohk nav.navbar {
  position: fixed;
}
.cid-uPytjB5ohk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPytjB5ohk .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uPytjB5ohk .dropdown-item:hover,
.cid-uPytjB5ohk .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uPytjB5ohk .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uPytjB5ohk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPytjB5ohk .nav-link {
  position: relative;
  padding: 0;
}
.cid-uPytjB5ohk .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uPytjB5ohk .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPytjB5ohk .dropdown-menu,
.cid-uPytjB5ohk .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uPytjB5ohk .nav-item:focus,
.cid-uPytjB5ohk .nav-link:focus {
  outline: none;
}
.cid-uPytjB5ohk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPytjB5ohk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPytjB5ohk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPytjB5ohk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPytjB5ohk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPytjB5ohk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPytjB5ohk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uPytjB5ohk .navbar.opened {
  transition: all 0.3s;
}
.cid-uPytjB5ohk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPytjB5ohk .navbar .navbar-logo img {
  width: auto;
}
.cid-uPytjB5ohk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPytjB5ohk .navbar.collapsed {
  justify-content: center;
}
.cid-uPytjB5ohk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPytjB5ohk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPytjB5ohk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uPytjB5ohk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPytjB5ohk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPytjB5ohk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uPytjB5ohk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPytjB5ohk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPytjB5ohk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPytjB5ohk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPytjB5ohk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPytjB5ohk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPytjB5ohk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPytjB5ohk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uPytjB5ohk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPytjB5ohk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPytjB5ohk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPytjB5ohk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPytjB5ohk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPytjB5ohk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPytjB5ohk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPytjB5ohk .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uPytjB5ohk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPytjB5ohk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPytjB5ohk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPytjB5ohk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPytjB5ohk .dropdown-item.active,
.cid-uPytjB5ohk .dropdown-item:active {
  background-color: transparent;
}
.cid-uPytjB5ohk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPytjB5ohk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPytjB5ohk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPytjB5ohk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uPytjB5ohk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPytjB5ohk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPytjB5ohk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPytjB5ohk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPytjB5ohk button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPytjB5ohk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uPytjB5ohk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPytjB5ohk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPytjB5ohk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPytjB5ohk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPytjB5ohk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPytjB5ohk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPytjB5ohk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPytjB5ohk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPytjB5ohk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPytjB5ohk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPytjB5ohk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPytjB5ohk .navbar {
    height: 70px;
  }
  .cid-uPytjB5ohk .navbar.opened {
    height: auto;
  }
  .cid-uPytjB5ohk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPytjB5ohk .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uPytjB5ohk .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uPytjB5ohk a {
  display: inline;
  font-weight: bold;
}
.cid-uPytjB5ohk img {
  display: inline;
  padding-right: 10px;
}
.cid-uPytjB5ohk .dropdown-toggle:after {
  display: none;
}
.cid-uPytjB5ohk .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uPytjB5ohk .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uPytjB5ohk .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uPytjCvuam {
  padding-top: 135px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uPytjCvuam .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uPytjCvuam .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPytjCvuam .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPytjCvuam .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uPytjCvuam .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #67a1e5);
}
.cid-uPytjCvuam .icon-focus {
  display: none;
}
.cid-uPytjCvuam .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uPytjCvuam ul {
  font-size: 0;
}
.cid-uPytjCvuam .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-uPytjCvuam .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-uPytjCvuam .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
}
.cid-uPytjCvuam .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uPytjCvuam .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uPytjCvuam .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-uPytjCvuam .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uPytjCvuam .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #67a1e5, #2d10a3);
  display: inline-block;
}
.cid-uPytjCvuam .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uPytjCvuam .btn:hover {
  background: transparent !important;
}
.cid-uPytjCvuam .btn:hover:before {
  background: transparent !important;
}
.cid-uPytjCvuam .btn:before {
  background-color: transparent !important;
}
.cid-uPytjCvuam .btn:focus {
  box-shadow: none;
}
.cid-uPytjCvuam .mbr-section-title,
.cid-uPytjCvuam .underline {
  color: #67a1e5;
}
.cid-uPz9Golkyr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPz9Golkyr .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPz9Golkyr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPz9Golkyr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPz9Golkyr .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPz9Golkyr .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPz9Golkyr .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPz9Golkyr .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPz9Golkyr .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPz9Golkyr .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPz9Golkyr .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uPW8gWKjvc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPW8gWKjvc nav.navbar {
  position: fixed;
}
.cid-uPW8gWKjvc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPW8gWKjvc .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uPW8gWKjvc .dropdown-item:hover,
.cid-uPW8gWKjvc .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uPW8gWKjvc .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uPW8gWKjvc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPW8gWKjvc .nav-link {
  position: relative;
  padding: 0;
}
.cid-uPW8gWKjvc .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uPW8gWKjvc .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPW8gWKjvc .dropdown-menu,
.cid-uPW8gWKjvc .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uPW8gWKjvc .nav-item:focus,
.cid-uPW8gWKjvc .nav-link:focus {
  outline: none;
}
.cid-uPW8gWKjvc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPW8gWKjvc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPW8gWKjvc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPW8gWKjvc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPW8gWKjvc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPW8gWKjvc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPW8gWKjvc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uPW8gWKjvc .navbar.opened {
  transition: all 0.3s;
}
.cid-uPW8gWKjvc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPW8gWKjvc .navbar .navbar-logo img {
  width: auto;
}
.cid-uPW8gWKjvc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPW8gWKjvc .navbar.collapsed {
  justify-content: center;
}
.cid-uPW8gWKjvc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPW8gWKjvc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPW8gWKjvc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uPW8gWKjvc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPW8gWKjvc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPW8gWKjvc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uPW8gWKjvc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPW8gWKjvc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPW8gWKjvc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPW8gWKjvc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPW8gWKjvc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPW8gWKjvc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPW8gWKjvc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPW8gWKjvc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uPW8gWKjvc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPW8gWKjvc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPW8gWKjvc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPW8gWKjvc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPW8gWKjvc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPW8gWKjvc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPW8gWKjvc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPW8gWKjvc .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uPW8gWKjvc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPW8gWKjvc .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPW8gWKjvc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPW8gWKjvc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPW8gWKjvc .dropdown-item.active,
.cid-uPW8gWKjvc .dropdown-item:active {
  background-color: transparent;
}
.cid-uPW8gWKjvc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPW8gWKjvc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPW8gWKjvc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPW8gWKjvc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uPW8gWKjvc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPW8gWKjvc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPW8gWKjvc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPW8gWKjvc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPW8gWKjvc button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPW8gWKjvc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uPW8gWKjvc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPW8gWKjvc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPW8gWKjvc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPW8gWKjvc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPW8gWKjvc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPW8gWKjvc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPW8gWKjvc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPW8gWKjvc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPW8gWKjvc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPW8gWKjvc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPW8gWKjvc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPW8gWKjvc .navbar {
    height: 70px;
  }
  .cid-uPW8gWKjvc .navbar.opened {
    height: auto;
  }
  .cid-uPW8gWKjvc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPW8gWKjvc .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uPW8gWKjvc .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uPW8gWKjvc a {
  display: inline;
  font-weight: bold;
}
.cid-uPW8gWKjvc img {
  display: inline;
  padding-right: 10px;
}
.cid-uPW8gWKjvc .dropdown-toggle:after {
  display: none;
}
.cid-uPW8gWKjvc .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uPW8gWKjvc .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uPW8gWKjvc .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uPW8gXTztR.popup-builder {
  background-color: #ffffff;
}
.cid-uPW8gXTztR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uPW8gXTztR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uPW8gXTztR .modal-content,
.cid-uPW8gXTztR .modal-dialog {
  height: auto;
}
.cid-uPW8gXTztR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPW8gXTztR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uPW8gXTztR .form-wrapper .mbr-form .form-group,
  .cid-uPW8gXTztR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uPW8gXTztR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uPW8gXTztR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPW8gXTztR .mbr-text {
  text-align: center;
}
.cid-uPW8gXTztR .pt-0 {
  padding-top: 0 !important;
}
.cid-uPW8gXTztR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uPW8gXTztR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uPW8gXTztR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uPW8gXTztR .modal-open {
  overflow: hidden;
}
.cid-uPW8gXTztR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uPW8gXTztR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uPW8gXTztR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uPW8gXTztR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uPW8gXTztR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uPW8gXTztR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uPW8gXTztR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uPW8gXTztR .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uPW8gXTztR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uPW8gXTztR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uPW8gXTztR .modal-backdrop.fade {
  opacity: 0;
}
.cid-uPW8gXTztR .modal-backdrop.show {
  opacity: .5;
}
.cid-uPW8gXTztR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uPW8gXTztR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uPW8gXTztR .modal-header {
    padding: 1rem;
  }
}
.cid-uPW8gXTztR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uPW8gXTztR .modal-header .close svg {
  fill: #353535;
}
.cid-uPW8gXTztR .modal-header .close:hover {
  opacity: 1;
}
.cid-uPW8gXTztR .modal-header .close:focus {
  outline: none;
}
.cid-uPW8gXTztR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uPW8gXTztR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uPW8gXTztR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPW8gXTztR .modal-body {
    padding: 1rem;
  }
}
.cid-uPW8gXTztR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uPW8gXTztR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPW8gXTztR .modal-footer {
    padding: 1rem;
  }
}
.cid-uPW8gXTztR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uPW8gXTztR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uPW8gXTztR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uPW8gXTztR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uPW8gXTztR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uPW8gXTztR .modal-lg,
  .cid-uPW8gXTztR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uPW8gXTztR .modal-xl {
    max-width: 1140px;
  }
}
.cid-uPW8gXTztR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uPW8gXTztR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uPW8gXTztR .form-group {
  margin-bottom: 1rem;
}
.cid-uPW8gXTztR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uPW8gXTztR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uPW8gXTztR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uPW8gXTztR .mbr-section-btn {
  margin: 0;
}
.cid-uPW8gXTztR .mbr-section-btn .btn {
  margin: 0;
}
.cid-uPW8gYtwc1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPW8gYtwc1 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPW8gYtwc1 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPW8gYtwc1 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPW8gYtwc1 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPW8gYtwc1 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPW8gYtwc1 .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPW8gYtwc1 .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPW8gYtwc1 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPW8gYtwc1 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPW8gYtwc1 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uPWzMXcwM0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPWzMXcwM0 nav.navbar {
  position: fixed;
}
.cid-uPWzMXcwM0 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPWzMXcwM0 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uPWzMXcwM0 .dropdown-item:hover,
.cid-uPWzMXcwM0 .dropdown-item:focus {
  color: #67a1e5 !important;
}
.cid-uPWzMXcwM0 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-uPWzMXcwM0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPWzMXcwM0 .nav-link {
  position: relative;
  padding: 0;
}
.cid-uPWzMXcwM0 .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-uPWzMXcwM0 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPWzMXcwM0 .dropdown-menu,
.cid-uPWzMXcwM0 .navbar.opened {
  background: #67a1e5 !important;
}
.cid-uPWzMXcwM0 .nav-item:focus,
.cid-uPWzMXcwM0 .nav-link:focus {
  outline: none;
}
.cid-uPWzMXcwM0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPWzMXcwM0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPWzMXcwM0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPWzMXcwM0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPWzMXcwM0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPWzMXcwM0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPWzMXcwM0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #67a1e5;
}
.cid-uPWzMXcwM0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uPWzMXcwM0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPWzMXcwM0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uPWzMXcwM0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPWzMXcwM0 .navbar.collapsed {
  justify-content: center;
}
.cid-uPWzMXcwM0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPWzMXcwM0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPWzMXcwM0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uPWzMXcwM0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPWzMXcwM0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPWzMXcwM0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uPWzMXcwM0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPWzMXcwM0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPWzMXcwM0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPWzMXcwM0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPWzMXcwM0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPWzMXcwM0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPWzMXcwM0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPWzMXcwM0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uPWzMXcwM0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPWzMXcwM0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPWzMXcwM0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPWzMXcwM0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPWzMXcwM0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPWzMXcwM0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPWzMXcwM0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPWzMXcwM0 .navbar.navbar-short .navbar-logo img {
  height: 4.0rem !important;
}
.cid-uPWzMXcwM0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPWzMXcwM0 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPWzMXcwM0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPWzMXcwM0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPWzMXcwM0 .dropdown-item.active,
.cid-uPWzMXcwM0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uPWzMXcwM0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPWzMXcwM0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPWzMXcwM0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPWzMXcwM0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #67a1e5;
}
.cid-uPWzMXcwM0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPWzMXcwM0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPWzMXcwM0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPWzMXcwM0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPWzMXcwM0 button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPWzMXcwM0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uPWzMXcwM0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPWzMXcwM0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPWzMXcwM0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPWzMXcwM0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPWzMXcwM0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPWzMXcwM0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPWzMXcwM0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPWzMXcwM0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPWzMXcwM0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPWzMXcwM0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPWzMXcwM0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPWzMXcwM0 .navbar {
    height: 70px;
  }
  .cid-uPWzMXcwM0 .navbar.opened {
    height: auto;
  }
  .cid-uPWzMXcwM0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPWzMXcwM0 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uPWzMXcwM0 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uPWzMXcwM0 a {
  display: inline;
  font-weight: bold;
}
.cid-uPWzMXcwM0 img {
  display: inline;
  padding-right: 10px;
}
.cid-uPWzMXcwM0 .dropdown-toggle:after {
  display: none;
}
.cid-uPWzMXcwM0 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uPWzMXcwM0 .dropdown-item:hover {
  color: #82786e !important;
}
@media (max-width: 990px) {
  .cid-uPWzMXcwM0 .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-uPWzMXx2de {
  overflow: hidden !important;
  background-image: url("../../../assets/images/aigs-exterior-2-img-9045-2000x887.jpg");
}
.cid-uPWzMXx2de .container-fluid {
  padding: 0 3rem;
}
.cid-uPWzMXx2de .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-uPWzMXx2de .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uPWzMXx2de .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPWzMXx2de .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPWzMXL6m0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/ydxz6620.jpg-2000x2667.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-uPWzMXL6m0 .mbr-shop {
  display: table;
  width: 100%;
}
.cid-uPWzMXL6m0 .mbr-shop .row {
  margin: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-uPWzMXL6m0 .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uPWzMXL6m0 .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uPWzMXL6m0 .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uPWzMXL6m0 .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-uPWzMXL6m0 .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uPWzMXL6m0 .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uPWzMXL6m0 .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uPWzMXL6m0 .mbr-shop .hide-modal {
  display: none;
}
.cid-uPWzMXL6m0 .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uPWzMXL6m0 .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uPWzMXL6m0 .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-uPWzMXL6m0 .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uPWzMXL6m0 .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uPWzMXL6m0 .mbr-shop .filter-by-pu,
.cid-uPWzMXL6m0 .mbr-shop .filter-by-pd,
.cid-uPWzMXL6m0 .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uPWzMXL6m0 .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uPWzMXL6m0 .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uPWzMXL6m0 .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-uPWzMXL6m0 .mbr-shop .galleryItem h4,
.cid-uPWzMXL6m0 .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uPWzMXL6m0 .mbr-shop .galleryItem h5,
.cid-uPWzMXL6m0 .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .galleryItem p,
.cid-uPWzMXL6m0 .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-uPWzMXL6m0 .mbr-shop .item-button {
  text-align: center;
}
.cid-uPWzMXL6m0 .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uPWzMXL6m0 .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uPWzMXL6m0 .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-uPWzMXL6m0 .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uPWzMXL6m0 .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.08);
  top: -20px;
  right: 3px;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uPWzMXL6m0 .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-item__hided h4,
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-item__hided h5,
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uPWzMXL6m0 .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uPWzMXL6m0 .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-uPWzMXL6m0 .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uPWzMXL6m0 .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uPWzMXL6m0 .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-uPWzMXL6m0 .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-uPWzMXL6m0 .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uPWzMXL6m0 .mbr-shop .range-controls {
  position: relative;
}
.cid-uPWzMXL6m0 .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uPWzMXL6m0 .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-uPWzMXL6m0 .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-uPWzMXL6m0 .mbr-shop .toggle:hover,
.cid-uPWzMXL6m0 .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uPWzMXL6m0 .mbr-shop .min-toggle {
  left: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .max-toggle {
  right: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .hided-by-price {
  display: none;
}
.cid-uPWzMXL6m0 .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uPWzMXL6m0 .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uPWzMXL6m0 .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPWzMXL6m0 .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uPWzMXL6m0 .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uPWzMXL6m0 .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uPWzMXL6m0 .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uPWzMXL6m0 .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uPWzMXL6m0 .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPWzMXL6m0 .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uPWzMXL6m0 .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uPWzMXL6m0 .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-uPWzMXL6m0 .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uPWzMXL6m0 .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uPWzMXL6m0 .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uPWzMXL6m0 .mbr-shop .shop-items .onsale,
.cid-uPWzMXL6m0 .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uPWzMXL6m0 .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uPWzMXL6m0 .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uPWzMXL6m0 .mbr-shop .price-range {
  display: inline-block;
}
.cid-uPWzMXL6m0 .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uPWzMXL6m0 .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uPWzMXL6m0 .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uPWzMXL6m0 .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uPWzMXL6m0 .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uPWzMXL6m0 .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uPWzMXL6m0 .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uPWzMXL6m0 .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uPWzMXL6m0 .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uPWzMXL6m0 .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uPWzMXL6m0 .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uPWzMXL6m0 .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uPWzMXL6m0 .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uPWzMXL6m0 .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uPWzMXL6m0 .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uPWzMXL6m0 .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uPWzMXL6m0 .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPWzMXL6m0 .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-uPWzMXL6m0 .wrapper-shop-items {
    order: 1;
  }
  .cid-uPWzMXL6m0 .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-uPWzMXL6m0 .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uPWzMXL6m0 .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uPWzMXL6m0 .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uPWzMXL6m0 .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uPWzMXL6m0 .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-uPWzMXL6m0 .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uPWzMXL6m0 .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uPWzMXL6m0 .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uPWzMXL6m0 .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uPWzMXL6m0 .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uPWzMXL6m0 .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uPWzMXL6m0 .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uPWzMXL6m0 .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uPWzMXL6m0 .oldprice {
  padding-left: .8rem !important;
  text-decoration: line-through;
  color: #767676;
}
.cid-uPWzMXL6m0 .mbr-gallery-item .sidebar_wraper {
  position: relative;
  background: #ffffff;
}
.cid-uPWzMXL6m0 .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  position: absolute;
  width: 100%;
  top: -4rem;
  opacity: 0;
  transiton: opacity .5s, top .5s;
}
.cid-uPWzMXL6m0 .mbr-gallery-item .sidebar_wraper .price-block {
  padding-bottom: 10px;
}
.cid-uPWzMXL6m0 .mbr-gallery-item:hover .sidebar_wraper .mbr-section-btn {
  top: -5rem;
  opacity: 1;
  transition: opacity .5s, top .5s;
}
.cid-uPWzMXL6m0 .sidebar .mbr-gallery-item {
  background: transparent;
}
.cid-uPWzMXL6m0 .sidebar .mbr-gallery-item .sidebar_wrapper {
  background: transparent;
}
.cid-uPWzMXL6m0 .sidebar .galleryItem {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: transparent;
}
.cid-uPWzMXL6m0 .sidebar .galleryItem .sidebar_wraper {
  background: transparent !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPWzMXL6m0 .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uPWzMXL6m0 LI {
  color: #ffffff;
}
.cid-uPWzMXL6m0 .sidebar-title {
  color: #ffffff;
}
.cid-uPWzMYBVfc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #67a1e5;
}
.cid-uPWzMYBVfc .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uPWzMYBVfc .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uPWzMYBVfc .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uPWzMYBVfc .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uPWzMYBVfc .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uPWzMYBVfc .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-uPWzMYBVfc .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPWzMYBVfc .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uPWzMYBVfc .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uPWzMYBVfc .mbr-text {
    margin-bottom: 1.5rem;
  }
}
