@import url(https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





body {
font-family: 'Montserrat', sans-serif;
}
.display-1 {
  
  font-size: 4.5rem;
}
.display-2 {
  
  font-size: 3rem;
}
.display-4 {
  
  font-size: 1rem;
}
.display-5 {
  
  font-size: 1.5rem;
}
.display-7 {
  
  font-size: 1.1rem;
}
/* ---- 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: #1ba1e2 !important;
}
.bg-success {
  background-color: #1ba1e2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #fe525b !important;
}
.bg-danger {
  background-color: #232323 !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: #13709e;
  border-color: #13709e;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #13709e !important;
  border-color: #13709e !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: #13709e;
  border-color: #13709e;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #13709e !important;
  border-color: #13709e !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: #13709e;
  border-color: #13709e;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #13709e;
  border-color: #13709e;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #fe0613;
  border-color: #fe0613;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !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: #fe0613 !important;
  border-color: #fe0613 !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: #000000;
  border-color: #000000;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !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;
}
.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;
}
.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: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.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: #1ba1e2 !important;
  border-color: #1ba1e2 !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: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.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: #1ba1e2 !important;
  border-color: #1ba1e2 !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: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.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: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !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: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.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: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !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: #fe525b;
  border-color: #fe525b;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.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: #fe525b !important;
  border-color: #fe525b !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: #232323;
  border-color: #232323;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #232323;
  border-color: #232323;
}
.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: #232323 !important;
  border-color: #232323 !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;
}
.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;
}
.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: #1ba1e2 !important;
}
.text-secondary {
  color: #1ba1e2 !important;
}
.text-success {
  color: #1ba1e2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #fe525b !important;
}
.text-danger {
  color: #232323 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #106087 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #106087 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #106087 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e9010d !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !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: #1ba1e2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #fe525b;
}
.alert-danger {
  background-color: #232323;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1ba1e2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d5d5d5;
}
/* Scroll to top button*/
.form-control {
  
  font-size: 1.1rem;
}
blockquote {
  border-color: #1ba1e2;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #1ba1e2;
  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: #1ba1e2;
  border-bottom-color: #1ba1e2;
}
.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: #1ba1e2 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #1ba1e2 !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='%231ba1e2' %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-sgvosOCTmx .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sgvosOCTmx .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sgvosOCTmx a {
  font-style: normal;
}
.cid-sgvosOCTmx .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sgvosOCTmx .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sgvosOCTmx .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sgvosOCTmx .content-text {
  margin-bottom: 0;
}
.cid-sgvosOCTmx .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sgvosOCTmx .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #1ba1e2;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sgvosOCTmx .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sgvosOCTmx .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sgvosOCTmx .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sgvosOCTmx .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sgvosOCTmx .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sgvosOCTmx .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sgvosOCTmx .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgvosOCTmx .nav-dropdown .link {
  font-weight: 400;
}
.cid-sgvosOCTmx .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sgvosOCTmx .content-right-side {
  text-align: center;
}
.cid-sgvosOCTmx .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sgvosOCTmx .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sgvosOCTmx .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sgvosOCTmx .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sgvosOCTmx .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sgvosOCTmx .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sgvosOCTmx img {
    height: 1.8rem !important;
  }
  .cid-sgvosOCTmx .btn {
    display: -webkit-flex;
  }
  .cid-sgvosOCTmx button.navbar-toggler {
    display: block;
  }
  .cid-sgvosOCTmx .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sgvosOCTmx .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sgvosOCTmx .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sgvosOCTmx .navbar-collapse.collapsing,
  .cid-sgvosOCTmx .navbar-collapse.show {
    display: block !important;
  }
  .cid-sgvosOCTmx .navbar-collapse.collapsing .navbar-nav,
  .cid-sgvosOCTmx .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sgvosOCTmx .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sgvosOCTmx .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sgvosOCTmx .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sgvosOCTmx .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sgvosOCTmx .navbar-collapse.collapsing .navbar-buttons,
  .cid-sgvosOCTmx .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sgvosOCTmx .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sgvosOCTmx .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sgvosOCTmx .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sgvosOCTmx .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sgvosOCTmx .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sgvosOCTmx .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sgvosOCTmx .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sgvosOCTmx .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sgvosOCTmx .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sgvosOCTmx .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sgvosOCTmx .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sgvosOCTmx .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sgvosOCTmx .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sgvosOCTmx .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sgvosOCTmx .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sgvosOCTmx .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-sgvosOCTmx .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sgvosOCTmx .menu-content-right .info-widget:last-child {
  padding-right: 0;
  list-style: none;
  padding: inherit;
  margin-bottom: 28px;
}
.cid-sgvosOCTmx .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sgvosOCTmx .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sgvosOCTmx .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sgvosOCTmx .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sgvosOCTmx .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sgvosOCTmx .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sgvosOCTmx .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sgvosOCTmx .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sgvosOCTmx .navbar {
    display: block;
    padding: 0;
  }
  .cid-sgvosOCTmx .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sgvosOCTmx .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sgvosOCTmx .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sgvosOCTmx .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sgvosOCTmx .navbar-toggler {
    display: none;
  }
  .cid-sgvosOCTmx .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sgvosOCTmx .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sgvosOCTmx .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sgvosOCTmx .menu-logo {
  margin-right: auto;
}
.cid-sgvosOCTmx .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
  text-transform: uppercase;
}
.navbar-brand {
    white-space: inherit !important;
}
.cid-sgvosOCTmx .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  min-width: 7rem;
  margin: .3rem 0;
  font-size: 0.8em;
}
.cid-sgvosOCTmx .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sgvosOCTmx .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sgvosOCTmx .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sgvosOCTmx .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sgvosOCTmx .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sgvosOCTmx .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sgvosOCTmx .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sgvosOCTmx .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sgvosOCTmx .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sgvosOCTmx .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sgvosOCTmx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sgvosOCTmx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sgvosOCTmx .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sgvosOCTmx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sgvosOCTmx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sgvosOCTmx .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sgvosOCTmx .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgvosOCTmx .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sgvosOCTmx .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sgvosOCTmx .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sgvosOCTmx .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sgvosOCTmx .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sgvosOCTmx .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sgvosOCTmx button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sgvosOCTmx button.navbar-toggler:focus {
  outline: none;
}
.cid-sgvosOCTmx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sgvosOCTmx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sgvosOCTmx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sgvosOCTmx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sgvosOCTmx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sgvosOCTmx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sgvosOCTmx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sgvosOCTmx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sgvosOCTmx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sgvosOCTmx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sgvosOCTmx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sgvosOCTmx .collapsed .btn {
  display: -webkit-flex;
}
.cid-sgvosOCTmx .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sgvosOCTmx .collapsed .navbar-collapse.collapsing,
.cid-sgvosOCTmx .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sgvosOCTmx .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sgvosOCTmx .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sgvosOCTmx .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sgvosOCTmx .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sgvosOCTmx .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sgvosOCTmx .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sgvosOCTmx .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sgvosOCTmx .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sgvosOCTmx .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sgvosOCTmx .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sgvosOCTmx .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sgvosOCTmx .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sgvosOCTmx .collapsed button.navbar-toggler {
  display: block;
}
.cid-sgvosOCTmx .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sgvosOCTmx .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sgvosOCTmx .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sgvosOCTmx .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sgvosOCTmx .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sgvosOCTmx .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sgvosOCTmx .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgvosOCTmx .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sgvosOCTmx .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sgvosOCTmx .nav-link:focus {
  outline: none;
}
.cid-sgvosOCTmx .navbar-toggler {
  position: relative;
}
.cid-sgvosOCTmx .dropdown-item.active,
.cid-sgvosOCTmx .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sgvosOCTmx .nav-link:hover,
.cid-sgvosOCTmx .dropdown-item:hover {
  color: #000000;
}
.cid-shfkb4qWQ2 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-shfkb4qWQ2 .container-fluid {
  padding: 0 3rem;
}
.cid-shfkb4qWQ2 .media-container-column {
  padding: 0 2rem;
}
.cid-shfkb4qWQ2 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-shfkb4qWQ2 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sgAeY2ji03 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #149dcc;
}
.cid-sgAeY2ji03 p {
  color: #767676;
}
.cid-sgAeY2ji03 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sgAeY2ji03 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sgAeY2ji03 .row-element,
.cid-sgAeY2ji03 .image-element {
  padding: 0;
}
.cid-sgAeY2ji03 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgAeY2ji03 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sgAeY2ji03 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sgAeY2ji03 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sgAeY2ji03 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sgAeY2ji03 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sgAeY2ji03 .text-content {
    padding: 2rem 1rem;
  }
  .cid-sgAeY2ji03 .underline .line {
    height: 2px;
  }
  .cid-sgAeY2ji03 .mbr-title,
  .cid-sgAeY2ji03 .underline,
  .cid-sgAeY2ji03 .mbr-text,
  .cid-sgAeY2ji03 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sgAeY2ji03 .mbr-title,
