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





body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.375rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.2rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 20px 30px;
  border-radius: 8px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #25d366 !important;
}
.bg-info {
  background-color: #999999 !important;
}
.bg-warning {
  background-color: #b97ecd !important;
}
.bg-danger {
  background-color: #3c71d3 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d75959 !important;
  border-color: #d75959 !important;
  color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b72c2c !important;
  border-color: #b72c2c !important;
}
.btn-info,
.btn-info:active {
  background-color: #999999 !important;
  border-color: #999999 !important;
  color: #ffffff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #737373 !important;
  border-color: #737373 !important;
}
.btn-success,
.btn-success:active {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1a9247 !important;
  border-color: #1a9247 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #b97ecd !important;
  border-color: #b97ecd !important;
  color: #ffffff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b47b7 !important;
  border-color: #9b47b7 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
  color: #ffffff !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #244f9f !important;
  border-color: #244f9f !important;
}
.btn-white {
  color: #404040 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !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 {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #d75959;
  color: #d75959;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #d75959;
  border-color: #d75959;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #d75959 !important;
  border-color: #d75959 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #999999;
  color: #999999;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #999999;
  border-color: #999999;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #25d366;
  color: #25d366;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #25d366;
  border-color: #25d366;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #25d366 !important;
  border-color: #25d366 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #b97ecd;
  color: #b97ecd;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #b97ecd;
  border-color: #b97ecd;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b97ecd !important;
  border-color: #b97ecd !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #3c71d3;
  color: #3c71d3;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #3c71d3;
  border-color: #3c71d3;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #d75959 !important;
}
.text-success {
  color: #25d366 !important;
}
.text-info {
  color: #999999 !important;
}
.text-warning {
  color: #b97ecd !important;
}
.text-danger {
  color: #3c71d3 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #333333 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ebabab !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #77e7a1 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e1c8e9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #8faee6 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #999999;
}
.alert-warning {
  background-color: #b97ecd;
}
.alert-danger {
  background-color: #3c71d3;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cef6dd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9d9d9;
}
.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: #e2eaf9;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #d75959 !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%;
  width: 100%;
  height: auto;
}
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='%23000000' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-siG9uold9V .dropdown-menu {
  padding: 12px 0;
}
.cid-siG9uold9V .dropdown-item:hover,
.cid-siG9uold9V .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-siG9uold9V .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-siG9uold9V .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-siG9uold9V .nav-link {
  position: relative;
}
.cid-siG9uold9V .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-siG9uold9V .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-siG9uold9V .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-siG9uold9V .dropdown-menu,
.cid-siG9uold9V .navbar.opened {
  background: #ffffff !important;
}
.cid-siG9uold9V .nav-item:focus,
.cid-siG9uold9V .nav-link:focus {
  outline: none;
}
.cid-siG9uold9V .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-siG9uold9V .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-siG9uold9V .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-siG9uold9V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siG9uold9V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siG9uold9V .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-siG9uold9V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-siG9uold9V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-siG9uold9V .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-siG9uold9V .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-siG9uold9V .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-siG9uold9V .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-siG9uold9V .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-siG9uold9V .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-siG9uold9V .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-siG9uold9V .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-siG9uold9V .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-siG9uold9V .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-siG9uold9V .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-siG9uold9V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-siG9uold9V .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-siG9uold9V .navbar.collapsed.opened {
  position: fixed;
}
.cid-siG9uold9V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-siG9uold9V .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-siG9uold9V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-siG9uold9V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-siG9uold9V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-siG9uold9V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siG9uold9V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siG9uold9V .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-siG9uold9V .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-siG9uold9V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siG9uold9V .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-siG9uold9V .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-siG9uold9V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siG9uold9V .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-siG9uold9V .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-siG9uold9V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siG9uold9V .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siG9uold9V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siG9uold9V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siG9uold9V .dropdown-item.active,
.cid-siG9uold9V .dropdown-item:active {
  background-color: transparent;
}
.cid-siG9uold9V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siG9uold9V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-siG9uold9V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siG9uold9V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siG9uold9V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siG9uold9V .navbar-buttons {
  text-align: center;
}
.cid-siG9uold9V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f9fafb;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siG9uold9V .navbar-dropdown {
  position: fixed;
}
.cid-siG9uold9V a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-siG9uold9V .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-siG9uold9V .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-siG9uold9V .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siG9uold9V .navbar {
    height: 77px;
  }
  .cid-siG9uold9V .navbar.opened {
    height: auto;
  }
  .cid-siG9uold9V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spSbstqX5Z {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #404040;
}
.cid-spSbstqX5Z h2,
.cid-spSbstqX5Z h3,
.cid-spSbstqX5Z h4,
.cid-spSbstqX5Z p {
  color: #ffffff;
}
.cid-spSbstqX5Z .mbr-overlay {
  z-index: -1;
}
.cid-spSbstqX5Z .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-spSbstqX5Z .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-spSbstqX5Z .form-control:focus,
.cid-spSbstqX5Z .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-spSbstqX5Z .form-group {
  margin-bottom: 1rem;
}
.cid-spSbstqX5Z input::-webkit-input-placeholder,
.cid-spSbstqX5Z textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-spSbstqX5Z input:-moz-placeholder,
.cid-spSbstqX5Z textarea:-moz-placeholder {
  color: #656565;
}
.cid-spSbstqX5Z .jq-selectbox li,
.cid-spSbstqX5Z .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-spSbstqX5Z .jq-selectbox li:hover,
.cid-spSbstqX5Z .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-spSbstqX5Z .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-spSbstqX5Z .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-spSbstqX5Z .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-spSbstqX5Z .mbr-text {
  color: #767676;
}
.cid-spSbstqX5Z .form-block {
  padding: 3rem;
  position: relative;
}
.cid-spSbstqX5Z .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #102f62;
  opacity: 1;
  z-index: 0;
}
.cid-spSbstqX5Z .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-spSbstqX5Z a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-spSbstqX5Z .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-spSbstqX5Z .input-group-btn {
  display: block;
  text-align: center;
}
.cid-spSbstqX5Z textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-spSbstqX5Z .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-spSbstqX5Z .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-spSbstqX5Z .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spSbstqX5Z h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-spSbstqX5Z .block-content {
    padding: 0;
  }
  .cid-spSbstqX5Z .form-block {
    padding: 1rem;
  }
}
.cid-spSiZsYZ83 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-spSiZsYZ83 .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-spSiZsYZ83 .mbr-section-title {
  margin: 0;
}
.cid-spSiZsYZ83 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spSiZsYZ83 .card-img {
  text-align: inherit;
}
.cid-spSiZsYZ83 .card-img span {
  background: linear-gradient(90deg, #102f62, #5ca7db);
}
.cid-spSiZsYZ83 .mbr-text {
  color: #8d97ad;
}
.cid-spSiZsYZ83 .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-spSiZsYZ83 .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-spSi8G3tMU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f7f7f7;
}
.cid-spSi8G3tMU .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spSi8G3tMU .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-spSi8G3tMU .btn {
  margin-bottom: 2rem;
}
.cid-spSi8G3tMU .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-spSi8G3tMU .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spSi8G3tMU .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-spSi8G3tMU .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-spSi8G3tMU .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-spSi8G3tMU .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-spSi8G3tMU .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-spSi8G3tMU .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-spSi8G3tMU .links {
  color: #232323;
  text-align: center;
}
.cid-rYR0Tflm8C {
  background-color: #ffffff;
}
.cid-rYR0Tflm8C .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-rYR0Tflm8C .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-rYR0Tflm8C .mbr-section-title,
.cid-rYR0Tflm8C .icon-wrap,
.cid-rYR0Tflm8C .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-rYR0Tflm8C .mbr-text,
.cid-rYR0Tflm8C .mbr-section-btn {
  color: #000000;
}
.cid-siG9uold9V .dropdown-menu {
  padding: 12px 0;
}
.cid-siG9uold9V .dropdown-item:hover,
.cid-siG9uold9V .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-siG9uold9V .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-siG9uold9V .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-siG9uold9V .nav-link {
  position: relative;
}
.cid-siG9uold9V .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-siG9uold9V .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-siG9uold9V .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-siG9uold9V .dropdown-menu,
.cid-siG9uold9V .navbar.opened {
  background: #ffffff !important;
}
.cid-siG9uold9V .nav-item:focus,
.cid-siG9uold9V .nav-link:focus {
  outline: none;
}
.cid-siG9uold9V .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-siG9uold9V .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-siG9uold9V .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-siG9uold9V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siG9uold9V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siG9uold9V .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-siG9uold9V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-siG9uold9V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-siG9uold9V .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-siG9uold9V .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-siG9uold9V .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-siG9uold9V .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-siG9uold9V .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-siG9uold9V .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-siG9uold9V .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-siG9uold9V .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-siG9uold9V .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-siG9uold9V .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-siG9uold9V .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-siG9uold9V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-siG9uold9V .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-siG9uold9V .navbar.collapsed.opened {
  position: fixed;
}
.cid-siG9uold9V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-siG9uold9V .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-siG9uold9V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-siG9uold9V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-siG9uold9V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-siG9uold9V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siG9uold9V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siG9uold9V .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-siG9uold9V .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-siG9uold9V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siG9uold9V .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-siG9uold9V .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-siG9uold9V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siG9uold9V .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-siG9uold9V .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-siG9uold9V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siG9uold9V .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siG9uold9V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siG9uold9V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siG9uold9V .dropdown-item.active,
.cid-siG9uold9V .dropdown-item:active {
  background-color: transparent;
}
.cid-siG9uold9V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siG9uold9V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-siG9uold9V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siG9uold9V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siG9uold9V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siG9uold9V .navbar-buttons {
  text-align: center;
}
.cid-siG9uold9V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siG9uold9V .navbar-dropdown {
  position: fixed;
}
.cid-siG9uold9V a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-siG9uold9V .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-siG9uold9V .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-siG9uold9V .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siG9uold9V .navbar {
    height: 77px;
  }
  .cid-siG9uold9V .navbar.opened {
    height: auto;
  }
  .cid-siG9uold9V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYZy6YmOCv {
  background-color: #ffffff;
}
.cid-rYZy6YmOCv .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-rYZy6YmOCv .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-rYZy6YmOCv .mbr-section-title,
.cid-rYZy6YmOCv .icon-wrap,
.cid-rYZy6YmOCv .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-rYZy6YmOCv .mbr-text,
.cid-rYZy6YmOCv .mbr-section-btn {
  color: #000000;
}
.cid-siG9uold9V .dropdown-menu {
  padding: 12px 0;
}
.cid-siG9uold9V .dropdown-item:hover,
.cid-siG9uold9V .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-siG9uold9V .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-siG9uold9V .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-siG9uold9V .nav-link {
  position: relative;
}
.cid-siG9uold9V .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-siG9uold9V .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-siG9uold9V .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-siG9uold9V .dropdown-menu,
.cid-siG9uold9V .navbar.opened {
  background: #ffffff !important;
}
.cid-siG9uold9V .nav-item:focus,
.cid-siG9uold9V .nav-link:focus {
  outline: none;
}
.cid-siG9uold9V .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-siG9uold9V .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-siG9uold9V .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-siG9uold9V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siG9uold9V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siG9uold9V .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-siG9uold9V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-siG9uold9V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-siG9uold9V .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-siG9uold9V .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-siG9uold9V .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-siG9uold9V .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-siG9uold9V .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-siG9uold9V .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-siG9uold9V .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-siG9uold9V .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-siG9uold9V .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-siG9uold9V .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-siG9uold9V .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-siG9uold9V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-siG9uold9V .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-siG9uold9V .navbar.collapsed.opened {
  position: fixed;
}
.cid-siG9uold9V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-siG9uold9V .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-siG9uold9V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-siG9uold9V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-siG9uold9V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-siG9uold9V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siG9uold9V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siG9uold9V .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-siG9uold9V .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-siG9uold9V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siG9uold9V .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-siG9uold9V .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-siG9uold9V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siG9uold9V .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-siG9uold9V .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-siG9uold9V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siG9uold9V .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siG9uold9V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siG9uold9V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siG9uold9V .dropdown-item.active,
.cid-siG9uold9V .dropdown-item:active {
  background-color: transparent;
}
.cid-siG9uold9V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siG9uold9V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-siG9uold9V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siG9uold9V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siG9uold9V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siG9uold9V .navbar-buttons {
  text-align: center;
}
.cid-siG9uold9V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siG9uold9V .navbar-dropdown {
  position: fixed;
}
.cid-siG9uold9V a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-siG9uold9V .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-siG9uold9V .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-siG9uold9V .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siG9uold9V .navbar {
    height: 77px;
  }
  .cid-siG9uold9V .navbar.opened {
    height: auto;
  }
  .cid-siG9uold9V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYR4csvOfc {
  background-color: #ffffff;
}
.cid-rYR4csvOfc .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-rYR4csvOfc .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-rYR4csvOfc .mbr-section-title,
.cid-rYR4csvOfc .icon-wrap,
.cid-rYR4csvOfc .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-rYR4csvOfc .mbr-text,
.cid-rYR4csvOfc .mbr-section-btn {
  color: #606060;
}
.cid-siG9uold9V .dropdown-menu {
  padding: 12px 0;
}
.cid-siG9uold9V .dropdown-item:hover,
.cid-siG9uold9V .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-siG9uold9V .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-siG9uold9V .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-siG9uold9V .nav-link {
  position: relative;
}
.cid-siG9uold9V .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-siG9uold9V .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-siG9uold9V .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-siG9uold9V .dropdown-menu,
.cid-siG9uold9V .navbar.opened {
  background: #ffffff !important;
}
.cid-siG9uold9V .nav-item:focus,
.cid-siG9uold9V .nav-link:focus {
  outline: none;
}
.cid-siG9uold9V .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-siG9uold9V .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-siG9uold9V .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-siG9uold9V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siG9uold9V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siG9uold9V .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-siG9uold9V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-siG9uold9V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-siG9uold9V .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-siG9uold9V .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-siG9uold9V .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-siG9uold9V .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-siG9uold9V .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-siG9uold9V .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-siG9uold9V .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-siG9uold9V .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-siG9uold9V .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-siG9uold9V .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-siG9uold9V .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-siG9uold9V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-siG9uold9V .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-siG9uold9V .navbar.collapsed.opened {
  position: fixed;
}
.cid-siG9uold9V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-siG9uold9V .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-siG9uold9V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-siG9uold9V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-siG9uold9V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-siG9uold9V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-siG9uold9V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siG9uold9V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siG9uold9V .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-siG9uold9V .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-siG9uold9V .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-siG9uold9V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siG9uold9V .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-siG9uold9V .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-siG9uold9V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siG9uold9V .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-siG9uold9V .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-siG9uold9V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siG9uold9V .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siG9uold9V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siG9uold9V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siG9uold9V .dropdown-item.active,
.cid-siG9uold9V .dropdown-item:active {
  background-color: transparent;
}
.cid-siG9uold9V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siG9uold9V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siG9uold9V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-siG9uold9V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siG9uold9V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siG9uold9V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siG9uold9V .navbar-buttons {
  text-align: center;
}
.cid-siG9uold9V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siG9uold9V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siG9uold9V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siG9uold9V .navbar-dropdown {
  position: fixed;
}
.cid-siG9uold9V a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-siG9uold9V .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-siG9uold9V .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-siG9uold9V .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siG9uold9V .navbar {
    height: 77px;
  }
  .cid-siG9uold9V .navbar.opened {
    height: auto;
  }
  .cid-siG9uold9V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
