body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 5.7rem;
}
.display-1 > .mbr-iconfont {
  font-size: 9.12rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.9rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.64rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.72rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 4.56rem;
    font-size: calc( 2.645rem + (5.7 - 2.645) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.645rem + (5.7 - 2.645) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.32rem;
    font-size: calc( 1.665rem + (2.9 - 1.665) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.665rem + (2.9 - 1.665) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #da0e0e !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #ea6a11 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #da0e0e !important;
  border-color: #da0e0e !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #920909 !important;
  border-color: #920909 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #920909 !important;
  border-color: #920909 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ea6a11 !important;
  border-color: #ea6a11 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #a34a0c !important;
  border-color: #a34a0c !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a34a0c !important;
  border-color: #a34a0c !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  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;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  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 !important;
  border-color: #7a0808 !important;
  color: #7a0808 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #da0e0e !important;
  border-color: #da0e0e !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #da0e0e !important;
  border-color: #da0e0e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #8b3f0a !important;
  color: #8b3f0a !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #ea6a11 !important;
  border-color: #ea6a11 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ea6a11 !important;
  border-color: #ea6a11 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.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: #da0e0e !important;
}
.text-secondary {
  color: #444444 !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #ea6a11 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #7a0808 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #111111 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #8b3f0a !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: #000000;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #ea6a11;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #da0e0e;
  border-color: #da0e0e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #da0e0e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbb9b9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.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: #fbdfcc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #da0e0e;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #da0e0e;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #da0e0e;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #da0e0e;
  color: #ffffff;
}
.jq-number__spin {
  background-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: #da0e0e;
  border-bottom-color: #da0e0e;
}
.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: #da0e0e !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: #444444 !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='%23da0e0e' %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-t0j3yFUy5s .dropdown-menu {
  padding: 12px 0;
}
.cid-t0j3yFUy5s .dropdown-item:hover,
.cid-t0j3yFUy5s .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-t0j3yFUy5s .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-t0j3yFUy5s .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-t0j3yFUy5s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0j3yFUy5s .nav-link {
  position: relative;
}
.cid-t0j3yFUy5s .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-t0j3yFUy5s .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0j3yFUy5s .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-t0j3yFUy5s .dropdown-menu,
.cid-t0j3yFUy5s .navbar.opened {
  background: #000000 !important;
}
.cid-t0j3yFUy5s .nav-item:focus,
.cid-t0j3yFUy5s .nav-link:focus {
  outline: none;
}
.cid-t0j3yFUy5s .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-t0j3yFUy5s .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-t0j3yFUy5s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0j3yFUy5s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0j3yFUy5s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t0j3yFUy5s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t0j3yFUy5s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0j3yFUy5s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0j3yFUy5s .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
}
.cid-t0j3yFUy5s .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-t0j3yFUy5s .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-t0j3yFUy5s .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-t0j3yFUy5s .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-t0j3yFUy5s .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-t0j3yFUy5s .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-t0j3yFUy5s .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-t0j3yFUy5s .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-t0j3yFUy5s .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-t0j3yFUy5s .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-t0j3yFUy5s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0j3yFUy5s .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-t0j3yFUy5s .navbar.collapsed.opened {
  position: fixed;
}
.cid-t0j3yFUy5s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-t0j3yFUy5s .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-t0j3yFUy5s .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t0j3yFUy5s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0j3yFUy5s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0j3yFUy5s .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0j3yFUy5s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0j3yFUy5s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0j3yFUy5s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0j3yFUy5s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0j3yFUy5s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0j3yFUy5s .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-t0j3yFUy5s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0j3yFUy5s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0j3yFUy5s .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-t0j3yFUy5s .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-t0j3yFUy5s .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t0j3yFUy5s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0j3yFUy5s .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0j3yFUy5s .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-t0j3yFUy5s .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0j3yFUy5s .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-t0j3yFUy5s .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0j3yFUy5s .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0j3yFUy5s .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0j3yFUy5s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0j3yFUy5s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0j3yFUy5s .dropdown-item.active,
.cid-t0j3yFUy5s .dropdown-item:active {
  background-color: transparent;
}
.cid-t0j3yFUy5s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0j3yFUy5s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0j3yFUy5s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0j3yFUy5s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t0j3yFUy5s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0j3yFUy5s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0j3yFUy5s ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0j3yFUy5s .navbar-buttons {
  text-align: center;
}
.cid-t0j3yFUy5s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0j3yFUy5s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t0j3yFUy5s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0j3yFUy5s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0j3yFUy5s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0j3yFUy5s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0j3yFUy5s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0j3yFUy5s nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0j3yFUy5s nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0j3yFUy5s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0j3yFUy5s .navbar-dropdown {
  position: fixed;
}
.cid-t0j3yFUy5s a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t0j3yFUy5s .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-t0j3yFUy5s .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-t0j3yFUy5s .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0j3yFUy5s .navbar {
    height: 77px;
  }
  .cid-t0j3yFUy5s .navbar.opened {
    height: auto;
  }
  .cid-t0j3yFUy5s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0dOEz83yu {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t0dOEz83yu .content__block {
  padding: 50px 15px;
}
.cid-t0dOEz83yu .circle:after {
  content: '•';
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-top: -2px;
  color: #da0e0e;
  margin-left: 4px;
  margin-right: 4px;
}
.cid-t0dOEz83yu .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-t0dOEz83yu .mbr-text {
  opacity: 0.6;
  margin-bottom: 25px;
}
.cid-t0dOEz83yu .image {
  perspective: 3500px;
  position: relative;
}
.cid-t0dOEz83yu .image:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
  z-index: 1;
  pointer-events: none;
  left: 0;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
}
.cid-t0dOEz83yu .image img {
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0dOEz83yu .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-t0dOEz83yu .mbr-section-btn .btn-white-outline:hover {
  color: #da0e0e !important;
}
@media (max-width: 991px) {
  .cid-t0dOEz83yu .content__block {
    padding: 30px 15px;
  }
  .cid-t0dOEz83yu .mbr-figure {
    padding: 0;
  }
  .cid-t0dOEz83yu .image:before {
    width: 100%;
    height: 50%;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
  }
}
@media (min-width: 992px) {
  .cid-t0dOEz83yu .lg-push {
    right: 9%;
  }
  .cid-t0dOEz83yu .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-t0dOEz83yu .row:hover .image img {
    transform: rotateY(8deg);
  }
  .cid-t0dOEz83yu .lg-push {
    left: 9%;
  }
  .cid-t0dOEz83yu .row:hover .image img {
    transform: rotateY(-8deg);
  }
}
.cid-t0dOEz83yu .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-t0dOEz83yu .mbr-text,
.cid-t0dOEz83yu .mbr-section-btn {
  color: #ffffff;
}
.cid-t0ebkD65ZE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-t0ebkD65ZE .image-wrapper {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.cid-t0ebkD65ZE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0ebkD65ZE .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-t0ebkD65ZE .mbr-section-title {
  color: #000000;
}
.cid-t0ebkD65ZE .mbr-text {
  color: #000000;
}
.cid-t0ebkD65ZE .mbr-description {
  color: #6c7577;
}
.cid-tcWJaDOtuJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/vertical-closeup-shot-gear-stick-2000x3010.jpg");
}
.cid-tcWJaDOtuJ .mbr-section-title {
  color: #ffffff;
}
.cid-tcWJaDOtuJ .mbr-text,
.cid-tcWJaDOtuJ .mbr-section-btn {
  color: #ffffff;
}
.cid-tcWJaDOtuJ .mbr-iconfont {
  font-size: 10rem;
  color: #fa4529;
}
.cid-tcWJaDOtuJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tcWJaDOtuJ h1 {
  line-height: 1.3;
}
.cid-t0dSAGpg5s {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t0dSAGpg5s .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-t0dSAGpg5s .item-content {
  background: #efefef;
  transition: all 0.3s;
  border: 2px solid #e1e1e1;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-t0dSAGpg5s .item-content:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0px 16px 32px 0px #0000000a;
}
@media (max-width: 767px) {
  .cid-t0dSAGpg5s .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-t0dSAGpg5s .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #d53232;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t0dSAGpg5s .img-text {
    left: 1rem;
  }
}
.cid-t0dSAGpg5s img,
.cid-t0dSAGpg5s .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0dSAGpg5s .item:focus,
.cid-t0dSAGpg5s span:focus {
  outline: none;
}
.cid-t0dSAGpg5s .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t0dSAGpg5s .mbr-section-title {
  color: #000000;
}
.cid-t0dSAGpg5s .mbr-text,
.cid-t0dSAGpg5s .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-t0dSAGpg5s .item-title {
  text-align: left;
  color: #1b2026;
}
.cid-t0dSAGpg5s .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-t0dSAGpg5s .mbr-section-subtitle {
  color: #000000;
}
.cid-t0e3itoneb {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-t0e3itoneb .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
  border-radius: 6px;
}
.cid-t0e3itoneb .card-wrapper:hover .ico-wrap {
  opacity: 1;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
}
.cid-t0e3itoneb p {
  line-height: 1.6;
}
.cid-t0e3itoneb .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-t0e3itoneb .ico {
  height: 40px;
  width: 40px;
  background: #333333;
  border-radius: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  margin: 0 3px;
  opacity: 0.9;
}
.cid-t0e3itoneb .ico-wrap {
  position: absolute;
  left: 50%;
  display: flex;
  top: 50%;
  margin: auto;
  z-index: 100;
  transition: all 0.3s;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
}
.cid-t0e3itoneb .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
.cid-t0e3itoneb .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 100%;
}
.cid-t0e3itoneb img {
  transition: all 0.3s;
}
.cid-t0e3itoneb .card-box {
  padding: 1rem;
}
.cid-t0e3itoneb .mbr-section-title {
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}
.cid-t0e3itoneb .card-box > p,
.cid-t0e3itoneb .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-t0e3itoneb .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
@media (max-width: 576px) {
  .cid-t0e3itoneb .ico-wrap {
    opacity: 1;
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
}
.cid-tmFECLs6Y2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmFECLs6Y2 .mbr-section-title,
.cid-tmFECLs6Y2 .mbr-section-subtitle {
  color: #000000;
}
.cid-tmFECLs6Y2 .mbr-section-text {
  color: #232323;
}
.cid-tmFECLs6Y2 .mbr-text,
.cid-tmFECLs6Y2 .typed-text,
.cid-tmFECLs6Y2 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-tmFECLs6Y2 .btn {
  margin-left: 4px !important;
}
.cid-tmFECLs6Y2 .animated-element {
  color: #1dc9cb;
}
.cid-tmFECLs6Y2 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #1dc9cb;
}
.cid-tmFECLs6Y2 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tmFECLs6Y2 .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmFECLs6Y2 .typed-text,
  .cid-tmFECLs6Y2 .mbr-section-subtitle,
  .cid-tmFECLs6Y2 .mbr-section-text,
  .cid-tmFECLs6Y2 .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-tmFECLs6Y2 .mbr-section-subtitle,