.cid-sgAeY2ji03 .underline {
  text-align: center;
  color: #ffffff;
}
.cid-sgAeY2ji03 .mbr-text,
.cid-sgAeY2ji03 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-shfi9da6ji {
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-shfi9da6ji .mbr-overlay {
  background: #ffffff;
}
.cid-shfi9da6ji .mbr-section-title {
  margin: 0;
}
.cid-shfi9da6ji H1 {
  color: #000000;
}
.cid-shfi9da6ji .mbr-section-subtitle,
.cid-shfi9da6ji mbr-section-btn {
  color: #000000;
}
.cid-shfi9da6ji .mbr-text,
.cid-shfi9da6ji .mbr-section-btn {
  color: #000000;
}
.cid-sgvpAzs1mj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sgvpAzs1mj .card {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sgvpAzs1mj .card-box {
  width: 100%;
}
.cid-sgvpAzs1mj .card-img {
  padding: 1rem;
  border: 2px solid #e9e9e9;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-sgvpAzs1mj .card-img span {
  color: #0a1c44;
  font-size: 3rem;
}
.cid-sgvpAzs1mj .mbr-text {
  color: #767676;
}
.cid-sgvpAzs1mj p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-sgvpAzs1mj .card {
    margin-bottom: 2rem;
  }
}
.cid-sgvpAzs1mj .card-title,
.cid-sgvpAzs1mj .card-img {
  color: #000000;
  text-align: center;
}
.cid-sgvpAzs1mj .mbr-section-title {
  text-align: center;
}
.cid-sgvpAzs1mj .mbr-section-sub-title {
  text-align: center;
  color: #000000;
}
.cid-sgvpAzs1mj .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sgvpAzs1mj .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sgvpAzs1mj .line-wrap2 {
  display: inline-block;
  width: 100%;
}
.cid-sgvpAzs1mj .line2 {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #e9e9e9;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.cid-sgvpAzs1mj .mbr-section-title,
.cid-sgvpAzs1mj .line-wrap {
  text-align: center;
}
.cid-sgvpAzs1mj .mbr-text,
.cid-sgvpAzs1mj .line-wrap2 {
  text-align: center;
  color: #000000;
}
.cid-sgvrJB0L9B {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-sgvrJB0L9B .container-fluid {
  padding: 0 3rem;
}
.cid-sgvrJB0L9B .media-container-column {
  padding: 0 2rem;
}
.cid-sgvrJB0L9B .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #149dcc;
}
@media (max-width: 767px) {
  .cid-sgvrJB0L9B .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sgvrBDFdxi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sgvrBDFdxi p {
  color: #767676;
}
.cid-sgvrBDFdxi .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sgvrBDFdxi .row-element,
.cid-sgvrBDFdxi .image-element {
  padding: 0;
}
.cid-sgvrBDFdxi .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgvrBDFdxi .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sgvrBDFdxi .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sgvrBDFdxi .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sgvrBDFdxi .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sgvrBDFdxi .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sgvrBDFdxi .text-content {
    padding: 2rem 1rem;
  }
  .cid-sgvrBDFdxi .underline .line {
    height: 2px;
  }
  .cid-sgvrBDFdxi .mbr-title,
  .cid-sgvrBDFdxi .underline,
  .cid-sgvrBDFdxi .mbr-text,
  .cid-sgvrBDFdxi .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sgvrBDFdxi .mbr-text,
.cid-sgvrBDFdxi .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sgvrC9sRVq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sgvrC9sRVq p {
  color: #767676;
}
.cid-sgvrC9sRVq .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sgvrC9sRVq .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sgvrC9sRVq .row-element,
.cid-sgvrC9sRVq .image-element {
  padding: 0;
}
.cid-sgvrC9sRVq .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgvrC9sRVq .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sgvrC9sRVq .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sgvrC9sRVq .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #1ba1e2);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sgvrC9sRVq .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sgvrC9sRVq .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sgvrC9sRVq .text-content {
    padding: 2rem 1rem;
  }
  .cid-sgvrC9sRVq .underline .line {
    height: 2px;
  }
  .cid-sgvrC9sRVq .mbr-title,
  .cid-sgvrC9sRVq .underline,
  .cid-sgvrC9sRVq .mbr-text,
  .cid-sgvrC9sRVq .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sgvrC9sRVq .mbr-text,
.cid-sgvrC9sRVq .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sgvsZak8H8 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sgvsZak8H8 .container-fluid {
  padding: 0 3rem;
}
.cid-sgvsZak8H8 .media-container-column {
  padding: 0 2rem;
}
.cid-sgvsZak8H8 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-sgvsZak8H8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sgvvdgLge5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sgvvdgLge5 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgvvdgLge5 .carousel-control-prev {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-sgvvdgLge5 .carousel-control-next {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-sgvvdgLge5 .carousel-item.active,
.cid-sgvvdgLge5 .carousel-item-next,
.cid-sgvvdgLge5 .carousel-item-prev {
  display: flex;
}
.cid-sgvvdgLge5 .carousel-controls a {
  transition: opacity .5s;
}
.cid-sgvvdgLge5 .carousel-controls a:hover span,
.cid-sgvvdgLge5 .carousel-controls a:focus span {
  opacity: 1;
}
.cid-sgvvdgLge5 .carousel-controls a:hover svg,
.cid-sgvvdgLge5 .carousel-controls a:focus svg {
  transition: all .25s;
  stroke-width: 3;
}
.cid-sgvvdgLge5 .carousel-controls a:active svg {
  transition: all .1s;
  stroke-width: 5;
}
.cid-sgvvdgLge5 .user_image {
  overflow: hidden;
  display: flex;
}
.cid-sgvvdgLge5 .user_image .user_image_inner {
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: 0 auto 3rem auto;
}
.cid-sgvvdgLge5 .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sgvvdgLge5 .user_text {
  color: #767676;
}
.cid-sgvvdgLge5 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sgvvdgLge5 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #1ba1e2);
  display: inline-block;
}
.cid-sgvvdgLge5 .testimonials-quote svg {
  height: 30px;
  width: 30px;
}
.cid-sgvvdgLge5 svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-sgvvdgLge5 .user_name {
  color: #149dcc;
}
.cid-sgvvdgLge5 .carousel-controls svg {
  height: 60px;
}
@media (max-width: 230px) {
  .cid-sgvvdgLge5 .user_image_inner {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .cid-sgvvdgLge5 .testimonials-quote,
  .cid-sgvvdgLge5 .user_text,
  .cid-sgvvdgLge5 .user_name,
  .cid-sgvvdgLge5 .user_desk {
    text-align: center !important;
  }
  .cid-sgvvdgLge5 .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .cid-sgvvdgLge5 .mbr-section-title,
  .cid-sgvvdgLge5 .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-sgvvdgLge5 .carousel-control-prev span {
    right: -1rem;
  }
  .cid-sgvvdgLge5 .carousel-control-next span {
    left: -1rem;
  }
  .cid-sgvvdgLge5 .user-text {
    padding-right: 2rem;
  }
  .cid-sgvvdgLge5 .carousel-control-prev,
  .cid-sgvvdgLge5 .carousel-control-next {
    -webkit-align-items: center;
    align-items: center;
  }
}
.cid-sgvvdgLge5 .mbr-section-title,
.cid-sgvvdgLge5 .underline {
  color: #149dcc;
}
.cid-sgvwhMy0s0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sgvwhMy0s0 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgvwhMy0s0 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sgvwhMy0s0 .carousel-item .wrap-img {
  text-align: center;
}
.cid-sgvwhMy0s0 .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-sgvwhMy0s0 .carousel-control {
  transition: all .3s;
  opacity: 1;
  color: #000000;
  position: absolute;
  width: 100px;
  height: 100px;
  top: 65px;
}

.cid-sgvwhMy0s0 .carousel-control.carousel-control-prev:hover {
  left: -11px;
}

.cid-sgvwhMy0s0 .carousel-control.carousel-control-next:hover {
  right: -11px;
}
.cid-sgvwhMy0s0 .carousel-control .mbr-iconfont {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .cid-sgvwhMy0s0 .carousel-control {
    display: none;
  }
  .cid-sgvwhMy0s0 .mbr-section-title {
    padding-bottom: 0;
  }
  .cid-sgvwhMy0s0 .slider-clients {
    padding: 2rem 1rem;
  }
}
.cid-sgvwhMy0s0 .cloneditem-1,
.cid-sgvwhMy0s0 .cloneditem-2,
.cid-sgvwhMy0s0 .cloneditem-3,
.cid-sgvwhMy0s0 .cloneditem-4,
.cid-sgvwhMy0s0 .cloneditem-5 {
  display: none;
}
.cid-sgvwhMy0s0 .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sgvwhMy0s0 .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-sgvwhMy0s0 .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-sgvwhMy0s0 .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-sgvwhMy0s0 .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sgvwhMy0s0 .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides2 .cloneditem-1,
  .cid-sgvwhMy0s0 .carousel-inner.slides2 .cloneditem-2,
  .cid-sgvwhMy0s0 .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-sgvwhMy0s0 .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-sgvwhMy0s0 .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-sgvwhMy0s0 .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sgvwhMy0s0 .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides3 .cloneditem-1,
  .cid-sgvwhMy0s0 .carousel-inner.slides3 .cloneditem-2,
  .cid-sgvwhMy0s0 .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-sgvwhMy0s0 .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-sgvwhMy0s0 .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-sgvwhMy0s0 .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sgvwhMy0s0 .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides4 .cloneditem-1,
  .cid-sgvwhMy0s0 .carousel-inner.slides4 .cloneditem-2,
  .cid-sgvwhMy0s0 .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-sgvwhMy0s0 .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-sgvwhMy0s0 .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-sgvwhMy0s0 .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sgvwhMy0s0 .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides5 .cloneditem-1,
  .cid-sgvwhMy0s0 .carousel-inner.slides5 .cloneditem-2,
  .cid-sgvwhMy0s0 .carousel-inner.slides5 .cloneditem-3,
  .cid-sgvwhMy0s0 .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-sgvwhMy0s0 .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-sgvwhMy0s0 .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-sgvwhMy0s0 .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sgvwhMy0s0 .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sgvwhMy0s0 .carousel-inner.slides6 .cloneditem-1,
  .cid-sgvwhMy0s0 .carousel-inner.slides6 .cloneditem-2,
  .cid-sgvwhMy0s0 .carousel-inner.slides6 .cloneditem-3,
  .cid-sgvwhMy0s0 .carousel-inner.slides6 .cloneditem-4,
  .cid-sgvwhMy0s0 .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-sgvwhMy0s0 .mbr-section-title {
  margin: 0;
}
.cid-sgvwhMy0s0 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sgvwhMy0s0 .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sgvwhMy0s0 .slider-clients {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgvwhMy0s0 .slider-clients {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .cid-sgvwhMy0s0 .carousel-control-prev {
    left: 15px !important;
  }
  .cid-sgvwhMy0s0 .carousel-control-prev:hover {
    left: 0 !important;
  }
  .cid-sgvwhMy0s0 .carousel-control-next {
    right: 15px !important;
  }
  .cid-sgvwhMy0s0 .carousel-control-next:hover {
    right: 0 !important;
  }
}
.cid-sgvwhMy0s0 .mbr-section-title,
.cid-sgvwhMy0s0 .underline {
  color: #149dcc;
}
.cid-sgvI2H6j2k {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #232323;
}
.cid-sgvI2H6j2k .social-media {
  margin-top: 1.5rem;
}
.cid-sgvI2H6j2k .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sgvI2H6j2k .social-media ul li {
  margin-right: 1.5rem;
  display: inline-block;
}
.cid-sgvI2H6j2k .mbr-list ul {
  margin: 0;
  padding: 0;
}
.cid-sgvI2H6j2k .mbr-list ul li {
  margin-bottom: 0.5rem;
}
.cid-sgvI2H6j2k ul {
  list-style: none;
}
.cid-sgvI2H6j2k hr {
  margin-top: 2rem;
}
.cid-sgvI2H6j2k .sub-info {
  margin-top: 2rem;
}
.cid-sgvI2H6j2k .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-sgvI2H6j2k .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-sgvI2H6j2k .mbr-list,
.cid-sgvI2H6j2k .social-media UL {
  text-align: left;
}
.cid-sgvI2H6j2k .mbr-section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sgvI2H6j2k .mbr-list,
  .cid-sgvI2H6j2k .mbr-section-title {
    text-align: center !important;
  }
  .cid-sgvI2H6j2k .social-media {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sgvI2H6j2k .social-media ul li {
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .cid-sgvI2H6j2k .mbr-list {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sgvI2H6j2k .list-column {
    margin-bottom: 2rem;
  }
  .cid-sgvI2H6j2k hr {
    margin-top: 0;
    margin-bottom: .5rem;
  }
}
.cid-sgvI2H6j2k .sub-info,
.cid-sgvI2H6j2k .card-support {
  color: #767676;
}
.cid-sgvKCHlDpC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sgvKCHlDpC .mbr-text,
.cid-sgvKCHlDpC blockquote {
  color: #232323;
}
.cid-sgvLSEGLEs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sgvLSEGLEs .container-fluid {
  padding: 0 3rem;
}
.cid-sgvLSEGLEs .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #1ba1e2 50%, #1ba1e2 120%);
  display: inline-block;
}
.cid-sgvLSEGLEs .timeline-text-content {
  padding: 2rem 2.5rem;
  margin-left: 2rem;
  text-align: left;
}
.cid-sgvLSEGLEs .timeline-text-content p {
  margin-bottom: 0;
}
.cid-sgvLSEGLEs .time-line-date-content {
  margin-right: 2rem;
}
.cid-sgvLSEGLEs .time-line-date-content p {
  padding: 2rem 1.4rem;
  float: right;
}
.cid-sgvLSEGLEs .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.cid-sgvLSEGLEs .iconBackground {
  position: absolute;
  left: 25%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #149dcc;
  font-size: 30px;
  display: inline-block;
  top: 29px;
  margin-left: -10px;
}
.cid-sgvLSEGLEs .separline:before,
.cid-sgvLSEGLEs .first-separline:before {
  top: 3rem;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #149dcc;
  left: calc(25% - 1px);
  height: calc(100% + 2rem);
}
.cid-sgvLSEGLEs .separline:after {
  top: calc(100% + 6.1rem);
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #149dcc;
  left: calc(25% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-sgvLSEGLEs .container-fluid {
    padding: 0 1rem;
  }
  .cid-sgvLSEGLEs .iconBackground {
    left: 10px !important;
    top: 33px;
  }
  .cid-sgvLSEGLEs .separline:before,
  .cid-sgvLSEGLEs .first-separline:before {
    left: 9px !important;
    top: 3.3rem;
  }
  .cid-sgvLSEGLEs .separline:after {
    left: 9px !important;
    top: calc(100% + 6.4rem);
  }
  .cid-sgvLSEGLEs .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-sgvLSEGLEs .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-sgvLSEGLEs .time-line-date-content p {
    float: left !important;
  }
  .cid-sgvLSEGLEs .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
}
.cid-sgvLSEGLEs .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
.cid-sgvNNYMTVz {
  background-image: url("../../../assets/images/background4.jpg");
}
@media (max-width: 768px) {
  .cid-sgvNNYMTVz .mbr-text,
  .cid-sgvNNYMTVz .mbr-section-subtitle,
  .cid-sgvNNYMTVz .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sgAdv8eqhk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sgAdv8eqhk .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sgAdv8eqhk .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sgAdv8eqhk .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sgAdv8eqhk p {
  line-height: 1.6;
}
.cid-sgAdv8eqhk .rev,
.cid-sgAdv8eqhk .mbr-iconfont {
  display: inline-block;
}
.cid-sgAdv8eqhk .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sgAdv8eqhk .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-sgAdv8eqhk .card-box {
  padding: 1.5rem;
}
.cid-sgAdv8eqhk .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sgAdv8eqhk .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sgAdv8eqhk .mbr-section-title,
.cid-sgAdv8eqhk .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sgAdv8eqhk .rev {
  color: #0a1c44;
}
.cid-sgAdv8eqhk .card-text,
.cid-sgAdv8eqhk .mbr-section-btn,
.cid-sgAdv8eqhk .ico-line {
  color: #767676;
}
.cid-sgAeektTDL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sgAeektTDL .mbr-text {
  color: #767676;
}
.cid-sgAeektTDL h4 {
  text-align: center;
}
.cid-sgAeektTDL p {
  text-align: center;
}
.cid-sgAeektTDL .card .card-img {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgAeektTDL .card:hover .step {
  color: #ffffff;
  border: 0px solid transparent;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sgAeektTDL .card:hover .step:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cid-sgAeektTDL .step {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s;
}
.cid-sgAeektTDL .step:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.3s;
  background: linear-gradient(45deg, #ff3366, #149dcc);
  border-radius: 50%;
}
.cid-sgAeektTDL .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sgAeektTDL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #1ba1e2);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-sgAeektTDL .mbr-section-title,
  .cid-sgAeektTDL .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-sgAejYIrYT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-sgAejYIrYT .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-sgAejYIrYT .mbr-section-title {
  margin: 0;
}
.cid-sgAejYIrYT .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sgAejYIrYT .card-img span {
  color: #1dc9cb;
}
.cid-sgAejYIrYT .row-item {
  margin-bottom: 2rem;
}
.cid-sgAejYIrYT .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-sgAejYIrYT .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-sgAejYIrYT .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-sgAejYIrYT .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sgBTA3BtNi {
  background-color: #ffffff;
}
.cid-sgBTA3BtNi .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgBTA3BtNi .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-sgBTA3BtNi .form-control {
  padding: 1.7rem 2rem;
}
.cid-sgBTA3BtNi .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-sgBTA3BtNi .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sgBTA3BtNi .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #1ba1e2);
  display: inline-block;
}
.cid-sgBTA3BtNi .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sgBTA3BtNi .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-sgBTA3BtNi {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sgBTA3BtNi .social-media {
    padding: 0;
    display: block;
  }
  .cid-sgBTA3BtNi .subtext-1,
  .cid-sgBTA3BtNi .subtext-2 {
    text-align: center !important;
  }
  .cid-sgBTA3BtNi .form-text {
    text-align: center !important;
  }
  .cid-sgBTA3BtNi .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-sgBTA3BtNi .input-group-btn {
    position: static;
  }
  .cid-sgBTA3BtNi .input-group-btn .btn {
    display: block;
  }
}
.cid-sgBUgwCFXN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sgBUgwCFXN .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-sgBUgwCFXN .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sgBUgwCFXN .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-sgBUgwCFXN .form-group {
  padding-right: 0;
}
.cid-sgBUgwCFXN .card {
  padding: 3rem 8rem;
}
.cid-sgBUgwCFXN .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-sgBUgwCFXN .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-sgBUgwCFXN .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sgBUgwCFXN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sgBUgwCFXN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgBUgwCFXN .map-placeholder {
  display: none;
}
.cid-sgBUgwCFXN .btn-primary {
  border: 1px solid #1ba1e2 !important;
}
.cid-sgBUgwCFXN .btn-primary:hover {
  border: 1px solid #1ba1e2 !important;
}
.cid-sgBUgwCFXN .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sgBUgwCFXN .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sgBUgwCFXN .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sgBUgwCFXN .mbr-text {
  color: #444;
}
.cid-sgBUgwCFXN h5 {
  margin-bottom: 0;
}
.cid-sgBUgwCFXN .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sgBUgwCFXN .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sgBUgwCFXN .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sgBUgwCFXN .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgBUgwCFXN .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sgBUgwCFXN .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sgBUgwCFXN .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sgBUgwCFXN .social-list a:hover {
  opacity: 0.4;
}
.cid-sgBUgwCFXN .media-container-row > div {
  padding: 0px;
}
.cid-sgBUgwCFXN .text2 {
  color: #000000;
  text-align: left;
}
.cid-sgBUgwCFXN .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sgBUgwCFXN .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-sgBUgwCFXN .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-sgBUgwCFXN .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sgBUgwCFXN h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sgBUgwCFXN .form-group {
    max-width: 180px;
  }
  .cid-sgBUgwCFXN .card {
    padding: 2rem 1rem;
  }
}
.cid-sgBUgwCFXN .links span {
  color: #9e9e9e;
}
.cid-sgBUgwCFXN .logo-title,
.cid-sgBUgwCFXN .logo-sub-title {
  text-align: center;
}
.cid-sgBUgwCFXN .logo-sub-title i {
  color: #9e9e9e;
}
.cid-shfm7ruBIL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-shfm7ruBIL *:focus {
  outline: none;
}
.cid-shfm7ruBIL .form-group {
  margin-bottom: 2rem;
}
.cid-shfm7ruBIL .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #232323;
  color: #232323;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-shfm7ruBIL .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-shfm7ruBIL .form-control::-webkit-input-placeholder {
  color: #232323;
}
.cid-shfm7ruBIL .form-control::-moz-placeholder {
  color: #232323;
}
.cid-shfm7ruBIL .form-control:-ms-input-placeholder {
  color: #232323;
}
.cid-shfm7ruBIL .form-control:-moz-placeholder {
  color: #232323;
}
.cid-shfm7ruBIL input.form-control {
  padding: 1px 0;
}
.cid-shfm7ruBIL .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-shfm7ruBIL .soc-item .socicon {
  font-size: 1.5rem;
  color: #000000;
  opacity: 1;
}
.cid-shfm7ruBIL .soc-item .socicon:hover {
  opacity: .5;
}
.cid-shfm7ruBIL .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-shfm7ruBIL .first-column,
  .cid-shfm7ruBIL .form-1 {
    text-align: center;
  }
}
