@import url(https://fonts.googleapis.com/css?family=Cormorant:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap&display=swap);
@import url(https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap&display=swap);





body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Cormorant', sans-serif;
  font-size: 4rem;
}
.display-1 > .mbr-iconfont {
  font-size: 6.4rem;
}
.display-2 {
  font-family: 'Cormorant', sans-serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- 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.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #132c70 !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #132c70 !important;
  border-color: #132c70 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #08122f !important;
  border-color: #08122f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #08122f !important;
  border-color: #08122f !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #36d88a !important;
  border-color: #36d88a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !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: #d9d9d9 !important;
  border-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: #0d0d0d !important;
  border-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: #132c70;
  color: #132c70 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #132c70;
  border-color: #132c70;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #132c70 !important;
  border-color: #132c70 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #3e97d1;
  color: #3e97d1 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #ff4100;
  color: #ff4100 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ff4100;
  border-color: #ff4100;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #36d88a;
  color: #36d88a !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #36d88a;
  border-color: #36d88a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #c1c1c1;
  color: #c1c1c1 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #444444;
  color: #444444 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #333333;
  color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.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 !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #132c70 !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a,
a:hover {
  color: #132c70;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0c1b44 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #2a7cb2 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #24b770 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cc3400 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a8a8a8 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #2b2b2b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #e6e6e6 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #1a1a1a !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #132c70;
  border-color: #132c70;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2858db;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a {
  background: #444444;
}
#scrollToTop a i:before {
  background: #ffffff;
}
#scrollToTop a i:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.mbr-arrow {
  background-color: #444444;
}
.mbr-arrow a {
  color: #ffffff;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
blockquote {
  border-color: #132c70;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #132c70;
  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: #132c70;
  border-bottom-color: #132c70;
}
.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: #132c70 !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: #3e97d1 !important;
  box-shadow: none !important;
}
.cid-rEpSBIqNY6 {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-rEpSBIqNY6 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  display: flex;
  justify-content: center;
  position: fixed;
}
.cid-rEpSBIqNY6 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rEpSBIqNY6 .nav-item,
.cid-rEpSBIqNY6 .nav-link,
.cid-rEpSBIqNY6 .navbar-caption {
  font-weight: normal;
}
.cid-rEpSBIqNY6 .nav-item:focus,
.cid-rEpSBIqNY6 .nav-link:focus {
  outline: none;
}
.cid-rEpSBIqNY6 .wrapper {
  width: 100%;
  max-width: 1260px;
}
@media (min-width: 992px) {
  .cid-rEpSBIqNY6 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rEpSBIqNY6 .wrapper {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-rEpSBIqNY6 .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .cid-rEpSBIqNY6 .menu-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.cid-rEpSBIqNY6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rEpSBIqNY6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rEpSBIqNY6 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rEpSBIqNY6 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rEpSBIqNY6 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rEpSBIqNY6 .dropdown .dropdown-menu .dropdown-item .soc-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-rEpSBIqNY6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rEpSBIqNY6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rEpSBIqNY6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rEpSBIqNY6 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rEpSBIqNY6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rEpSBIqNY6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
  display: none !important;
}
.cid-rEpSBIqNY6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rEpSBIqNY6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rEpSBIqNY6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.3rem);
  }
}
.cid-rEpSBIqNY6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rEpSBIqNY6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rEpSBIqNY6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rEpSBIqNY6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rEpSBIqNY6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rEpSBIqNY6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rEpSBIqNY6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rEpSBIqNY6 .navbar .wrapper {
    display: flex;
    justify-content: space-between;
  }
  .cid-rEpSBIqNY6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rEpSBIqNY6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rEpSBIqNY6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rEpSBIqNY6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rEpSBIqNY6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rEpSBIqNY6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rEpSBIqNY6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rEpSBIqNY6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rEpSBIqNY6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rEpSBIqNY6 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rEpSBIqNY6 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rEpSBIqNY6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rEpSBIqNY6 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rEpSBIqNY6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rEpSBIqNY6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rEpSBIqNY6 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rEpSBIqNY6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rEpSBIqNY6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rEpSBIqNY6 .dropdown-item.active,