.cid-tmFECLs6Y2 .typed-text {
  color: #000000;
}
.cid-tmFECLs6Y2 .mbr-section-text,
.cid-tmFECLs6Y2 .mbr-section-btn {
  color: #000000;
}
.cid-tmFKQvfTbr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmFKQvfTbr .mbr-section-title,
.cid-tmFKQvfTbr .mbr-section-subtitle {
  color: #000000;
}
.cid-tmFKQvfTbr .mbr-section-text {
  color: #232323;
}
.cid-tmFKQvfTbr .mbr-text,
.cid-tmFKQvfTbr .typed-text,
.cid-tmFKQvfTbr .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-tmFKQvfTbr .btn {
  margin-left: 4px !important;
}
.cid-tmFKQvfTbr .animated-element {
  color: #1dc9cb;
}
.cid-tmFKQvfTbr .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #1dc9cb;
}
.cid-tmFKQvfTbr .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tmFKQvfTbr .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmFKQvfTbr .typed-text,
  .cid-tmFKQvfTbr .mbr-section-subtitle,
  .cid-tmFKQvfTbr .mbr-section-text,
  .cid-tmFKQvfTbr .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-tmFKQvfTbr .mbr-section-subtitle,
.cid-tmFKQvfTbr .typed-text {
  color: #000000;
}
.cid-tmFKQvfTbr .mbr-section-text,
.cid-tmFKQvfTbr .mbr-section-btn {
  color: #000000;
}
.cid-tmLWDM6BJ1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tmLWDM6BJ1 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tmLWDM6BJ1 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tmLWDM6BJ1 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #d53232;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tmLWDM6BJ1 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tmLWDM6BJ1 .mbr-text {
  color: #ffffff;
}
.cid-t0dVJ5j4mH {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-t0dVJ5j4mH .mbr-section-head {
  margin-bottom: 2.3rem;
}
.cid-t0dVJ5j4mH .mbr-section-title {
  text-align: center;
}
.cid-t0dVJ5j4mH .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0dVJ5j4mH .text-wrapper {
    margin-top: 2rem;
  }
}
.cid-t0dVJ5j4mH .video-wrapper iframe {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0dVJ5j4mH .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0ee8IocUu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #d72525;
}
.cid-t0ee8IocUu .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-t0ee8IocUu .mbr-section-title,
.cid-t0ee8IocUu .icon-wrap {
  color: #ffffff;
}
.cid-t0e6fVnYzV {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-t0e6fVnYzV .container-fluid {
  padding: 0 3rem;
}
.cid-t0e6fVnYzV .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #da0e0e, #444444);
  display: inline-block;
}
.cid-t0e6fVnYzV .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t0e6fVnYzV .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-t0e6fVnYzV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-t0e6fVnYzV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t0e6fVnYzV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-t0e6fVnYzV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t0e6fVnYzV .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-t0e6fVnYzV .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t0e6fVnYzV .mbr-section-title,
.cid-t0e6fVnYzV .underline {
  text-align: center;
}
.cid-tcXFLjdRo8 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcXFLjdRo8 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-tcXFLjdRo8 .mbr-section-title,
.cid-tcXFLjdRo8 .icon-wrap {
  color: #000000;
}
.cid-t0euMKrdSq {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
  background-color: #ffffff;
}
.cid-t0euMKrdSq .item-image {
  margin-bottom: 5rem;
}
.cid-t0euMKrdSq img,
.cid-t0euMKrdSq .item-img {
  width: 100%;
}
.cid-t0euMKrdSq .item:focus,
.cid-t0euMKrdSq span:focus {
  outline: none;
}
.cid-t0euMKrdSq .item {
  cursor: pointer;
  margin-bottom: 1rem;
  position: relative;
}
.cid-t0euMKrdSq .item-wrapper {
  position: unset;
  height: auto;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0euMKrdSq .mbr-section-title {
  color: #232323;
}
@media (min-width: 768px) {
  .cid-t0euMKrdSq .mbr-section-head {
    margin-bottom: 5rem;
  }
}
@media (max-width: 600px) {
  .cid-t0euMKrdSq .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-t0euMKrdSq .mbr-section-title a {
  color: #9b9ba5 ;
}
.cid-teQZEyrjoB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-teQZEyrjoB .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-teQZEyrjoB .mbr-section-title,
.cid-teQZEyrjoB .icon-wrap {
  color: #000000;
}
.cid-teQZEyrjoB .mbr-text,
.cid-teQZEyrjoB .mbr-section-btn {
  color: #000000;
}
.cid-t0ejD9UX3j {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/color-interrogation-symbols-2000x1333.jpg");
}
@media (min-width: 1500px) {
  .cid-t0ejD9UX3j .container {
    max-width: 1400px;
  }
}
.cid-t0ejD9UX3j .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-t0ejD9UX3j .card-wrapper {
  margin-top: 3rem;
}
.cid-t0ejD9UX3j .row {
  justify-content: center;
}
.cid-t0ejD9UX3j .mbr-section-title {
  color: #ffffff;
}
.cid-t0ejD9UX3j .card-title,
.cid-t0ejD9UX3j .iconfont-wrapper {
  color: #ffffff;
}
.cid-t0ekGH1Kxc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0ekGH1Kxc .container {
  max-width: 1312px;
}
.cid-t0ekGH1Kxc .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-t0ekGH1Kxc .row {
    padding: 0 16px;
  }
}
.cid-t0ekGH1Kxc .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0ekGH1Kxc .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-t0ekGH1Kxc .content-wrap {
    padding: 32px 20px;
  }
}
.cid-t0ekGH1Kxc .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-t0ekGH1Kxc .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-t0ekGH1Kxc .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t0ekGH1Kxc .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t0ekGH1Kxc .col-text {
    padding-right: 1rem;
  }
}
.cid-t0ekGH1Kxc .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t0ekGH1Kxc .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0ekGH1Kxc .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0ekGH1Kxc .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-t0ekGH1Kxc .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t0ekGH1Kxc .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0ekGH1Kxc .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t0ekGH1Kxc .mbr-text,
.cid-t0ekGH1Kxc .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-t0eqBeyVna {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t0eqBeyVna .content__block {
  padding: 50px 15px;
}
.cid-t0eqBeyVna .circle:after {
  content: '•';
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-top: -2px;
  color: #da0e0e;
  margin-left: 4px;
  margin-right: 4px;
}
.cid-t0eqBeyVna .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-t0eqBeyVna .mbr-text {
  opacity: 0.6;
  margin-bottom: 25px;
}
.cid-t0eqBeyVna .image {
  perspective: 3500px;
  position: relative;
}
.cid-t0eqBeyVna .image:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
  z-index: 1;
  pointer-events: none;
  left: 0;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
}
.cid-t0eqBeyVna .image img {
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0eqBeyVna .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-t0eqBeyVna .mbr-section-btn .btn-white-outline:hover {
  color: #da0e0e !important;
}
@media (max-width: 991px) {
  .cid-t0eqBeyVna .content__block {
    padding: 30px 15px;
  }
  .cid-t0eqBeyVna .mbr-figure {
    padding: 0;
  }
  .cid-t0eqBeyVna .image:before {
    width: 100%;
    height: 50%;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
  }
}
@media (min-width: 992px) {
  .cid-t0eqBeyVna .lg-push {
    right: 5%;
  }
  .cid-t0eqBeyVna .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-t0eqBeyVna .row:hover .image img {
    transform: rotateY(8deg);
  }
  .cid-t0eqBeyVna .lg-push {
    left: 5%;
  }
  .cid-t0eqBeyVna .row:hover .image img {
    transform: rotateY(-8deg);
  }
}
.cid-t0eqBeyVna .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-t0eqBeyVna .mbr-text,
.cid-t0eqBeyVna .mbr-section-btn {
  color: #ffffff;
}
.cid-t0eISe49bc {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-t0eISe49bc .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-t0eISe49bc .mbr-section-title,
.cid-t0eISe49bc .icon-wrap {
  color: #000000;
}
.cid-t0eH6rHdIN {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #1e2228;
}
.cid-t0eH6rHdIN ul {
  padding: 0;
  margin: 0;
}
.cid-t0eH6rHdIN ul li {
  list-style: none;
}
.cid-t0eH6rHdIN ul li h4 {
  margin: 0;
}
.cid-t0eH6rHdIN ul li h4.display-4 {
  line-height: 1.75;
}
.cid-t0eH6rHdIN .item {
  color: #cacaca;
}
.cid-t0eH6rHdIN .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-t0eH6rHdIN .fill-light-wrapper {
  fill: #f9fafb;
  z-index: 2 !important;
  top: 0;
}
.cid-t0eH6rHdIN .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-t0eH6rHdIN .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-t0eH6rHdIN .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 20px;
}
.cid-t0eH6rHdIN .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-t0eGNhelte {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tmhqE9zUsj .dropdown-menu {
  padding: 12px 0;
}
.cid-tmhqE9zUsj .dropdown-item:hover,
.cid-tmhqE9zUsj .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-tmhqE9zUsj .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-tmhqE9zUsj .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-tmhqE9zUsj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmhqE9zUsj .nav-link {
  position: relative;
}
.cid-tmhqE9zUsj .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-tmhqE9zUsj .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmhqE9zUsj .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-tmhqE9zUsj .dropdown-menu,
.cid-tmhqE9zUsj .navbar.opened {
  background: #000000 !important;
}
.cid-tmhqE9zUsj .nav-item:focus,
.cid-tmhqE9zUsj .nav-link:focus {
  outline: none;
}
.cid-tmhqE9zUsj .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-tmhqE9zUsj .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-tmhqE9zUsj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tmhqE9zUsj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmhqE9zUsj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tmhqE9zUsj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tmhqE9zUsj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmhqE9zUsj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmhqE9zUsj .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
}
.cid-tmhqE9zUsj .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-tmhqE9zUsj .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-tmhqE9zUsj .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-tmhqE9zUsj .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-tmhqE9zUsj .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-tmhqE9zUsj .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-tmhqE9zUsj .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-tmhqE9zUsj .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-tmhqE9zUsj .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-tmhqE9zUsj .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tmhqE9zUsj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmhqE9zUsj .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-tmhqE9zUsj .navbar.collapsed.opened {
  position: fixed;
}
.cid-tmhqE9zUsj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-tmhqE9zUsj .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tmhqE9zUsj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tmhqE9zUsj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmhqE9zUsj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmhqE9zUsj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tmhqE9zUsj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmhqE9zUsj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmhqE9zUsj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmhqE9zUsj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmhqE9zUsj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmhqE9zUsj .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-tmhqE9zUsj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmhqE9zUsj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmhqE9zUsj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-tmhqE9zUsj .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-tmhqE9zUsj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tmhqE9zUsj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmhqE9zUsj .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmhqE9zUsj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-tmhqE9zUsj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tmhqE9zUsj .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tmhqE9zUsj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tmhqE9zUsj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tmhqE9zUsj .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmhqE9zUsj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmhqE9zUsj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmhqE9zUsj .dropdown-item.active,
.cid-tmhqE9zUsj .dropdown-item:active {
  background-color: transparent;
}
.cid-tmhqE9zUsj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmhqE9zUsj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmhqE9zUsj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmhqE9zUsj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tmhqE9zUsj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmhqE9zUsj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmhqE9zUsj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tmhqE9zUsj .navbar-buttons {
  text-align: center;
}
.cid-tmhqE9zUsj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tmhqE9zUsj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tmhqE9zUsj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmhqE9zUsj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmhqE9zUsj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmhqE9zUsj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmhqE9zUsj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmhqE9zUsj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmhqE9zUsj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmhqE9zUsj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmhqE9zUsj .navbar-dropdown {
  position: fixed;
}
.cid-tmhqE9zUsj a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmhqE9zUsj .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tmhqE9zUsj .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-tmhqE9zUsj .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmhqE9zUsj .navbar {
    height: 77px;
  }
  .cid-tmhqE9zUsj .navbar.opened {
    height: auto;
  }
  .cid-tmhqE9zUsj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmhqEabvML {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tmhqEabvML .content__block {
  padding: 50px 15px;
}
.cid-tmhqEabvML .circle:after {
  content: '•';
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-top: -2px;
  color: #da0e0e;
  margin-left: 4px;
  margin-right: 4px;
}
.cid-tmhqEabvML .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-tmhqEabvML .mbr-text {
  opacity: 0.6;
  margin-bottom: 25px;
}
.cid-tmhqEabvML .image {
  perspective: 3500px;
  position: relative;
}
.cid-tmhqEabvML .image:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
  z-index: 1;
  pointer-events: none;
  left: 0;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
}
.cid-tmhqEabvML .image img {
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tmhqEabvML .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-tmhqEabvML .mbr-section-btn .btn-white-outline:hover {
  color: #da0e0e !important;
}
@media (max-width: 991px) {
  .cid-tmhqEabvML .content__block {
    padding: 30px 15px;
  }
  .cid-tmhqEabvML .mbr-figure {
    padding: 0;
  }
  .cid-tmhqEabvML .image:before {
    width: 100%;
    height: 50%;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
  }
}
@media (min-width: 992px) {
  .cid-tmhqEabvML .lg-push {
    right: 9%;
  }
  .cid-tmhqEabvML .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-tmhqEabvML .row:hover .image img {
    transform: rotateY(8deg);
  }
  .cid-tmhqEabvML .lg-push {
    left: 9%;
  }
  .cid-tmhqEabvML .row:hover .image img {
    transform: rotateY(-8deg);
  }
}
.cid-tmhqEabvML .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-tmhqEabvML .mbr-text,
.cid-tmhqEabvML .mbr-section-btn {
  color: #ffffff;
}
.cid-tmhqEapxSg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-tmhqEapxSg .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tmhqEapxSg .item-content {
  background: #efefef;
  transition: all 0.3s;
  border: 2px solid #e1e1e1;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-tmhqEapxSg .item-content:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0px 16px 32px 0px #0000000a;
}
@media (max-width: 767px) {
  .cid-tmhqEapxSg .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-tmhqEapxSg .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #d53232;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tmhqEapxSg .img-text {
    left: 1rem;
  }
}
.cid-tmhqEapxSg img,
.cid-tmhqEapxSg .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tmhqEapxSg .item:focus,
.cid-tmhqEapxSg span:focus {
  outline: none;
}
.cid-tmhqEapxSg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tmhqEapxSg .mbr-section-title {
  color: #232323;
}
.cid-tmhqEapxSg .mbr-text,
.cid-tmhqEapxSg .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tmhqEapxSg .item-title {
  text-align: left;
  color: #1b2026;
}
.cid-tmhqEapxSg .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-tmhqEapxSg .mbr-section-subtitle {
  color: #777777;
}
.cid-tmhqEaOZBs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/vertical-closeup-shot-gear-stick-2000x3010.jpg");
}
.cid-tmhqEaOZBs .mbr-section-title {
  color: #ffffff;
}
.cid-tmhqEaOZBs .mbr-text,
.cid-tmhqEaOZBs .mbr-section-btn {
  color: #ffffff;
}
.cid-tmhqEaOZBs .mbr-iconfont {
  font-size: 10rem;
  color: #fa4529;
}
.cid-tmhqEaOZBs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tmhqEaOZBs h1 {
  line-height: 1.3;
}
.cid-tmhqEb5NPV {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tmhqEb5NPV img {
  transition: all 0.3s;
  width: 100%;
}
.cid-tmhqEb5NPV .img-wrapper {
  overflow: hidden;
}
.cid-tmhqEb5NPV .container {
  max-width: 1400px;
}
@media (min-width: 767px) {
  .cid-tmhqEb5NPV .container {
    padding: 0 2rem;
  }
}
.cid-tmhqEb5NPV .title {
  display: flex;
  padding: 0 1rem;
}
.cid-tmhqEb5NPV .title-box {
  width: 100%;
}
.cid-tmhqEb5NPV .icon {
  font-size: 5rem;
  color: #ffd96a;
  padding-right: 0rem;
  margin-right: -1rem;
  display: block;
}
.cid-tmhqEb5NPV .mbr-iconfont {
  font-size: 1.5rem;
  color: currentColor;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s;
}
.cid-tmhqEb5NPV .card-wrapper {
  background: #fafafa;
  margin-bottom: 2rem;
}
.cid-tmhqEb5NPV .card-wrapper:hover img {
  transform: scale(1.1);
}
.cid-tmhqEb5NPV .card-wrapper:hover .mbr-iconfont {
  transform: translateX(8px);
}
.cid-tmhqEb5NPV .card-box {
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-tmhqEb5NPV .card-box {
    padding: 1rem;
  }
  .cid-tmhqEb5NPV .align-left {
    text-align: center;
  }
  .cid-tmhqEb5NPV .align-right,
  .cid-tmhqEb5NPV .align-left {
    text-align: center;
  }
  .cid-tmhqEb5NPV .title {
    flex-direction: column;
  }
  .cid-tmhqEb5NPV .icon,
  .cid-tmhqEb5NPV .title-box {
    margin: 0rem;
  }
  .cid-tmhqEb5NPV .icon {
    margin: auto;
    margin-bottom: 1rem;
  }
}
.cid-tmhqEb5NPV .mbr-text,
.cid-tmhqEb5NPV .card-box {
  color: #000000;
}
.cid-tmhqEb5NPV .card-subtitle {
  color: #59bb93;
}
.cid-tmhqEb5NPV .main-title {
  color: #000000;
  text-align: center;
}
.cid-tmhqEbAOA4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/artboard-1-copy-8-2000x800.png");
}
.cid-tmhqEbAOA4 .mbr-section-title,
.cid-tmhqEbAOA4 .mbr-section-subtitle {
  color: #000000;
}
.cid-tmhqEbAOA4 .mbr-section-text {
  color: #232323;
}
.cid-tmhqEbAOA4 .mbr-text,
.cid-tmhqEbAOA4 .typed-text,
.cid-tmhqEbAOA4 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-tmhqEbAOA4 .btn {
  margin-left: 4px !important;
}
.cid-tmhqEbAOA4 .animated-element {
  color: #1dc9cb;
}
.cid-tmhqEbAOA4 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #1dc9cb;
}
.cid-tmhqEbAOA4 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tmhqEbAOA4 .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmhqEbAOA4 .typed-text,
  .cid-tmhqEbAOA4 .mbr-section-subtitle,
  .cid-tmhqEbAOA4 .mbr-section-text,
  .cid-tmhqEbAOA4 .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-tmhqEbAOA4 .mbr-section-subtitle,
