body {
  font-family: Open Sans;
}
.display-1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.8rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.2rem;
}
.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: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (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.4 * (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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 20px 20px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ff8a8f !important;
}
.bg-success {
  background-color: #7242d6 !important;
}
.bg-info {
  background-color: #48d678 !important;
}
.bg-warning {
  background-color: #d63d3d !important;
}
.bg-danger {
  background-color: #ececec !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff8a8f !important;
  border-color: #ff8a8f !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #ff3d46 !important;
  border-color: #ff3d46 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff3d46 !important;
  border-color: #ff3d46 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #148479 !important;
  border-color: #148479 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #148479 !important;
  border-color: #148479 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #48d678 !important;
  border-color: #48d678 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #7242d6 !important;
  border-color: #7242d6 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #4f24a7 !important;
  border-color: #4f24a7 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #4f24a7 !important;
  border-color: #4f24a7 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ececec !important;
  border-color: #ececec !important;
  color: #6d6d6d !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !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: #ff242d;
  color: #ff242d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #ff8a8f;
  border-color: #ff8a8f;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8a8f !important;
  border-color: #ff8a8f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #116d65;
  color: #116d65;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #1ec6b6;
  border-color: #1ec6b6;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #229649;
  color: #229649;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #48d678;
  border-color: #48d678;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #48d678 !important;
  border-color: #48d678 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #452092;
  color: #452092;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #7242d6;
  border-color: #7242d6;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7242d6 !important;
  border-color: #7242d6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8f1e1e;
  color: #8f1e1e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #d63d3d;
  border-color: #d63d3d;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #b9b9b9;
  color: #b9b9b9;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #6d6d6d;
  background-color: #ececec;
  border-color: #ececec;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #6d6d6d !important;
  background-color: #ececec !important;
  border-color: #ececec !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  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: #ff8a8f !important;
}
.text-secondary {
  color: #1ec6b6 !important;
}
.text-success {
  color: #7242d6 !important;
}
.text-info {
  color: #48d678 !important;
}
.text-warning {
  color: #d63d3d !important;
}
.text-danger {
  color: #ececec !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff242d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #116d65 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #452092 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #229649 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8f1e1e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b9b9b9 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #48d678;
}
.alert-warning {
  background-color: #d63d3d;
}
.alert-danger {
  background-color: #ececec;
}
.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: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff8a8f;
  border-color: #ff8a8f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff8a8f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #efeafa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #effbf3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fae5e5;
}
.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;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff8a8f;
}
.btn-md {
  transition: none;
  padding: 0.5rem 2rem;
}
.btn-md:hover {
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff8a8f;
  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-number__spin {
  background: #ffffff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff8a8f;
  border-bottom-color: #ff8a8f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ff8a8f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #1ec6b6 !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='%23ff8a8f' %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-slaq9jg7KF {
  background-image: url("../../../assets/images/tusker20trails20new202-1280x960.webp");
}
.cid-tDtgkvATxX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tDtgkvATxX .title__block {
  margin-bottom: 55px;
}
.cid-tDtgkvATxX .mbr-section-title {
  margin-bottom: 16px;
  color: #ff4a52;
}
.cid-tDtgkvATxX .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-tDtgkvATxX .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-tDtgkvATxX .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-tDtgkvATxX .card__content {
  display: block;
  width: 100%;
}
.cid-tDtgkvATxX .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  color: #c2c2c2;
}
.cid-tDtgkvATxX .card__text {
  margin-bottom: 0;
  color: #ececec;
}
@media (max-width: 991px) {
  .cid-tDtgkvATxX .mbr-section-title {
    margin-bottom: 20px;
  }
  .cid-tDtgkvATxX .card__wrap {
    margin-bottom: 40px;
  }
  .cid-tDtgkvATxX .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-tDtgkvATxX .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-tDtgkvATxX .card__image {
    max-width: 90px;
  }
  .cid-tDtgkvATxX .card__image img {
    width: 70%;
  }
}
.cid-tDtgkvATxX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDtgkvATxX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDtgkvATxX .mbr-section-subtitle {
  color: #ececec;
}
.cid-slaqIekw99 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-slaqIekw99 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-slaqIekw99 .mbr-section-title,
.cid-slaqIekw99 .mbr-section-subtitle,
.cid-slaqIekw99 .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-slaqIekw99 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-slaqIekw99 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-slaqIekw99 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-slaqIekw99 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-slaqIekw99 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-slaqIekw99 .icon-focus {
  display: none;
}
.cid-slaqIekw99 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-slaqIekw99 ul {
  font-size: 0;
}
.cid-slaqIekw99 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-slaqIekw99 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-slaqIekw99 .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-slaqIekw99 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-slaqIekw99 .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-slaqIekw99 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-slaqIekw99 .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-slaqIekw99 .btn:hover {
  background: transparent !important;
}
.cid-slaqIekw99 .btn:hover:before {
  background: transparent !important;
}
.cid-slaqIekw99 .btn:before {
  background-color: transparent !important;
}
.cid-slaqIekw99 .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-slaqIekw99 .mbr-section-title {
  color: #ffffff;
}
.cid-slaqIekw99 .mbr-section-subtitle,
.cid-slaqIekw99 .underline {
  color: #ffffff;
}
.cid-tsfDnfkzao {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tsfDnfkzao .title {
  border-bottom: 1px solid #232323;
}
.cid-tsfDnfkzao .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #000000;
  color: #444444;
  padding: 0;
  border: 1px solid #232323;
  transition: all 0.3s;
}
.cid-tsfDnfkzao .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-tsfDnfkzao .card-wrapper:hover .price-box {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  left: 5px;
  bottom: 15px;
}
.cid-tsfDnfkzao .display-4 {
  line-height: 1.1;
}
.cid-tsfDnfkzao .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-tsfDnfkzao .ico-line-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tsfDnfkzao .ico-line {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tsfDnfkzao p {
  line-height: 1.6;
}
.cid-tsfDnfkzao .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-tsfDnfkzao .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-tsfDnfkzao .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-tsfDnfkzao .price-box {
  position: absolute;
  background: #7242d6;
  padding: 0.5rem 1rem;
  left: 0;
  bottom: 1rem;
  transition: all 0.3s;
}
.cid-tsfDnfkzao img {
  transition: all 0.3s;
}
.cid-tsfDnfkzao h5 {
  margin: 0;
}
.cid-tsfDnfkzao .card-box {
  padding: 1.5rem;
}
.cid-tsfDnfkzao .mbr-section-title {
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}
.cid-tsfDnfkzao .card-box > p,
.cid-tsfDnfkzao .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tsfDnfkzao .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-tsfDnfkzao .price {
  color: #ffffff;
  text-align: left;
}
.cid-tsfDnfkzao .rev {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tsfDnfkzao .ico-line-wrap {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tsfDnfkzao .ico-line {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-v0bz0IMvGL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0bz0IMvGL .title__block {
  margin-bottom: 55px;
}
.cid-v0bz0IMvGL .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
}
.cid-v0bz0IMvGL .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-v0bz0IMvGL .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-v0bz0IMvGL .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-v0bz0IMvGL .card__content {
  display: block;
  width: 100%;
}
.cid-v0bz0IMvGL .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  color: #000000;
}
.cid-v0bz0IMvGL .card__text {
  margin-bottom: 0;
  text-align: left;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v0bz0IMvGL .mbr-section-title {
    margin-bottom: 20px;
  }
  .cid-v0bz0IMvGL .card__wrap {
    margin-bottom: 40px;
  }
  .cid-v0bz0IMvGL .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-v0bz0IMvGL .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-v0bz0IMvGL .card__image {
    max-width: 90px;
  }
  .cid-v0bz0IMvGL .card__image img {
    width: 70%;
  }
}
.cid-v0bz0IMvGL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bz0IMvGL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bxBCcBMp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0bxBCcBMp .title__block {
  margin-bottom: 120px;
}
.cid-v0bxBCcBMp .mbr-section-subtitle {
  color: #ececec;
  margin-top: 9px;
  text-align: left;
}
.cid-v0bxBCcBMp .mbr-section-title {
  position: relative;
  color: #0e2d3b;
  text-align: center;
}
.cid-v0bxBCcBMp .card__wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.cid-v0bxBCcBMp .card__image {
  width: 100%;
}
.cid-v0bxBCcBMp .card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-v0bxBCcBMp .card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 15px 20px 25px;
}
.cid-v0bxBCcBMp .card__title {
  margin-bottom: 16px;
  color: #97e0b0;
}
.cid-v0bxBCcBMp .card__text {
  margin-bottom: 22px;
  color: #dcc187;
}
.cid-v0bxBCcBMp .card__contacts {
  margin-bottom: 18px;
}
.cid-v0bxBCcBMp .card__phone,
.cid-v0bxBCcBMp .card__mail {
  margin-bottom: 8px;
  color: #dcc187;
}
.cid-v0bxBCcBMp .card__phone .mbr-iconfont,
.cid-v0bxBCcBMp .card__mail .mbr-iconfont {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: #ffffff;
  margin-right: 12px;
  vertical-align: middle;
}
.cid-v0bxBCcBMp .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-v0bxBCcBMp .link a {
  color: #ffffff;
  font-weight: 700;
}
.cid-v0bxBCcBMp .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-v0bxBCcBMp .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 1024px) {
  .cid-v0bxBCcBMp .mbr-section-title {
    display: inline-block;
    margin-top: 0;
    margin-left: 0;
  }
  .cid-v0bxBCcBMp .mbr-section-subtitle {
    display: inline-block;
  }
  .cid-v0bxBCcBMp .title__block {
    margin-bottom: 60px;
  }
  .cid-v0bxBCcBMp .figure:before {
    right: 15px;
    top: -43px;
    width: 66px;
    height: 66px;
  }
  .cid-v0bxBCcBMp .card__wrap {
    display: block;
    height: auto;
    text-align: center;
    margin-bottom: 60px;
  }
  .cid-v0bxBCcBMp .card__image {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .cid-v0bxBCcBMp .mbr-section-title {
    display: block;
    margin-left: 33%;
  }
}
.cid-v0bxBCcBMp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bxBCcBMp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bxBCcBMp .card__text,
.cid-v0bxBCcBMp .link {
  color: #ececec;
}
.cid-v0bxBCcBMp .card__phone {
  color: #9e9e9e;
}
.cid-v0bxBCcBMp .card__mail {
  color: #97e0b0;
}
.cid-v0bypCJ7mW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0bypCJ7mW .title__block {
  margin-bottom: 120px;
}
.cid-v0bypCJ7mW .mbr-section-subtitle {
  color: #ececec;
  margin-top: 9px;
  text-align: left;
}
.cid-v0bypCJ7mW .mbr-section-title {
  position: relative;
  color: #0e2d3b;
  text-align: center;
}
.cid-v0bypCJ7mW .card__wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.cid-v0bypCJ7mW .card__image {
  width: 100%;
}
.cid-v0bypCJ7mW .card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-v0bypCJ7mW .card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 15px 20px 25px;
}
.cid-v0bypCJ7mW .card__title {
  margin-bottom: 16px;
  color: #97e0b0;
}
.cid-v0bypCJ7mW .card__text {
  margin-bottom: 22px;
  color: #dcc187;
}
.cid-v0bypCJ7mW .card__contacts {
  margin-bottom: 18px;
}
.cid-v0bypCJ7mW .card__phone,
.cid-v0bypCJ7mW .card__mail {
  margin-bottom: 8px;
  color: #dcc187;
}
.cid-v0bypCJ7mW .card__phone .mbr-iconfont,
.cid-v0bypCJ7mW .card__mail .mbr-iconfont {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: #ffffff;
  margin-right: 12px;
  vertical-align: middle;
}
.cid-v0bypCJ7mW .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-v0bypCJ7mW .link a {
  color: #ffffff;
  font-weight: 700;
}
.cid-v0bypCJ7mW .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-v0bypCJ7mW .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 1024px) {
  .cid-v0bypCJ7mW .mbr-section-title {
    display: inline-block;
    margin-top: 0;
    margin-left: 0;
  }
  .cid-v0bypCJ7mW .mbr-section-subtitle {
    display: inline-block;
  }
  .cid-v0bypCJ7mW .title__block {
    margin-bottom: 60px;
  }
  .cid-v0bypCJ7mW .figure:before {
    right: 15px;
    top: -43px;
    width: 66px;
    height: 66px;
  }
  .cid-v0bypCJ7mW .card__wrap {
    display: block;
    height: auto;
    text-align: center;
    margin-bottom: 60px;
  }
  .cid-v0bypCJ7mW .card__image {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .cid-v0bypCJ7mW .mbr-section-title {
    display: block;
    margin-left: 33%;
  }
}
.cid-v0bypCJ7mW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bypCJ7mW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bypCJ7mW .card__text,
.cid-v0bypCJ7mW .link {
  color: #ececec;
}
.cid-v0bypCJ7mW .card__phone {
  color: #9e9e9e;
}
.cid-v0bypCJ7mW .card__mail {
  color: #97e0b0;
}
.cid-tyQLhqDLxb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tyQLhqDLxb .mbr-text {
  line-height: 1.5;
  color: #ececec;
  text-align: left;
}
.cid-tyQLhqDLxb .mbr-section-title {
  text-align: left;
  color: #ffdd77;
}
.cid-tsfEu00b3K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tsfEu00b3K .title__block {
  margin-bottom: 120px;
}
.cid-tsfEu00b3K .mbr-section-subtitle {
  color: #ececec;
  margin-top: 9px;
  text-align: left;
}
.cid-tsfEu00b3K .mbr-section-title {
  position: relative;
  color: #97e0b0;
  text-align: center;
}
.cid-tsfEu00b3K .card__wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.cid-tsfEu00b3K .card__image {
  width: 100%;
}
.cid-tsfEu00b3K .card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-tsfEu00b3K .card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 15px 20px 25px;
}
.cid-tsfEu00b3K .card__title {
  margin-bottom: 16px;
  color: #97e0b0;
}
.cid-tsfEu00b3K .card__text {
  margin-bottom: 22px;
  color: #dcc187;
}
.cid-tsfEu00b3K .card__contacts {
  margin-bottom: 18px;
}
.cid-tsfEu00b3K .card__phone,
.cid-tsfEu00b3K .card__mail {
  margin-bottom: 8px;
  color: #dcc187;
}
.cid-tsfEu00b3K .card__phone .mbr-iconfont,
.cid-tsfEu00b3K .card__mail .mbr-iconfont {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: #ffffff;
  margin-right: 12px;
  vertical-align: middle;
}
.cid-tsfEu00b3K .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-tsfEu00b3K .link a {
  color: #ffffff;
  font-weight: 700;
}
.cid-tsfEu00b3K .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-tsfEu00b3K .link:hover span {
  transform: translateX(9px);
}
@media (max-width: 1024px) {
  .cid-tsfEu00b3K .mbr-section-title {
    display: inline-block;
    margin-top: 0;
    margin-left: 0;
  }
  .cid-tsfEu00b3K .mbr-section-subtitle {
    display: inline-block;
  }
  .cid-tsfEu00b3K .title__block {
    margin-bottom: 60px;
  }
  .cid-tsfEu00b3K .figure:before {
    right: 15px;
    top: -43px;
    width: 66px;
    height: 66px;
  }
  .cid-tsfEu00b3K .card__wrap {
    display: block;
    height: auto;
    text-align: center;
    margin-bottom: 60px;
  }
  .cid-tsfEu00b3K .card__image {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .cid-tsfEu00b3K .mbr-section-title {
    display: block;
    margin-left: 33%;
  }
}
.cid-tsfEu00b3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsfEu00b3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsfEu00b3K .card__text,
.cid-tsfEu00b3K .link {
  color: #ececec;
}
.cid-tsfEu00b3K .card__phone {
  color: #9e9e9e;
}
.cid-tsfEu00b3K .card__mail {
  color: #97e0b0;
}
.cid-tsfEpch8Hz {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tsfEpch8Hz .mbr-section-title {
  color: #97e0b0;
  text-align: left;
}
.cid-tsfEpch8Hz .card__wrap {
  margin-bottom: 50px;
  display: flex;
  border-bottom: 1px solid #cce4f0;
}
.cid-tsfEpch8Hz .content__block .card__wrap:last-child {
  border-bottom: 0;
}
.cid-tsfEpch8Hz .card__title {
  margin-bottom: 10px;
  font-weight: 600;
  color: #ececec;
}
.cid-tsfEpch8Hz .card__text {
  margin-bottom: 8px;
  color: #689bb2;
}
.cid-tsfEpch8Hz .card__image {
  display: block;
  max-width: 190px;
  width: 100%;
  text-align: center;
}
.cid-tsfEpch8Hz .card__image img {
  width: 55%;
  object-fit: cover;
}
.cid-tsfEpch8Hz .card__content {
  display: block;
  width: 100%;
  margin-bottom: 50px;
}
.cid-tsfEpch8Hz .count__items {
  padding-left: 16px;
  margin: 0;
}
.cid-tsfEpch8Hz .count__items .item {
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .cid-tsfEpch8Hz .mbr-section-title {
    margin-bottom: 44px;
    text-align: center;
  }
  .cid-tsfEpch8Hz .figure:before {
    left: 10%;
    top: 2px;
    width: 55px;
    height: 55px;
  }
  .cid-tsfEpch8Hz .card__wrap {
    margin-bottom: 39px;
  }
  .cid-tsfEpch8Hz .card__content {
    margin-bottom: 39px;
  }
}
@media (max-width: 575px) {
  .cid-tsfEpch8Hz .card__image {
    max-width: 77px;
  }
  .cid-tsfEpch8Hz .card__image img {
    width: 75%;
  }
}
.cid-tsfEpch8Hz UL {
  color: #c2c2c2;
}
.cid-slaqaRjCyF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-slaqaRjCyF .card-img span {
  color: #7242d6;
  font-size: 5.3rem;
}
.cid-slaqaRjCyF .mbr-text {
  color: #c2c2c2;
}
.cid-slaqaRjCyF p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-slaqaRjCyF .card {
    margin-bottom: 2rem;
  }
}
.cid-slaqaRjCyF .card-title,
.cid-slaqaRjCyF .card-img {
  color: #ffffff;
}
.cid-slaqaRjCyF .mbr-section-title {
  text-align: center;
  color: #ececec;
}
.cid-slaqaRjCyF .mbr-section-sub-title {
  text-align: center;
  color: #c2c2c2;
}
.cid-tDtg7OgdJO {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-tDtg7OgdJO h4 {
  display: flex;
  color: #000000;
}
.cid-tDtg7OgdJO .panel-text {
  color: #ececec;
  line-height: 1.7;
}
.cid-tDtg7OgdJO .wrap {
  display: flex;
}
.cid-tDtg7OgdJO .icon {
  background: #ff4a52;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  color: white!important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-tDtg7OgdJO img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-tDtg7OgdJO .mbr-section-title {
  color: #ececec;
  text-align: center;
}
.cid-tDtg7OgdJO p {
  margin: 0;
}
.cid-tDtg7OgdJO .card .card-header a.panel-title {
  background-color: none!important;
  margin-top: 0px!important;
}
.cid-tDtg7OgdJO .mbr-section-subtitle {
  font-weight: 500;
  color: #656565;
  text-align: center;
}
.cid-tDtg7OgdJO .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tDtg7OgdJO .panel-group {
  width: 100%;
}
.cid-tDtg7OgdJO .panel-title {
  border-bottom: 1px solid #ececec;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tDtg7OgdJO .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tDtg7OgdJO .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #000000;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tDtg7OgdJO .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tDtg7OgdJO .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tDtg7OgdJO .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-tDtg7OgdJO .card .panel-body {
  background: #000000;
}
.cid-tDtg7OgdJO .sign {
  color: #000000;
}
.cid-tDtg7OgdJO .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tDtg7OgdJO .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-tDtg7OgdJO .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-tDtg7OgdJO .header-text,
.cid-tDtg7OgdJO .sign {
  color: #ececec;
}
.cid-tyQHnYIAHn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-tyQHnYIAHn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyQHnYIAHn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tyQHnYIAHn .row {
    flex-direction: column-reverse;
  }
  .cid-tyQHnYIAHn .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tyQHnYIAHn .google-map {
  height: 100%;
  position: relative;
}
.cid-tyQHnYIAHn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tyQHnYIAHn .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tyQHnYIAHn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tyQHnYIAHn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tyQHnYIAHn .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tyQHnYIAHn .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tyQHnYIAHn .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-tyQHnYIAHn .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tyQHnYIAHn .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tyQHnYIAHn .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ff8a8f;
}
.cid-tyQHnYIAHn .mbr-section-title {
  color: #ececec;
}
.cid-tyQHnYIAHn .mbr-section-subtitle {
  color: #c2c2c2;
}
.cid-slaq8E561p {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-slaq8E561p .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-slaq8E561p .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-slaq8E561p .mbr-text {
  color: #444;
}
.cid-slaq8E561p h5 {
  margin-bottom: 0;
}
.cid-slaq8E561p .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-slaq8E561p .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-slaq8E561p .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-slaq8E561p .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-slaq8E561p .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-slaq8E561p .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-slaq8E561p .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-slaq8E561p .social-list a:hover {
  opacity: .4;
}
.cid-slaq8E561p .media-container-row > div {
  padding: 0px;
}
.cid-slaq8E561p .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-slaq8E561p .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-slaq8E561p .group-title SPAN {
  color: #ffffff;
}
.cid-slaq8E561p .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-slaq8E561p .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-slaq8E561p .social-list,
  .cid-slaq8E561p .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-slaq8E561p h3 {
    margin-bottom: 10px;
  }
  .cid-slaq8E561p .navbar-brand {
    text-align: center;
  }
}
.cid-slaq8E561p .links SPAN {
  color: #9e9e9e;
}