.cid-rEpSBIqNY6 .dropdown-item:active {
  background-color: transparent;
}
.cid-rEpSBIqNY6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: "Cormorant", sans-serif;
  font-weight: 700;
}
.cid-rEpSBIqNY6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rEpSBIqNY6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rEpSBIqNY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rEpSBIqNY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rEpSBIqNY6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rEpSBIqNY6 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rEpSBIqNY6 .navbar-buttons {
  text-align: center;
}
.cid-rEpSBIqNY6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rEpSBIqNY6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #132c70;
}
.cid-rEpSBIqNY6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rEpSBIqNY6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rEpSBIqNY6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rEpSBIqNY6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rEpSBIqNY6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rEpSBIqNY6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rEpSBIqNY6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rEpSBIqNY6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rEpSBIqNY6 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rEpSBIqNY6 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #132c70;
  display: inline-flex;
}
.cid-rEpSBIqNY6 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rEpSBIqNY6 .soc-item {
  margin: .5rem .3rem;
}
.cid-rEpSBIqNY6 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rEpSBIqNY6 a.nav-link,
.cid-rEpSBIqNY6 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-rEpSBIqNY6 a.nav-link .mbr-iconfont-btn,
.cid-rEpSBIqNY6 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rEpSBIqNY6 a.nav-link:hover .mbr-iconfont-btn,
.cid-rEpSBIqNY6 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rEpSBIqNY6 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rEpSBIqNY6 .navbar {
    height: 77px;
  }
  .cid-rEpSBIqNY6 .navbar.opened {
    height: auto;
  }
  .cid-rEpSBIqNY6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rEpSBIqNY6 .logo-link {
  color: #132c70;
}
.cid-rEpSBIqNY6 .mbr-section-btn {
  margin: 0;
}
.cid-rDOQFwByUq {
  display: flex;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/img-sfondo-1242x546.jpg");
}
@media (max-width: 767px) {
  .cid-rDOQFwByUq {
    padding-top: 4px;
    padding-bottom: 8px;
  }
}
.cid-rDOQFwByUq .col-md-12 {
  padding: 14rem 0rem;
}
.cid-rDOQFwByUq .mbr-section-title {
  line-height: 3rem;
}
.cid-rDOQFwByUq .container-fluid {
  max-width: 1240px;
  margin: 0 2rem;
}
@media (max-width: 767px) {
  .cid-rDOQFwByUq .container-fluid {
    margin: 0 1rem;
  }
  .cid-rDOQFwByUq .col-md-12 {
    padding: 3rem 0rem;
  }
}
.cid-rDOQFwByUq .mbr-text {
  color: #ffffff;
}
.cid-rDJmd443f0 {
  overflow: hidden !important;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #eadeca;
}
@media (max-width: 991px) {
  .cid-rDJmd443f0 {
    height: auto;
    min-height: auto;
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.cid-rDJmd443f0 .animated-element {
  color: #efefef;
}
.cid-rDJmd443f0 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-rDJmd443f0 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-rDJmd443f0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rDJmd443f0 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rDJmd443f0 .mbr-white {
    padding-left: 5rem;
  }
  .cid-rDJmd443f0 .mbr-section-subtitle {
    padding-right: 3rem;
  }
  .cid-rDJmd443f0 .container-fluid {
    padding: 0 2rem;
  }
}
.cid-rDJmd443f0 .container-fluid {
  max-width: 1300px;
}
.cid-rDJmd443f0 .mbr-section-title {
  margin-bottom: 1rem;
  color: #132c70;
}
.cid-rDJmd443f0 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-rDJmd443f0 .btn-line {
  margin-top: 3rem;
}
.cid-rDJnnaMBRb {
  background-color: #ffffff;
}
.cid-rDJnnaMBRb .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-rDJnnaMBRb .card .card-img img {
  transition: all .5s;
}
.cid-rDJnnaMBRb .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-rDJnnaMBRb .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-rDJnnaMBRb .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rDJnnaMBRb .first-card {
  display: block;
}
.cid-rDJnnaMBRb .first-card .card-wrapper {
  height: 100%;
}
.cid-rDJnnaMBRb .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rDJnnaMBRb .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-rDJnnaMBRb .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-rDJnnaMBRb .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-rDJnnaMBRb .first-row,
.cid-rDJnnaMBRb .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-rDJnnaMBRb .first-row .card .card-wrapper,
.cid-rDJnnaMBRb .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img,
.cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img img,
.cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-rDJnnaMBRb .first-row,
  .cid-rDJnnaMBRb .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img,
  .cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img img,
  .cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-rDJnnaMBRb .first-row .caption,
.cid-rDJnnaMBRb .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-rDJnnaMBRb .first-row .caption .price,
.cid-rDJnnaMBRb .second-row .caption .price {
  background: #eadeca;
  padding: 0 .5rem;
}
.cid-rDJnnaMBRb .first-row {
  padding-bottom: 0rem;
}
.cid-rDJnnaMBRb .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-rDJnnaMBRb {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .cid-rDJnnaMBRb .first-card,
  .cid-rDJnnaMBRb .first-child {
    padding-bottom: 0rem;
  }
  .cid-rDJnnaMBRb .card-box {
    padding: 0 0rem;
  }
  .cid-rDJnnaMBRb .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rDJnnaMBRb {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .cid-rDJnnaMBRb .container-fluid {
    max-width: 1300px;
    padding: 0 2.5rem;
  }
  .cid-rDJnnaMBRb .card-box {
    padding-right: 7rem;
    padding-left: 4rem;
  }
  .cid-rDJnnaMBRb .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-rDJnnaMBRb .first-card {
    padding-bottom: 2rem;
  }
  .cid-rDJnnaMBRb .only-first-row {
    height: 100%;
  }
}
.cid-rDJnnaMBRb p {
  margin-bottom: 0;
}
.cid-rDJnnaMBRb h2 {
  margin-bottom: 1rem;
}
.cid-rDJnnaMBRb .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-rDJnnaMBRb .btn-line {
  margin-top: 3rem;
}
.cid-rDJnnaMBRb .container-fluid {
  max-width: 1300px;
}
.cid-rDJnnaMBRb .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-rDJnnaMBRb .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-rDJnnaMBRb .price {
  text-align: center;
}
.cid-rDJo0PyU84 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #eadeca;
}
.cid-rDJo0PyU84 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-rDJo0PyU84 .mbr-list li {
  margin-bottom: 1rem;
}
.cid-rDJo0PyU84 .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-rDJo0PyU84 .social-media {
  margin-top: 1.5rem;
}
.cid-rDJo0PyU84 .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-rDJo0PyU84 .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-rDJo0PyU84 .mbr-text,
.cid-rDJo0PyU84 .mbr-offer {
  line-height: 1.5;
}
.cid-rDJo0PyU84 .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-rDJo0PyU84 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rDJo0PyU84 .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-rDJo0PyU84 .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-rDJo0PyU84 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (min-width: 767px) {
  .cid-rDJo0PyU84 .container-fluid {
    max-width: 1300px;
    padding: 0 2rem;
  }
}
.cid-rDJo0PyU84 .container-fluid {
  max-width: 1300px;
}
