body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.06rem;
}
/* ---- 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.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((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.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((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 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #4284df !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #4284df !important;
  border-color: #4284df !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-primary:before {
  background-color: #1f5eb6 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1f5eb6 !important;
  border-color: #1f5eb6 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-secondary:before {
  background-color: #eb3934 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #1b53a0;
  color: #1b53a0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #4284df;
}
.btn-primary-outline:before {
  background-color: #4284df;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}
.btn-secondary-outline:before {
  background-color: #f27d7a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4284df;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #4284df !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1b53a0 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4284df;
  border-color: #4284df;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4284df;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f0f6fd;
}
.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: #b083d5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #4284df;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #4284df;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #4284df;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4284df;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #4284df;
  border-bottom-color: #4284df;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4284df !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: #f27d7a !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='%234284df' %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-sdTTSuVwdr .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sdTTSuVwdr .navbar-fixed-top {
  padding-top: 0;
}
.cid-sdTTSuVwdr .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sdTTSuVwdr .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdTTSuVwdr .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sdTTSuVwdr .dropdown-item {
  padding: 0;
}
.cid-sdTTSuVwdr .dropdown-item,
.cid-sdTTSuVwdr .nav-link,
.cid-sdTTSuVwdr .brand-name {
  font-style: normal;
}
.cid-sdTTSuVwdr .dropdown-item:hover,
.cid-sdTTSuVwdr .nav-link:hover,
.cid-sdTTSuVwdr .brand-name:hover {
  color: #4284df !important;
}
.cid-sdTTSuVwdr .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sdTTSuVwdr .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sdTTSuVwdr .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sdTTSuVwdr .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sdTTSuVwdr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sdTTSuVwdr .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sdTTSuVwdr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-sdTTSuVwdr .content-text {
  margin-bottom: 0;
}
.cid-sdTTSuVwdr .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sdTTSuVwdr .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -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-sdTTSuVwdr .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sdTTSuVwdr .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sdTTSuVwdr .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sdTTSuVwdr .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdTTSuVwdr .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdTTSuVwdr .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sdTTSuVwdr .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdTTSuVwdr .nav-dropdown .link {
  font-weight: 400;
}
.cid-sdTTSuVwdr .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sdTTSuVwdr .content-right-side {
  text-align: center;
}
.cid-sdTTSuVwdr .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sdTTSuVwdr .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sdTTSuVwdr .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sdTTSuVwdr .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTTSuVwdr .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTTSuVwdr .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sdTTSuVwdr .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sdTTSuVwdr .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sdTTSuVwdr .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sdTTSuVwdr .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sdTTSuVwdr .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sdTTSuVwdr .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdTTSuVwdr .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sdTTSuVwdr .navbar {
    display: block;
    padding: 0;
  }
  .cid-sdTTSuVwdr .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdTTSuVwdr .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-sdTTSuVwdr .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sdTTSuVwdr .navbar-toggler {
    display: none;
  }
  .cid-sdTTSuVwdr .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sdTTSuVwdr .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sdTTSuVwdr .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdTTSuVwdr .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sdTTSuVwdr .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sdTTSuVwdr .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-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdTTSuVwdr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdTTSuVwdr .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-sdTTSuVwdr .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdTTSuVwdr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sdTTSuVwdr button.navbar-toggler:focus {
  outline: none;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sdTTSuVwdr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sdTTSuVwdr .collapsed .btn {
  display: flex;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sdTTSuVwdr .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdTTSuVwdr .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdTTSuVwdr .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sdTTSuVwdr .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sdTTSuVwdr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sdTTSuVwdr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdTTSuVwdr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdTTSuVwdr .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sdTTSuVwdr .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sdTTSuVwdr .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-sdTTSuVwdr .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-sdTTSuVwdr .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sdTTSuVwdr .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sdTTSuVwdr .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing,
  .cid-sdTTSuVwdr .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-nav,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdTTSuVwdr img {
    height: 3.8rem !important;
  }
  .cid-sdTTSuVwdr .btn {
    display: flex;
  }
  .cid-sdTTSuVwdr button.navbar-toggler {
    display: block;
  }
  .cid-sdTTSuVwdr .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sdTTSuVwdr .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdTTSuVwdr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sdTTSuVwdr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdTTSuVwdr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdTTSuVwdr .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sdTTSuVwdr .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sdTTSuVwdr .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sdTTSuVwdr .nav-link:focus {
  outline: none;
}
.cid-sdTTSuVwdr .navbar-toggler {
  position: relative;
}
.cid-sdTTSuVwdr .dropdown-item.active,
.cid-sdTTSuVwdr .dropdown-item:active {
  color: initial;
}
.cid-sdTTSuVwdr .widget-title,
.cid-sdTTSuVwdr .widget-icon {
  color: #e9e9e9;
}
.cid-sdTTSuVwdr .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sdTTSuVwdr .menu-logo {
    display: none;
  }
  .cid-sdTTSuVwdr .navbar {
    padding: 0;
  }
  .cid-sdTTSuVwdr .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdTTSuVwdr button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sdTU49XwPz {
  padding-top: 160px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background10.jpg");
}
.cid-sdTU49XwPz .media-content .btn-bgr {
  z-index: 0;
}
.cid-sdTU49XwPz .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-sdTU49XwPz .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-sdTU49XwPz {
    text-align: center !important;
  }
  .cid-sdTU49XwPz .mbr-text {
    text-align: center;
  }
}
.cid-sdTU49XwPz .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sdTUc26Zym {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-sdTUiu88U6 {
  padding-top: 120px;
  background-image: url("../../../assets/images/background12.jpg");
}
.cid-sdTUiu88U6 .container {
  margin-bottom: 15%;
}
.cid-sdTUiu88U6 .content-container .btn-bgr {
  z-index: 0;
}
.cid-sdTUiu88U6 .container-boxes {
  padding-bottom: 30px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sdTUiu88U6 .icon-block-top span {
  background-color: #172eca;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sdTUiu88U6 .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sdTUiu88U6 .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sdTUiu88U6 .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sdTUiu88U6 .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sdTUiu88U6 .box-item-text,
.cid-sdTUiu88U6 .mbr-section-btn {
  color: #8d97ad;
}
.cid-sdTUiu88U6 .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sdTUiu88U6 .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sdTUiu88U6 .box-list li:last-child {
  border-bottom: none;
}
.cid-sdTUiu88U6 .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sdTUiu88U6 .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sdTUiu88U6 .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sdTUiu88U6 .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sdTUiu88U6 .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sdTUiu88U6 .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sdTUiu88U6 .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sdTUiu88U6 .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sdTUiu88U6 .mbr-text {
  color: #efefef;
}
.cid-sdTUiu88U6 H1 {
  color: #ffffff;
}
#custom-html-l {
  /* Type valid CSS here */
}
#custom-html-l div {
  padding: 0px 0;
  color: #777;
  text-align: center;
}
#custom-html-l p {
  font-size: 80px;
  color: #444;
}
.cid-sdTUCUhAJ6 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sdTUCUhAJ6 H1 {
  color: #232323;
}
.cid-sdTUCUhAJ6 .mbr-text,
.cid-sdTUCUhAJ6 .mbr-section-btn {
  color: #767676;
}
.cid-sdTUCUhAJ6 .img1 {
  box-shadow: 0 10px 55px 5px rgba(247, 170, 168, 0.35);
  border-radius: 10px;
}
.cid-sdTUCUhAJ6 .relative {
  position: relative;
}
.cid-sdTUCUhAJ6 .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-sdTUCUhAJ6 .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-sdTUCUhAJ6 .card-img2 .img2 {
  width: 120%;
}
.cid-sdTUCUhAJ6 .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-sdTUCUhAJ6 .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-sdTUCUhAJ6 .img2 {
  box-shadow: 0 10px 55px 5px rgba(247, 170, 168, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-sdTUu8fazS {
  background-color: #000000;
}
.cid-sdTUu8fazS .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sdTUu8fazS .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sdTUu8fazS .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTUu8fazS .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-sdTUu8fazS .image-element {
    padding-left: 0;
  }
}
.cid-sdTUu8fazS .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-sdTUu8fazS .mbr-text {
  color: #cccccc;
  line-height: 27px;
}
.cid-sdTUu8fazS .brown {
  color: #4284df;
}
.cid-sdTUu8fazS .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTUu8fazS .paragraphs-wrapper .first-paragraph,
.cid-sdTUu8fazS .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sdTUu8fazS .image-element {
    padding-top: 1rem;
  }
  .cid-sdTUu8fazS .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdTUu8fazS .paragraphs-wrapper .first-paragraph,
  .cid-sdTUu8fazS .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-sdTUu8fazS .first-paragraph,
  .cid-sdTUu8fazS .second-paragraph {
    width: 50%;
  }
  .cid-sdTUu8fazS .first-paragraph {
    padding-right: .5rem;
  }
  .cid-sdTUu8fazS .second-paragraph {
    padding-left: .5rem;
  }
  .cid-sdTUu8fazS .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-sdTUu8fazS .mbr-section-title,
  .cid-sdTUu8fazS .mbr-section-btn {
    text-align: left;
  }
}
.cid-sdTUu8fazS .mbr-text,
.cid-sdTUu8fazS .mbr-section-btn {
  color: #cccccc;
}
.cid-sdTUu8fazS .title,
.cid-sdTUu8fazS .brown {
  color: #ea199c;
}
.cid-sdTVhyd5St {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sdTVhyd5St .mbr-section-subtitle {
  color: #767676;
}
.cid-sdTVhyd5St .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sdTVhyd5St .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sdTVhyd5St .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sdTVhyd5St .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sdTVhyd5St .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #e96188;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #e96188, #4e84c2);
}
.cid-sdTVhyd5St .icon-focus,
.cid-sdTVhyd5St .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sdTVhyd5St .icon-focus:before,
.cid-sdTVhyd5St .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdTVhyd5St .icon-video {
  font-size: 1.5rem !important;
}
.cid-sdTVhyd5St .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  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-sdTVhyd5St ul {
  font-size: 0;
}
.cid-sdTVhyd5St .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sdTVhyd5St .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sdTVhyd5St .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #e96188 !important;
}
.cid-sdTVhyd5St .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sdTVhyd5St .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sdTVhyd5St .mbr-gallery-filter ul li.active .btn:after {
  border-color: #e96188;
}
.cid-sdTVhyd5St .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sdTVhyd5St .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sdTVhyd5St .mbr-gallery-filter ul li:first-child,
.cid-sdTVhyd5St .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sdTVhyd5St .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sdTVhyd5St .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sdTVLRo1ut {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-sdTVLRo1ut .signature {
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.cid-sdTVLRo1ut .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sdTVLRo1ut .card-img {
  margin-bottom: 1rem;
}
.cid-sdTVLRo1ut .card-img span {
  font-size: 60px;
}
.cid-sdTVLRo1ut .mbr-text,
.cid-sdTVLRo1ut .mbr-section-btn {
  text-align: center;
}
.cid-sdTVIjZHjd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sdTVIjZHjd img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sdTVIjZHjd img:hover {
  transform: scale(1.1);
}
.cid-sdTVIjZHjd .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sdTVIjZHjd h2 {
  padding: 0;
  margin: 0;
}
.cid-sdTVIjZHjd .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sdTVIjZHjd .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sdTVIjZHjd .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-sdTVIjZHjd .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-sdTVIjZHjd .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-sdTVIjZHjd .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-sdTVIjZHjd .mbr-iconfont {
  margin: 0!important;
}
.cid-sdTVIjZHjd .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sdTVIjZHjd .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sdTVIjZHjd .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sdTVIjZHjd .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-sdTVIjZHjd .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sdTVIjZHjd H2 {
  color: #333333;
}
.cid-sdTVIjZHjd .mbr-text {
  color: #767676;
}
.cid-sdTV31p8WE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-sdTV31p8WE h2,
.cid-sdTV31p8WE h3,
.cid-sdTV31p8WE p,
.cid-sdTV31p8WE h4 {
  color: #0a0a0a;
}
.cid-sdTV31p8WE .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-sdTV31p8WE .mbr-iconfont {
  color: #4284df;
  font-size: 2rem;
}
.cid-sdTV31p8WE .form-control {
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
}
.cid-sdTV31p8WE .mbr-text {
  color: #767676;
}
.cid-sdTV31p8WE a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sdTV31p8WE .input-group-btn {
  display: block;
  text-align: center;
}
.cid-sdTV31p8WE .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-sdTV31p8WE textarea.form-control {
  resize: none;
}
.cid-sdTV31p8WE .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-sdTV31p8WE .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-sdTV31p8WE .list-block {
  position: relative;
}
.cid-sdTV31p8WE .list-block h4,
.cid-sdTV31p8WE .list-block p {
  padding-left: 3.5rem;
}
.cid-sdTV31p8WE .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-sdTV31p8WE h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sdTV31p8WE .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sdTV31p8WE .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-sdTV31p8WE .img-block-wrap {
    position: relative;
  }
  .cid-sdTV31p8WE .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-sdTV31p8WE .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-sdTV31p8WE .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sdTV31p8WE .google-map {
    padding-bottom: 2rem;
  }
  .cid-sdTV31p8WE .img-block {
    overflow: hidden;
  }
}
.cid-sdTVwooY3Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1a032d;
}
.cid-sdTVwooY3Y p {
  text-align: center;
}
.cid-sdTVwooY3Y .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-sdTVwooY3Y .social-list a:focus {
  text-decoration: none;
}
.cid-sdTVwooY3Y .text-copyright {
  width: 100%;
  color: #ffffff;
}
.cid-sdTVwooY3Y .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sdTVwooY3Y .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-sdTVwooY3Y .logo-footer {
  line-height: normal;
}
.cid-sdTVwooY3Y .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTVwooY3Y .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdTVwooY3Y .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTVwooY3Y img {
  display: inline;
}
.cid-sdTTSuVwdr .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sdTTSuVwdr .navbar-fixed-top {
  padding-top: 0;
}
.cid-sdTTSuVwdr .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sdTTSuVwdr .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdTTSuVwdr .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sdTTSuVwdr .dropdown-item {
  padding: 0;
}
.cid-sdTTSuVwdr .dropdown-item,
.cid-sdTTSuVwdr .nav-link,
.cid-sdTTSuVwdr .brand-name {
  font-style: normal;
}
.cid-sdTTSuVwdr .dropdown-item:hover,
.cid-sdTTSuVwdr .nav-link:hover,
.cid-sdTTSuVwdr .brand-name:hover {
  color: #4284df !important;
}
.cid-sdTTSuVwdr .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sdTTSuVwdr .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sdTTSuVwdr .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sdTTSuVwdr .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sdTTSuVwdr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sdTTSuVwdr .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sdTTSuVwdr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-sdTTSuVwdr .content-text {
  margin-bottom: 0;
}
.cid-sdTTSuVwdr .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sdTTSuVwdr .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -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-sdTTSuVwdr .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sdTTSuVwdr .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sdTTSuVwdr .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sdTTSuVwdr .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdTTSuVwdr .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdTTSuVwdr .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sdTTSuVwdr .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdTTSuVwdr .nav-dropdown .link {
  font-weight: 400;
}
.cid-sdTTSuVwdr .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sdTTSuVwdr .content-right-side {
  text-align: center;
}
.cid-sdTTSuVwdr .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sdTTSuVwdr .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sdTTSuVwdr .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sdTTSuVwdr .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTTSuVwdr .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTTSuVwdr .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sdTTSuVwdr .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sdTTSuVwdr .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sdTTSuVwdr .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sdTTSuVwdr .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sdTTSuVwdr .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sdTTSuVwdr .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdTTSuVwdr .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sdTTSuVwdr .navbar {
    display: block;
    padding: 0;
  }
  .cid-sdTTSuVwdr .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdTTSuVwdr .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-sdTTSuVwdr .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sdTTSuVwdr .navbar-toggler {
    display: none;
  }
  .cid-sdTTSuVwdr .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sdTTSuVwdr .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sdTTSuVwdr .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdTTSuVwdr .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sdTTSuVwdr .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sdTTSuVwdr .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-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdTTSuVwdr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdTTSuVwdr .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-sdTTSuVwdr .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdTTSuVwdr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sdTTSuVwdr button.navbar-toggler:focus {
  outline: none;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sdTTSuVwdr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sdTTSuVwdr .collapsed .btn {
  display: flex;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sdTTSuVwdr .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdTTSuVwdr .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdTTSuVwdr .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sdTTSuVwdr .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sdTTSuVwdr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sdTTSuVwdr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdTTSuVwdr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdTTSuVwdr .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sdTTSuVwdr .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sdTTSuVwdr .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-sdTTSuVwdr .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-sdTTSuVwdr .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sdTTSuVwdr .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sdTTSuVwdr .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing,
  .cid-sdTTSuVwdr .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-nav,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdTTSuVwdr img {
    height: 3.8rem !important;
  }
  .cid-sdTTSuVwdr .btn {
    display: flex;
  }
  .cid-sdTTSuVwdr button.navbar-toggler {
    display: block;
  }
  .cid-sdTTSuVwdr .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sdTTSuVwdr .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdTTSuVwdr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sdTTSuVwdr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdTTSuVwdr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdTTSuVwdr .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sdTTSuVwdr .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sdTTSuVwdr .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sdTTSuVwdr .nav-link:focus {
  outline: none;
}
.cid-sdTTSuVwdr .navbar-toggler {
  position: relative;
}
.cid-sdTTSuVwdr .dropdown-item.active,
.cid-sdTTSuVwdr .dropdown-item:active {
  color: initial;
}
.cid-sdTTSuVwdr .widget-title,
.cid-sdTTSuVwdr .widget-icon {
  color: #e9e9e9;
}
.cid-sdTTSuVwdr .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sdTTSuVwdr .menu-logo {
    display: none;
  }
  .cid-sdTTSuVwdr .navbar {
    padding: 0;
  }
  .cid-sdTTSuVwdr .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdTTSuVwdr button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sdYgQcnrfK {
  background-image: url("../../../assets/images/adobestock-219653044-2000x1333.jpg");
  background-position: right;
}
.cid-sdYgQcnrfK .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-sdYgQcnrfK .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-sdYgQcnrfK .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sdYgQcnrfK img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-sdYgQcnrfK .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sdYi9kfSRd {
  padding-top: 120px;
  background-image: url("../../../assets/images/background12.jpg");
}
.cid-sdYi9kfSRd .container {
  margin-bottom: 15%;
}
.cid-sdYi9kfSRd .content-container .btn-bgr {
  z-index: 0;
}
.cid-sdYi9kfSRd .container-boxes {
  padding-bottom: 30px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sdYi9kfSRd .icon-block-top span {
  background-color: #172eca;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sdYi9kfSRd .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sdYi9kfSRd .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sdYi9kfSRd .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sdYi9kfSRd .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sdYi9kfSRd .box-item-text,
.cid-sdYi9kfSRd .mbr-section-btn {
  color: #8d97ad;
}
.cid-sdYi9kfSRd .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sdYi9kfSRd .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sdYi9kfSRd .box-list li:last-child {
  border-bottom: none;
}
.cid-sdYi9kfSRd .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sdYi9kfSRd .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sdYi9kfSRd .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sdYi9kfSRd .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sdYi9kfSRd .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sdYi9kfSRd .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sdYi9kfSRd .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sdYi9kfSRd .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sdYi9kfSRd .mbr-text {
  color: #efefef;
}
.cid-sdYi9kfSRd H1 {
  color: #ffffff;
}
.cid-sdYibmjom3 {
  padding-top: 0px;
  background-color: #ffffff;
}
.cid-sdYibmjom3 .container {
  margin-bottom: 15%;
}
.cid-sdYibmjom3 .content-container .btn-bgr {
  z-index: 0;
}
.cid-sdYibmjom3 .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sdYibmjom3 .icon-block-top span {
  background-color: #172eca;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sdYibmjom3 .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sdYibmjom3 .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sdYibmjom3 .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sdYibmjom3 .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sdYibmjom3 .box-item-text,
.cid-sdYibmjom3 .mbr-section-btn {
  color: #8d97ad;
}
.cid-sdYibmjom3 .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sdYibmjom3 .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sdYibmjom3 .box-list li:last-child {
  border-bottom: none;
}
.cid-sdYibmjom3 .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sdYibmjom3 .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sdYibmjom3 .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sdYibmjom3 .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sdYibmjom3 .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sdYibmjom3 .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sdYibmjom3 .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sdYibmjom3 .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sdYibmjom3 .mbr-text {
  color: #efefef;
}
.cid-sdYibmjom3 H1 {
  color: #ffffff;
}
.cid-sdYk9l2luE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sdYk9l2luE .mbr-section-title,
.cid-sdYk9l2luE .mbr-section-subtitle {
  color: #000000;
}
.cid-sdYk9l2luE .mbr-section-text {
  color: #232323;
}
.cid-sdYk9l2luE .mbr-text,
.cid-sdYk9l2luE .typed-text,
.cid-sdYk9l2luE .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sdYk9l2luE .btn {
  margin-left: 4px !important;
}
.cid-sdYk9l2luE .animated-element {
  color: #ff3366;
}
.cid-sdYk9l2luE .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sdYk9l2luE .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sdYk9l2luE .typed-text,
  .cid-sdYk9l2luE .mbr-section-subtitle,
  .cid-sdYk9l2luE .mbr-section-text,
  .cid-sdYk9l2luE .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sdYkgxnOWi {
  padding-top: 0px;
  background-color: #ffffff;
}
.cid-sdYkgxnOWi .container {
  margin-bottom: 15%;
}
.cid-sdYkgxnOWi .content-container .btn-bgr {
  z-index: 0;
}
.cid-sdYkgxnOWi .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sdYkgxnOWi .icon-block-top span {
  background-color: #172eca;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sdYkgxnOWi .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sdYkgxnOWi .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sdYkgxnOWi .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sdYkgxnOWi .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sdYkgxnOWi .box-item-text,
.cid-sdYkgxnOWi .mbr-section-btn {
  color: #8d97ad;
}
.cid-sdYkgxnOWi .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sdYkgxnOWi .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sdYkgxnOWi .box-list li:last-child {
  border-bottom: none;
}
.cid-sdYkgxnOWi .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sdYkgxnOWi .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sdYkgxnOWi .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sdYkgxnOWi .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sdYkgxnOWi .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sdYkgxnOWi .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sdYkgxnOWi .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sdYkgxnOWi .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sdYkgxnOWi .mbr-text {
  color: #efefef;
}
.cid-sdYkgxnOWi H1 {
  color: #ffffff;
}
.cid-sdYmuxt3HZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #4284df;
}
.cid-sdYmuxt3HZ h2,
.cid-sdYmuxt3HZ h3,
.cid-sdYmuxt3HZ h4,
.cid-sdYmuxt3HZ p {
  color: #ffffff;
}
.cid-sdYmuxt3HZ .mbr-overlay {
  z-index: -1;
}
.cid-sdYmuxt3HZ .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sdYmuxt3HZ .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-sdYmuxt3HZ .form-control:focus,
.cid-sdYmuxt3HZ .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-sdYmuxt3HZ .form-group {
  margin-bottom: 1rem;
}
.cid-sdYmuxt3HZ input::-webkit-input-placeholder,
.cid-sdYmuxt3HZ textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-sdYmuxt3HZ input:-moz-placeholder,
.cid-sdYmuxt3HZ textarea:-moz-placeholder {
  color: #656565;
}
.cid-sdYmuxt3HZ .jq-selectbox li,
.cid-sdYmuxt3HZ .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sdYmuxt3HZ .jq-selectbox li:hover,
.cid-sdYmuxt3HZ .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sdYmuxt3HZ .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sdYmuxt3HZ .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sdYmuxt3HZ .subtext {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.cid-sdYmuxt3HZ .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdYmuxt3HZ .mbr-text {
  color: #767676;
}
.cid-sdYmuxt3HZ .form-block {
  padding: 3rem;
  position: relative;
}
.cid-sdYmuxt3HZ .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-sdYmuxt3HZ .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-sdYmuxt3HZ a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sdYmuxt3HZ .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sdYmuxt3HZ .input-group-btn {
  display: block;
  text-align: center;
}
.cid-sdYmuxt3HZ textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-sdYmuxt3HZ .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sdYmuxt3HZ .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-sdYmuxt3HZ .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sdYmuxt3HZ h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sdYmuxt3HZ .block-content {
    padding: 0;
  }
  .cid-sdYmuxt3HZ .form-block {
    padding: 1rem;
  }
}
.cid-sxuHRw2u8u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1a032d;
}
.cid-sxuHRw2u8u p {
  text-align: center;
}
.cid-sxuHRw2u8u .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-sxuHRw2u8u .social-list a:focus {
  text-decoration: none;
}
.cid-sxuHRw2u8u .text-copyright {
  width: 100%;
  color: #ffffff;
}
.cid-sxuHRw2u8u .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sxuHRw2u8u .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-sxuHRw2u8u .logo-footer {
  line-height: normal;
}
.cid-sxuHRw2u8u .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sxuHRw2u8u .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sxuHRw2u8u .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sxuHRw2u8u img {
  display: inline;
}
.cid-sdTTSuVwdr .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sdTTSuVwdr .navbar-fixed-top {
  padding-top: 0;
}
.cid-sdTTSuVwdr .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sdTTSuVwdr .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdTTSuVwdr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdTTSuVwdr .menu-content-top {
  background: #0a1c44;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sdTTSuVwdr .dropdown-item {
  padding: 0;
}
.cid-sdTTSuVwdr .dropdown-item,
.cid-sdTTSuVwdr .nav-link,
.cid-sdTTSuVwdr .brand-name {
  font-style: normal;
}
.cid-sdTTSuVwdr .dropdown-item:hover,
.cid-sdTTSuVwdr .nav-link:hover,
.cid-sdTTSuVwdr .brand-name:hover {
  color: #4284df !important;
}
.cid-sdTTSuVwdr .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sdTTSuVwdr .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sdTTSuVwdr .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sdTTSuVwdr .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sdTTSuVwdr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sdTTSuVwdr .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sdTTSuVwdr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-sdTTSuVwdr .content-text {
  margin-bottom: 0;
}
.cid-sdTTSuVwdr .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sdTTSuVwdr .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -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-sdTTSuVwdr .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sdTTSuVwdr .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sdTTSuVwdr .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sdTTSuVwdr .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdTTSuVwdr .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdTTSuVwdr .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sdTTSuVwdr .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdTTSuVwdr .nav-dropdown .link {
  font-weight: 400;
}
.cid-sdTTSuVwdr .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sdTTSuVwdr .content-right-side {
  text-align: center;
}
.cid-sdTTSuVwdr .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sdTTSuVwdr .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sdTTSuVwdr .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sdTTSuVwdr .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTTSuVwdr .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdTTSuVwdr .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sdTTSuVwdr .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sdTTSuVwdr .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sdTTSuVwdr .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sdTTSuVwdr .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sdTTSuVwdr .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sdTTSuVwdr .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdTTSuVwdr .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sdTTSuVwdr .navbar {
    display: block;
    padding: 0;
  }
  .cid-sdTTSuVwdr .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdTTSuVwdr .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-sdTTSuVwdr .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sdTTSuVwdr .navbar-toggler {
    display: none;
  }
  .cid-sdTTSuVwdr .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sdTTSuVwdr .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sdTTSuVwdr .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdTTSuVwdr .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdTTSuVwdr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sdTTSuVwdr .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sdTTSuVwdr .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-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdTTSuVwdr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdTTSuVwdr .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-sdTTSuVwdr .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdTTSuVwdr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdTTSuVwdr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sdTTSuVwdr button.navbar-toggler:focus {
  outline: none;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdTTSuVwdr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sdTTSuVwdr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdTTSuVwdr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sdTTSuVwdr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sdTTSuVwdr .collapsed .btn {
  display: flex;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sdTTSuVwdr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdTTSuVwdr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sdTTSuVwdr .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdTTSuVwdr .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdTTSuVwdr .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sdTTSuVwdr .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sdTTSuVwdr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sdTTSuVwdr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdTTSuVwdr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdTTSuVwdr .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sdTTSuVwdr .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sdTTSuVwdr .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-sdTTSuVwdr .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-sdTTSuVwdr .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sdTTSuVwdr .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sdTTSuVwdr .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing,
  .cid-sdTTSuVwdr .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-nav,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sdTTSuVwdr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdTTSuVwdr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdTTSuVwdr img {
    height: 3.8rem !important;
  }
  .cid-sdTTSuVwdr .btn {
    display: flex;
  }
  .cid-sdTTSuVwdr button.navbar-toggler {
    display: block;
  }
  .cid-sdTTSuVwdr .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sdTTSuVwdr .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdTTSuVwdr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sdTTSuVwdr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdTTSuVwdr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdTTSuVwdr .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sdTTSuVwdr .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sdTTSuVwdr .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sdTTSuVwdr .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sdTTSuVwdr .nav-link:focus {
  outline: none;
}
.cid-sdTTSuVwdr .navbar-toggler {
  position: relative;
}
.cid-sdTTSuVwdr .dropdown-item.active,
.cid-sdTTSuVwdr .dropdown-item:active {
  color: initial;
}
.cid-sdTTSuVwdr .widget-title,
.cid-sdTTSuVwdr .widget-icon {
  color: #e9e9e9;
}
.cid-sdTTSuVwdr .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sdTTSuVwdr .menu-logo {
    display: none;
  }
  .cid-sdTTSuVwdr .navbar {
    padding: 0;
  }
  .cid-sdTTSuVwdr .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdTTSuVwdr button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sdXZxHyNzO {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sdXZxHyNzO .mbr-figure {
  padding: 0;
}
.cid-sdXZxHyNzO .content-row {
  background-color: #0c57bf;
}
.cid-sdXZxHyNzO .content-row .media-content {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  background-image: url("../../../assets/images/background2.jpg");
}
@media (min-width: 992px) {
  .cid-sdXZxHyNzO .content-row .media-content {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-sdXZxHyNzO .content-row .media-content .mbr-overlay {
  background: linear-gradient(90deg, #0c57bf, #6441a5);
}
.cid-sdXZxHyNzO .content-row .media-content .content-block {
  z-index: 1;
}
.cid-sdY1VUGHun {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-sdY1VUGHun .mbr-overlay {
  background: linear-gradient(90deg, #6441a5, #2a0845);
}
.cid-sdY1VUGHun .media-container-row img {
  -webkit-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  -moz-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
}
.cid-sdY1VUGHun .media-container-row:hover img {
  -webkit-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}
@media (min-width: 992px) {
  .cid-sdY1VUGHun .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sdY1VUGHun .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-sdY1VUGHun {
    text-align: center !important;
  }
}
.cid-sdXZXgZ2k7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #106dd2;
}
.cid-sdXZXgZ2k7 .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-sdXZXgZ2k7 .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-sdXZXgZ2k7 .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sdXZXgZ2k7 .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sdXZXgZ2k7 .link {
  letter-spacing: 2px;
}
.cid-sdXZXgZ2k7 .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-sdXZXgZ2k7 .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sdXZXgZ2k7 .card {
    padding-bottom: 2rem;
  }
}
.cid-sdXZXgZ2k7 .main-subtitle,
.cid-sdXZXgZ2k7 .underline {
  color: #ffffff;
}
.cid-sxI51WE5gW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1a032d;
}
.cid-sxI51WE5gW p {
  text-align: center;
}
.cid-sxI51WE5gW .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-sxI51WE5gW .social-list a:focus {
  text-decoration: none;
}
.cid-sxI51WE5gW .text-copyright {
  width: 100%;
  color: #ffffff;
}
.cid-sxI51WE5gW .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sxI51WE5gW .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-sxI51WE5gW .logo-footer {
  line-height: normal;
}
.cid-sxI51WE5gW .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sxI51WE5gW .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sxI51WE5gW .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sxI51WE5gW img {
  display: inline;
}
