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





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((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.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #4e84c2 !important;
}
.bg-success {
  background-color: #ca4336 !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #4e84c2 !important;
  border-color: #4e84c2 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #325e91 !important;
  border-color: #325e91 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #325e91 !important;
  border-color: #325e91 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !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-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-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #2c527e;
  color: #2c527e !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #4e84c2;
  border-color: #4e84c2;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4e84c2 !important;
  border-color: #4e84c2 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.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: #4e84c2 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #ca4336 !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #2c527e !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #7a2820 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !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: #ca4336;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4e84c2;
  border-color: #4e84c2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #4e84c2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #adc6e3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f5dad7;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #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;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #4e84c2;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.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 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4e84c2;
  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: #4e84c2;
  border-bottom-color: #4e84c2;
}
.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: #4e84c2 !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: #ca4336 !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='%234e84c2' %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-soo9JYl611 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-soo9JYl611 .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-soo9JYl611 .section-text {
  padding: 2rem 0;
}
.cid-soo9JYl611 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-soo9JYl611 .inner-container {
    width: 100% !important;
  }
}
.cid-somOAa5ZJp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-somOAa5ZJp .mbr-text,
.cid-somOAa5ZJp .mbr-section-subtitle {
  color: #767676;
}
.cid-somOAa5ZJp .card-title {
  color: #66458e;
}
.cid-somOAa5ZJp .card .card-img span {
  color: #66458e;
  font-size: 60px;
  background: linear-gradient(45deg, #66458e, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-somOAa5ZJp .mbr-section-subtitle,
  .cid-somOAa5ZJp .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-somOAa5ZJp .card .card-img span {
    background: none;
  }
}
.cid-soqVpabar5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soqVpabar5 .card {
  display: block;
  position: relative;
}
.cid-soqVpabar5 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-soqVpabar5 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-soqVpabar5 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-soqVpabar5 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-soqVpabar5 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-soqVpabar5 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-soqVpabar5 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-so9Msip38K {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-so9Msip38K .card-wrapper {
  z-index: 3;
}
.cid-so9Msip38K .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-so9Msip38K:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-so9Msip38K .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-so9Msip38K .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-so9Msip38K .text-block {
  text-align: left !important;
}
.cid-so9Msip38K H2 {
  color: #000000;
}
.cid-so9LYK1Wbm {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-so9LYK1Wbm .mbr-shop {
  display: table;
  width: 100%;
}
.cid-so9LYK1Wbm .mbr-shop .row {
  margin: 0;
}
.cid-so9LYK1Wbm .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-so9LYK1Wbm .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-so9LYK1Wbm .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-so9LYK1Wbm .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-so9LYK1Wbm .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-so9LYK1Wbm .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-so9LYK1Wbm .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-so9LYK1Wbm .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-so9LYK1Wbm .mbr-shop .hide-modal {
  display: none;
}
.cid-so9LYK1Wbm .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-so9LYK1Wbm .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-so9LYK1Wbm .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-so9LYK1Wbm .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-so9LYK1Wbm .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-so9LYK1Wbm .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-so9LYK1Wbm .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-so9LYK1Wbm .mbr-shop .filter-by-pu,
.cid-so9LYK1Wbm .mbr-shop .filter-by-pd,
.cid-so9LYK1Wbm .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-so9LYK1Wbm .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-so9LYK1Wbm .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-so9LYK1Wbm .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-so9LYK1Wbm .mbr-shop .galleryItem h4,
.cid-so9LYK1Wbm .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-so9LYK1Wbm .mbr-shop .galleryItem h5,
.cid-so9LYK1Wbm .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-so9LYK1Wbm .mbr-shop .galleryItem p,
.cid-so9LYK1Wbm .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-so9LYK1Wbm .mbr-shop .item-button {
  text-align: center;
}
.cid-so9LYK1Wbm .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-so9LYK1Wbm .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-so9LYK1Wbm .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-so9LYK1Wbm .mbr-shop .sidebar-block {
  position: relative;
}
.cid-so9LYK1Wbm .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-so9LYK1Wbm .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #f7ed4a;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-item__hided h4,
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-item__hided h5,
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-so9LYK1Wbm .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-so9LYK1Wbm .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-so9LYK1Wbm .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-so9LYK1Wbm .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-so9LYK1Wbm .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-so9LYK1Wbm .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-so9LYK1Wbm .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-so9LYK1Wbm .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-so9LYK1Wbm .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-so9LYK1Wbm .mbr-shop .range-controls {
  position: relative;
}
.cid-so9LYK1Wbm .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-so9LYK1Wbm .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-so9LYK1Wbm .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-so9LYK1Wbm .mbr-shop .toggle:hover,
.cid-so9LYK1Wbm .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-so9LYK1Wbm .mbr-shop .min-toggle {
  left: 0;
}
.cid-so9LYK1Wbm .mbr-shop .max-toggle {
  right: 0;
}
.cid-so9LYK1Wbm .mbr-shop .hided-by-price {
  display: none;
}
.cid-so9LYK1Wbm .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-so9LYK1Wbm .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-so9LYK1Wbm .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-so9LYK1Wbm .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-so9LYK1Wbm .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-so9LYK1Wbm .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-so9LYK1Wbm .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-so9LYK1Wbm .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-so9LYK1Wbm .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-so9LYK1Wbm .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-so9LYK1Wbm .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-so9LYK1Wbm .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-so9LYK1Wbm .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-so9LYK1Wbm .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-so9LYK1Wbm .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-so9LYK1Wbm .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-so9LYK1Wbm .mbr-shop .shop-items .onsale,
.cid-so9LYK1Wbm .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-so9LYK1Wbm .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-so9LYK1Wbm .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-so9LYK1Wbm .mbr-shop .price-range {
  display: inline-block;
}
.cid-so9LYK1Wbm .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-so9LYK1Wbm .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-so9LYK1Wbm .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-so9LYK1Wbm .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-so9LYK1Wbm .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-so9LYK1Wbm .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-so9LYK1Wbm .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-so9LYK1Wbm .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-so9LYK1Wbm .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-so9LYK1Wbm .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-so9LYK1Wbm .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-so9LYK1Wbm .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-so9LYK1Wbm .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-so9LYK1Wbm .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-so9LYK1Wbm .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-so9LYK1Wbm .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-so9LYK1Wbm .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-so9LYK1Wbm .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-so9LYK1Wbm .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-so9LYK1Wbm .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-so9LYK1Wbm .wrapper-shop-items {
    order: 1;
  }
  .cid-so9LYK1Wbm .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-so9LYK1Wbm .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-so9LYK1Wbm .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-so9LYK1Wbm .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-so9LYK1Wbm .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-so9LYK1Wbm .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-so9LYK1Wbm .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-so9LYK1Wbm .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-so9LYK1Wbm .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-so9LYK1Wbm .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-so9LYK1Wbm .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-so9LYK1Wbm .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-so9LYK1Wbm .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-so9LYK1Wbm .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-so9LYK1Wbm .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-so9LYK1Wbm .range-controls {
  display: block !important;
}
.cid-so9LYK1Wbm .sort-buttons {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-so9LYK1Wbm .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-so9LYK1Wbm .card-description UL {
  text-align: left;
}
.cid-so9Se7c3lV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #66458e;
}
.cid-so9Se7c3lV .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-so9Se7c3lV .mbr-section-btn,
  .cid-so9Se7c3lV .mbr-section-subtitle,
  .cid-so9Se7c3lV .mbr-section-title {
    text-align: center !important;
  }
}
.cid-soqgg7is9A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-soqgg7is9A .mbr-section-subtitle {
  color: #767676;
}
.cid-soqgg7is9A .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sp2TTNKRZv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-so9Mx5OK4J {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #465052;
}
@media (max-width: 767px) {
  .cid-so9Mx5OK4J .content {
    text-align: center;
  }
  .cid-so9Mx5OK4J .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-so9Mx5OK4J .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-so9Mx5OK4J .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-so9Mx5OK4J .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-so9Mx5OK4J .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-so9Mx5OK4J .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-so9Mx5OK4J .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-so9Mx5OK4J .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-so9Mx5OK4J .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-so9Mx5OK4J .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-so9Mx5OK4J .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-so9Mx5OK4J .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-so9Mx5OK4J P {
  color: #ffffff;
}
.cid-soo87Y2asl .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-soo87Y2asl .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-soo87Y2asl a {
  font-style: normal;
}
.cid-soo87Y2asl .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-soo87Y2asl .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-soo87Y2asl .nav-item:focus,
.cid-soo87Y2asl .nav-link:focus {
  outline: none;
}
.cid-soo87Y2asl .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-soo87Y2asl .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-soo87Y2asl .menu-logo {
  margin-right: auto;
}
.cid-soo87Y2asl .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-soo87Y2asl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-soo87Y2asl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-soo87Y2asl .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-soo87Y2asl .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-soo87Y2asl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-soo87Y2asl .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-soo87Y2asl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-soo87Y2asl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-soo87Y2asl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-soo87Y2asl .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-soo87Y2asl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-soo87Y2asl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soo87Y2asl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-soo87Y2asl .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soo87Y2asl .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-soo87Y2asl .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-soo87Y2asl .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-soo87Y2asl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-soo87Y2asl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-soo87Y2asl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-soo87Y2asl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-soo87Y2asl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-soo87Y2asl button.navbar-toggler:focus {
  outline: none;
}
.cid-soo87Y2asl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #149dcc;
}
.cid-soo87Y2asl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-soo87Y2asl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-soo87Y2asl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-soo87Y2asl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-soo87Y2asl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soo87Y2asl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-soo87Y2asl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-soo87Y2asl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soo87Y2asl .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-soo87Y2asl .collapsed .btn {
  display: flex;
}
.cid-soo87Y2asl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-soo87Y2asl .collapsed .navbar-collapse.collapsing,
.cid-soo87Y2asl .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-soo87Y2asl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-soo87Y2asl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-soo87Y2asl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-soo87Y2asl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-soo87Y2asl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-soo87Y2asl .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-soo87Y2asl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-soo87Y2asl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-soo87Y2asl .collapsed button.navbar-toggler {
  display: block;
}
.cid-soo87Y2asl .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-soo87Y2asl .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-soo87Y2asl .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-soo87Y2asl .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-soo87Y2asl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-soo87Y2asl .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-soo87Y2asl .navbar-expand {
    flex-direction: column;
  }
  .cid-soo87Y2asl img {
    height: 3.8rem !important;
  }
  .cid-soo87Y2asl .btn {
    display: flex;
  }
  .cid-soo87Y2asl button.navbar-toggler {
    display: block;
  }
  .cid-soo87Y2asl .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-soo87Y2asl .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-soo87Y2asl .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-soo87Y2asl .navbar-collapse.collapsing,
  .cid-soo87Y2asl .navbar-collapse.show {
    display: block !important;
  }
  .cid-soo87Y2asl .navbar-collapse.collapsing .navbar-nav,
  .cid-soo87Y2asl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-soo87Y2asl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-soo87Y2asl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-soo87Y2asl .navbar-collapse.collapsing .navbar-buttons,
  .cid-soo87Y2asl .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-soo87Y2asl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-soo87Y2asl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-soo87Y2asl .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-soo87Y2asl .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-soo87Y2asl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-soo87Y2asl .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-soo87Y2asl .menu-logo {
    flex-shrink: 0;
  }
}
.cid-soo87Y2asl .navbar-collapse {
  flex-basis: auto;
}
.cid-soo87Y2asl .nav-link:hover,
.cid-soo87Y2asl .dropdown-item:hover {
  color: #767676 !important;
}
.cid-soqjq8l4iz {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-soqjq8l4iz .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-soqjq8l4iz .section-text {
  padding: 2rem 0;
}
.cid-soqjq8l4iz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-soqjq8l4iz .inner-container {
    width: 100% !important;
  }
}
.cid-soqjJD1Xe2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-soqjqbScUy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #465052;
}
@media (max-width: 767px) {
  .cid-soqjqbScUy .content {
    text-align: center;
  }
  .cid-soqjqbScUy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-soqjqbScUy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-soqjqbScUy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-soqjqbScUy .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-soqjqbScUy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-soqjqbScUy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-soqjqbScUy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-soqjqbScUy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-soqjqbScUy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-soqjqbScUy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-soqjqbScUy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-soqjqbScUy .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-soqjqbScUy P {
  color: #ffffff;
}
.cid-soqjqcj55b .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-soqjqcj55b .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-soqjqcj55b a {
  font-style: normal;
}
.cid-soqjqcj55b .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-soqjqcj55b .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-soqjqcj55b .nav-item:focus,
.cid-soqjqcj55b .nav-link:focus {
  outline: none;
}
.cid-soqjqcj55b .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-soqjqcj55b .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-soqjqcj55b .menu-logo {
  margin-right: auto;
}
.cid-soqjqcj55b .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-soqjqcj55b .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-soqjqcj55b .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-soqjqcj55b .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-soqjqcj55b .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-soqjqcj55b .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-soqjqcj55b .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-soqjqcj55b .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-soqjqcj55b .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-soqjqcj55b .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-soqjqcj55b .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-soqjqcj55b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-soqjqcj55b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-soqjqcj55b .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-soqjqcj55b .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soqjqcj55b .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-soqjqcj55b .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-soqjqcj55b .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-soqjqcj55b .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-soqjqcj55b .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-soqjqcj55b .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-soqjqcj55b .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-soqjqcj55b button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-soqjqcj55b button.navbar-toggler:focus {
  outline: none;
}
.cid-soqjqcj55b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #149dcc;
}
.cid-soqjqcj55b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-soqjqcj55b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-soqjqcj55b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-soqjqcj55b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-soqjqcj55b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soqjqcj55b nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-soqjqcj55b nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-soqjqcj55b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-soqjqcj55b .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-soqjqcj55b .collapsed .btn {
  display: flex;
}
.cid-soqjqcj55b .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-soqjqcj55b .collapsed .navbar-collapse.collapsing,
.cid-soqjqcj55b .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-soqjqcj55b .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-soqjqcj55b .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-soqjqcj55b .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-soqjqcj55b .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-soqjqcj55b .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-soqjqcj55b .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-soqjqcj55b .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-soqjqcj55b .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-soqjqcj55b .collapsed button.navbar-toggler {
  display: block;
}
.cid-soqjqcj55b .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-soqjqcj55b .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-soqjqcj55b .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-soqjqcj55b .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-soqjqcj55b .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-soqjqcj55b .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-soqjqcj55b .navbar-expand {
    flex-direction: column;
  }
  .cid-soqjqcj55b img {
    height: 3.8rem !important;
  }
  .cid-soqjqcj55b .btn {
    display: flex;
  }
  .cid-soqjqcj55b button.navbar-toggler {
    display: block;
  }
  .cid-soqjqcj55b .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-soqjqcj55b .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-soqjqcj55b .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-soqjqcj55b .navbar-collapse.collapsing,
  .cid-soqjqcj55b .navbar-collapse.show {
    display: block !important;
  }
  .cid-soqjqcj55b .navbar-collapse.collapsing .navbar-nav,
  .cid-soqjqcj55b .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-soqjqcj55b .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-soqjqcj55b .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-soqjqcj55b .navbar-collapse.collapsing .navbar-buttons,
  .cid-soqjqcj55b .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-soqjqcj55b .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-soqjqcj55b .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-soqjqcj55b .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-soqjqcj55b .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-soqjqcj55b .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-soqjqcj55b .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-soqjqcj55b .menu-logo {
    flex-shrink: 0;
  }
}
.cid-soqjqcj55b .navbar-collapse {
  flex-basis: auto;
}
.cid-soqjqcj55b .nav-link:hover,
.cid-soqjqcj55b .dropdown-item:hover {
  color: #767676 !important;
}