.cid-tmhqEbAOA4 .typed-text {
  color: #ffffff;
}
.cid-tmhqEbAOA4 .mbr-section-text,
.cid-tmhqEbAOA4 .mbr-section-btn {
  color: #ffffff;
}
.cid-tmhqEbTLl6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #e1e1e1;
}
.cid-tmhqEbTLl6 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-tmhqEbTLl6 .mbr-section-title,
.cid-tmhqEbTLl6 .icon-wrap {
  color: #000000;
}
.cid-tmhqEc7mpS {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/osley-coke-zwvbclsfpsm-unsplash-2000x1009.jpg");
}
.cid-tmhqEc7mpS .mbr-section-head {
  margin-bottom: 2.3rem;
}
.cid-tmhqEc7mpS .mbr-section-title {
  text-align: center;
}
.cid-tmhqEc7mpS .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tmhqEc7mpS .text-wrapper {
    margin-top: 2rem;
  }
}
.cid-tmhqEc7mpS .video-wrapper iframe {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tmhqEc7mpS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tmhqEcm1X3 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tmhqEcm1X3 .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
  border-radius: 6px;
}
.cid-tmhqEcm1X3 .card-wrapper:hover .ico-wrap {
  opacity: 1;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
}
.cid-tmhqEcm1X3 p {
  line-height: 1.6;
}
.cid-tmhqEcm1X3 .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-tmhqEcm1X3 .ico {
  height: 40px;
  width: 40px;
  background: #333333;
  border-radius: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  margin: 0 3px;
  opacity: 0.9;
}
.cid-tmhqEcm1X3 .ico-wrap {
  position: absolute;
  left: 50%;
  display: flex;
  top: 50%;
  margin: auto;
  z-index: 100;
  transition: all 0.3s;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
}
.cid-tmhqEcm1X3 .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
.cid-tmhqEcm1X3 .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 100%;
}
.cid-tmhqEcm1X3 img {
  transition: all 0.3s;
}
.cid-tmhqEcm1X3 .card-box {
  padding: 1rem;
}
.cid-tmhqEcm1X3 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-tmhqEcm1X3 .card-box > p,
.cid-tmhqEcm1X3 .mbr-section-btn {
  color: #9e9e9e;
  text-align: center;
}
.cid-tmhqEcm1X3 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
@media (max-width: 576px) {
  .cid-tmhqEcm1X3 .ico-wrap {
    opacity: 1;
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
}
.cid-tmhqEcPNG9 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tmhqEcPNG9 .container-fluid {
  padding: 0 3rem;
}
.cid-tmhqEcPNG9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #da0e0e, #444444);
  display: inline-block;
}
.cid-tmhqEcPNG9 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmhqEcPNG9 .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tmhqEcPNG9 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-tmhqEcPNG9 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tmhqEcPNG9 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-tmhqEcPNG9 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tmhqEcPNG9 .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-tmhqEcPNG9 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tmhqEcPNG9 .mbr-section-title,
.cid-tmhqEcPNG9 .underline {
  text-align: center;
}
.cid-tmhqEddREP {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmhqEddREP .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-tmhqEddREP .mbr-section-title,
.cid-tmhqEddREP .icon-wrap {
  color: #000000;
}
.cid-tmhqEdswah {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
  background-color: #ffffff;
}
.cid-tmhqEdswah .item-image {
  margin-bottom: 5rem;
}
.cid-tmhqEdswah img,
.cid-tmhqEdswah .item-img {
  width: 100%;
}
.cid-tmhqEdswah .item:focus,
.cid-tmhqEdswah span:focus {
  outline: none;
}
.cid-tmhqEdswah .item {
  cursor: pointer;
  margin-bottom: 1rem;
  position: relative;
}
.cid-tmhqEdswah .item-wrapper {
  position: unset;
  height: auto;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tmhqEdswah .mbr-section-title {
  color: #232323;
}
@media (min-width: 768px) {
  .cid-tmhqEdswah .mbr-section-head {
    margin-bottom: 5rem;
  }
}
@media (max-width: 600px) {
  .cid-tmhqEdswah .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tmhqEdswah .mbr-section-title a {
  color: #9b9ba5 ;
}
.cid-tmhqEdNbMo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/osley-coke-zwvbclsfpsm-unsplash-2000x1009.jpg");
}
@media (max-width: 991px) {
  .cid-tmhqEdNbMo .image-wrapper {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.cid-tmhqEdNbMo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tmhqEdNbMo .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tmhqEdNbMo .mbr-section-title {
  color: #ffffff;
}
.cid-tmhqEdNbMo .mbr-text {
  color: #6c7577;
}
.cid-tmhqEdNbMo .mbr-description {
  color: #6c7577;
}
.cid-tmhqEe3Ais {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-tmhqEe3Ais .video-wrapper iframe {
  width: 100%;
}
.cid-tmhqEe3Ais h2,
.cid-tmhqEe3Ais h4,
.cid-tmhqEe3Ais p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tmhqEe3Ais .col-md-6 {
    width: 100%;
  }
}
.cid-tmhqEe3Ais .mbr-section-head {
  margin-bottom: 2rem;
}
@media (min-width: 993px) {
  .cid-tmhqEe3Ais .mbr-section-head {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-tmhqEe3Ais .mbr-section-head {
    text-align: center;
  }
}
.cid-tmhqEe3Ais .mbr-section-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-tmhqEe3Ais .mbr-section-subtitle {
  color: #6b6b6b;
  margin-bottom: 6px;
}
.cid-tmhqEe3Ais .mbr-text {
  color: #000000;
}
.cid-tmhqEerVnX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tmhqEerVnX .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-tmhqEerVnX .mbr-section-title,
.cid-tmhqEerVnX .icon-wrap {
  color: #000000;
}
.cid-tmhqEeNEOR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tmhqEeNEOR .video-wrapper iframe {
  width: 100%;
}
.cid-tmhqEeNEOR h2,
.cid-tmhqEeNEOR h4,
.cid-tmhqEeNEOR p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tmhqEeNEOR .col-md-6 {
    width: 100%;
  }
}
.cid-tmhqEeNEOR .mbr-section-head {
  margin-bottom: 2rem;
}
@media (min-width: 993px) {
  .cid-tmhqEeNEOR .mbr-section-head {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-tmhqEeNEOR .mbr-section-head {
    text-align: center;
  }
}
.cid-tmhqEeNEOR .mbr-section-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-tmhqEeNEOR .mbr-section-subtitle {
  color: #6b6b6b;
  margin-bottom: 6px;
}
.cid-tmhqEeNEOR .mbr-text {
  color: #000000;
}
.cid-tmhqEf2lms {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/color-interrogation-symbols-2000x1333.jpg");
}
@media (min-width: 1500px) {
  .cid-tmhqEf2lms .container {
    max-width: 1400px;
  }
}
.cid-tmhqEf2lms .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tmhqEf2lms .card-wrapper {
  margin-top: 3rem;
}
.cid-tmhqEf2lms .row {
  justify-content: center;
}
.cid-tmhqEf2lms .mbr-section-title {
  color: #ffffff;
}
.cid-tmhqEf2lms .card-title,
.cid-tmhqEf2lms .iconfont-wrapper {
  color: #ffffff;
}
.cid-tmhqEfoKRi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmhqEfoKRi .container {
  max-width: 1312px;
}
.cid-tmhqEfoKRi .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-tmhqEfoKRi .row {
    padding: 0 16px;
  }
}
.cid-tmhqEfoKRi .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tmhqEfoKRi .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-tmhqEfoKRi .content-wrap {
    padding: 32px 20px;
  }
}
.cid-tmhqEfoKRi .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tmhqEfoKRi .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-tmhqEfoKRi .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tmhqEfoKRi .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tmhqEfoKRi .col-text {
    padding-right: 1rem;
  }
}
.cid-tmhqEfoKRi .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tmhqEfoKRi .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-tmhqEfoKRi .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tmhqEfoKRi .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-tmhqEfoKRi .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-tmhqEfoKRi .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tmhqEfoKRi .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tmhqEfoKRi .mbr-text,
.cid-tmhqEfoKRi .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tmhqEfEWzZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tmhqEfEWzZ .content__block {
  padding: 50px 15px;
}
.cid-tmhqEfEWzZ .circle:after {
  content: '•';
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-top: -2px;
  color: #da0e0e;
  margin-left: 4px;
  margin-right: 4px;
}
.cid-tmhqEfEWzZ .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-tmhqEfEWzZ .mbr-text {
  opacity: 0.6;
  margin-bottom: 25px;
}
.cid-tmhqEfEWzZ .image {
  perspective: 3500px;
  position: relative;
}
.cid-tmhqEfEWzZ .image:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
  z-index: 1;
  pointer-events: none;
  left: 0;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
}
.cid-tmhqEfEWzZ .image img {
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tmhqEfEWzZ .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-tmhqEfEWzZ .mbr-section-btn .btn-white-outline:hover {
  color: #da0e0e !important;
}
@media (max-width: 991px) {
  .cid-tmhqEfEWzZ .content__block {
    padding: 30px 15px;
  }
  .cid-tmhqEfEWzZ .mbr-figure {
    padding: 0;
  }
  .cid-tmhqEfEWzZ .image:before {
    width: 100%;
    height: 50%;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
  }
}
@media (min-width: 992px) {
  .cid-tmhqEfEWzZ .lg-push {
    right: 5%;
  }
  .cid-tmhqEfEWzZ .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-tmhqEfEWzZ .row:hover .image img {
    transform: rotateY(8deg);
  }
  .cid-tmhqEfEWzZ .lg-push {
    left: 5%;
  }
  .cid-tmhqEfEWzZ .row:hover .image img {
    transform: rotateY(-8deg);
  }
}
.cid-tmhqEfEWzZ .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-tmhqEfEWzZ .mbr-text,
.cid-tmhqEfEWzZ .mbr-section-btn {
  color: #ffffff;
}
.cid-tmhqEfSbB3 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tmhqEfSbB3 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-tmhqEfSbB3 .mbr-section-title,
.cid-tmhqEfSbB3 .icon-wrap {
  color: #000000;
}
.cid-tmhqEg74lX {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #1e2228;
}
.cid-tmhqEg74lX ul {
  padding: 0;
  margin: 0;
}
.cid-tmhqEg74lX ul li {
  list-style: none;
}
.cid-tmhqEg74lX ul li h4 {
  margin: 0;
}
.cid-tmhqEg74lX ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tmhqEg74lX .item {
  color: #cacaca;
}
.cid-tmhqEg74lX .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-tmhqEg74lX .fill-light-wrapper {
  fill: #f9fafb;
  z-index: 2 !important;
  top: 0;
}
.cid-tmhqEg74lX .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-tmhqEg74lX .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-tmhqEg74lX .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 20px;
}
.cid-tmhqEg74lX .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-tmhqEgxSLZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
