body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.1rem;
}
.display-1 > .mbr-iconfont {
  font-size: 12.96rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 8rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.76rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-7 {
  font-family: 'DM Sans', 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: 992px) {
  .display-1 {
    font-size: 4.86rem;
  }
}
@media (max-width: 767px) {
  .display-1 {
    font-size: 2.025rem !important;
  }
}
@media (max-width: 992px) {
  .display-4:not(.nav-link) {
    font-size: 0.66rem;
  }
}
@media (max-width: 992px) {
  .display-5 {
    font-size: 1.44rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 6.48rem;
    font-size: calc( 3.4849999999999994rem + (8.1 - 3.4849999999999994) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (3.4849999999999994rem + (8.1 - 3.4849999999999994) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #167e85 !important;
}
.bg-success {
  background-color: #ffcc00 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #167e85 !important;
  border-color: #167e85 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0b4043 !important;
  border-color: #0b4043 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0b4043 !important;
  border-color: #0b4043 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffcc00 !important;
  border-color: #ffcc00 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #b38f00 !important;
  border-color: #b38f00 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #b38f00 !important;
  border-color: #b38f00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  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 {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  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 {
  background: none;
  border-color: #082b2d;
  color: #082b2d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #167e85;
  border-color: #167e85;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #167e85 !important;
  border-color: #167e85 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #997a00;
  color: #997a00;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #ffcc00;
  border-color: #ffcc00;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #ffcc00 !important;
  border-color: #ffcc00 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #4d4d4d;
  color: #4d4d4d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #167e85 !important;
}
.text-secondary {
  color: #149dcc !important;
}
.text-success {
  color: #ffcc00 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #808080 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #26d0db !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #57c8ef !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffe066 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #167e85;
  border-color: #167e85;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #167e85;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #3cd4df;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff5cc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #167e85;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #167e85;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #167e85;
  border-bottom-color: #167e85;
}
.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: #167e85 !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: #149dcc !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23167e85' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sKyTWBctpn .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sKyTWBctpn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sKyTWBctpn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sKyTWBctpn .nav-link {
  position: relative;
}
.cid-sKyTWBctpn .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sKyTWBctpn .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sKyTWBctpn .container {
  display: flex;
  margin: auto;
}
.cid-sKyTWBctpn .navbar.navbar-short .nav-link,
.cid-sKyTWBctpn .navbar.navbar-short .navbar-caption,
.cid-sKyTWBctpn .navbar.navbar-short .mbr-iconfont,
.cid-sKyTWBctpn .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sKyTWBctpn .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sKyTWBctpn .navbar-caption {
  padding-right: 3rem;
}
.cid-sKyTWBctpn .dropdown-menu,
.cid-sKyTWBctpn .navbar.opened {
  background: #bc133e !important;
}
.cid-sKyTWBctpn .nav-item:focus,
.cid-sKyTWBctpn .nav-link:focus {
  outline: none;
}
.cid-sKyTWBctpn .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-sKyTWBctpn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sKyTWBctpn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sKyTWBctpn .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-sKyTWBctpn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sKyTWBctpn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sKyTWBctpn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-sKyTWBctpn .navbar.opened {
  transition: all .3s;
}
.cid-sKyTWBctpn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sKyTWBctpn .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sKyTWBctpn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sKyTWBctpn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sKyTWBctpn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sKyTWBctpn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sKyTWBctpn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sKyTWBctpn .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-sKyTWBctpn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sKyTWBctpn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sKyTWBctpn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sKyTWBctpn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sKyTWBctpn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sKyTWBctpn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sKyTWBctpn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sKyTWBctpn .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: 55%;
  }
  .cid-sKyTWBctpn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sKyTWBctpn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sKyTWBctpn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sKyTWBctpn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sKyTWBctpn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sKyTWBctpn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sKyTWBctpn .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-sKyTWBctpn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sKyTWBctpn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sKyTWBctpn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sKyTWBctpn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sKyTWBctpn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sKyTWBctpn .dropdown-item.active,
.cid-sKyTWBctpn .dropdown-item:active {
  background-color: transparent;
}
.cid-sKyTWBctpn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sKyTWBctpn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sKyTWBctpn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sKyTWBctpn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-sKyTWBctpn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sKyTWBctpn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sKyTWBctpn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sKyTWBctpn .navbar-buttons {
  text-align: center;
}
.cid-sKyTWBctpn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sKyTWBctpn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sKyTWBctpn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sKyTWBctpn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyTWBctpn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyTWBctpn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sKyTWBctpn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyTWBctpn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sKyTWBctpn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sKyTWBctpn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyTWBctpn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sKyTWBctpn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKyTWBctpn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sKyTWBctpn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sKyTWBctpn .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sKyTWBctpn .navbar {
    height: 77px;
  }
  .cid-sKyTWBctpn .navbar.opened {
    height: auto;
  }
  .cid-sKyTWBctpn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMc2B3TLKs {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/20240430-stansbury-taliakeys-1169-2-1600x1067.webp");
}
.cid-rMc2B3TLKs h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-rMc2B3TLKs span {
  background-image: url("../../../assets/images/background2.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-rMc2B3TLKs .mbr-section-title {
  color: #ffffff;
}
.cid-vgNzFAwNSn {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/grunge-texture-website-2000x2851.webp");
}
.cid-vgNzFAwNSn .mbr-text {
  color: #767676;
}
.cid-vgNzFAwNSn .card-subtitle {
  margin: 0;
}
.cid-vgNzFAwNSn img {
  object-fit: cover;
  height: 100%;
}
.cid-vgNzFAwNSn h4 {
  margin: 0;
}
.cid-vgNzFAwNSn .card-img {
  height: 300px;
}
.cid-vgNzFAwNSn .row {
  justify-content: center;
}
.cid-vgNzFAwNSn .card {
  margin-bottom: 2rem;
}
.cid-vgNzFAwNSn .mbr-text,
.cid-vgNzFAwNSn .link {
  color: #efefef;
  text-align: left;
}
.cid-vgNzFAwNSn h3 .card-title,
.cid-vgNzFAwNSn .card-img {
  text-align: left;
  color: #ffcc00;
}
.cid-vgNzFAwNSn .mbr-section-subtitle,
.cid-vgNzFAwNSn .title-align {
  color: #ffcc00;
}
.cid-vgNzFAwNSn H1 {
  color: #efefef;
}
.cid-vgNzFAwNSn .card-title,
.cid-vgNzFAwNSn .card-img {
  color: #ffcc00;
}
.cid-uKn3FUqJue {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uKn3FUqJue img,
.cid-uKn3FUqJue .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uKn3FUqJue .item:focus,
.cid-uKn3FUqJue span:focus {
  outline: none;
}
.cid-uKn3FUqJue .item {
  cursor: pointer;
  margin-bottom: 1.25rem;
}
.cid-uKn3FUqJue .item-content {
  padding-left: 1.375rem;
  padding-right: 1.375rem;
}
.cid-uKn3FUqJue .row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.cid-uKn3FUqJue .item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-uKn3FUqJue .item-wrapper {
  position: relative;
  background: #f4f4f4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKn3FUqJue .col-lg-5th {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.cid-uKn3FUqJue .row {
  margin-top: 5rem;
}
.cid-uKn3FUqJue .item-content {
  margin-top: 1.375rem;
  margin-bottom: 1.375rem;
}
.cid-uKn3FUqJue .item-title {
  transition: 0.5s;
  color: #2199a1;
}
.cid-uKn3FUqJue .item-title:hover {
  color: #167e85;
}
.cid-uKn3FUqJue .mbr-section-title {
  color: #ffcc00;
}
.cid-uKn3FUqJue .mbr-section-title b:last-child,
.cid-uKn3FUqJue .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-uKn3FUqJue .mbr-section-subtitle {
  color: #efefef;
}
.cid-u3tiWHRxRy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-u3tiWHRxRy img,
.cid-u3tiWHRxRy .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u3tiWHRxRy .item:focus,
.cid-u3tiWHRxRy span:focus {
  outline: none;
}
.cid-u3tiWHRxRy .item {
  cursor: pointer;
  margin-bottom: 1.25rem;
}
.cid-u3tiWHRxRy .item-content {
  padding-left: 1.375rem;
  padding-right: 1.375rem;
}
.cid-u3tiWHRxRy .row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.cid-u3tiWHRxRy .item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-u3tiWHRxRy .item-wrapper {
  position: relative;
  background: #f4f4f4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u3tiWHRxRy .row {
  margin-top: 5rem;
}
.cid-u3tiWHRxRy .item-content {
  margin-top: 1.375rem;
  margin-bottom: 1.375rem;
}
.cid-u3tiWHRxRy .item-title {
  transition: 0.5s;
  color: #2199a1;
}
.cid-u3tiWHRxRy .item-title:hover {
  color: #167e85;
}
.cid-u3tiWHRxRy .mbr-section-title {
  color: #ffcc00;
}
.cid-u3tiWHRxRy .mbr-section-title b:last-child,
.cid-u3tiWHRxRy .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-u3tiWHRxRy .mbr-section-subtitle {
  color: #efefef;
}
.cid-uoLwODQTTQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uoLwODQTTQ img,
.cid-uoLwODQTTQ .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uoLwODQTTQ .item:focus,
.cid-uoLwODQTTQ span:focus {
  outline: none;
}
.cid-uoLwODQTTQ .item {
  cursor: pointer;
  margin-bottom: 1.25rem;
}
.cid-uoLwODQTTQ .item-content {
  padding-left: 1.375rem;
  padding-right: 1.375rem;
}
.cid-uoLwODQTTQ .row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.cid-uoLwODQTTQ .item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-uoLwODQTTQ .item-wrapper {
  position: relative;
  background: #f4f4f4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uoLwODQTTQ .row {
  margin-top: 5rem;
}
.cid-uoLwODQTTQ .item-content {
  margin-top: 1.375rem;
  margin-bottom: 1.375rem;
}
.cid-uoLwODQTTQ .item-title {
  transition: 0.5s;
  color: #2199a1;
}
.cid-uoLwODQTTQ .item-title:hover {
  color: #167e85;
}
.cid-uoLwODQTTQ .mbr-section-title {
  color: #c1c1c1;
}
.cid-uoLwODQTTQ .mbr-section-title b:last-child,
.cid-uoLwODQTTQ .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-uoLwODQTTQ .mbr-section-subtitle {
  color: #efefef;
}
.cid-ukC8xDshGV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-ukC8xDshGV img,
.cid-ukC8xDshGV .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukC8xDshGV .item:focus,
.cid-ukC8xDshGV span:focus {
  outline: none;
}
.cid-ukC8xDshGV .item {
  cursor: pointer;
  margin-bottom: 1.25rem;
}
.cid-ukC8xDshGV .item-content {
  padding-left: 1.375rem;
  padding-right: 1.375rem;
}
.cid-ukC8xDshGV .row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.cid-ukC8xDshGV .item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-ukC8xDshGV .item-wrapper {
  position: relative;
  background: #f4f4f4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ukC8xDshGV .row {
  margin-top: 5rem;
}
.cid-ukC8xDshGV .item-content {
  margin-top: 1.375rem;
  margin-bottom: 1.375rem;
}
.cid-ukC8xDshGV .item-title {
  transition: 0.5s;
  color: #2199a1;
}
.cid-ukC8xDshGV .item-title:hover {
  color: #167e85;
}
.cid-ukC8xDshGV .mbr-section-title {
  color: #c1c1c1;
}
.cid-ukC8xDshGV .mbr-section-title b:last-child,
.cid-ukC8xDshGV .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-ukC8xDshGV .mbr-section-subtitle {
  color: #efefef;
}
.cid-tmE1CAnvra {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-tmE1CAnvra img,
.cid-tmE1CAnvra .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tmE1CAnvra .item:focus,
.cid-tmE1CAnvra span:focus {
  outline: none;
}
.cid-tmE1CAnvra .item {
  cursor: pointer;
  margin-bottom: 1.25rem;
}
.cid-tmE1CAnvra .item-content {
  padding-left: 1.375rem;
  padding-right: 1.375rem;
}
.cid-tmE1CAnvra .row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.cid-tmE1CAnvra .item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-tmE1CAnvra .item-wrapper {
  position: relative;
  background: #f4f4f4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tmE1CAnvra .row {
  margin-top: 5rem;
}
.cid-tmE1CAnvra .item-content {
  margin-top: 1.375rem;
  margin-bottom: 1.375rem;
}
.cid-tmE1CAnvra .item-title {
  transition: 0.5s;
  color: #2199a1;
}
.cid-tmE1CAnvra .item-title:hover {
  color: #167e85;
}
.cid-tmE1CAnvra .mbr-section-title {
  color: #c1c1c1;
}
.cid-tmE1CAnvra .mbr-section-title b:last-child,
.cid-tmE1CAnvra .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-tmE1CAnvra .mbr-section-subtitle {
  color: #efefef;
}
.cid-rUQSvT5ZIV {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUQSvT5ZIV .mbr-text {
  color: #767676;
}
.cid-rUQSvT5ZIV .card-subtitle {
  margin: 0;
}
.cid-rUQSvT5ZIV .link:hover {
  color: #167e85 !important;
}
.cid-rUQSvT5ZIV .card {
  margin-bottom: 2rem;
}
.cid-rUQSvT5ZIV .card:hover .img-overlay {
  opacity: 0.15;
}
.cid-rUQSvT5ZIV .card:hover .card-img:before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-rUQSvT5ZIV .card:hover .card-img:after {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-rUQSvT5ZIV .card-img {
  height: 220px;
}
.cid-rUQSvT5ZIV img {
  object-fit: cover;
  height: 100%;
}
.cid-rUQSvT5ZIV h4 {
  margin: 0;
}
.cid-rUQSvT5ZIV .row {
  justify-content: center;
}
.cid-rUQSvT5ZIV .mbr-text,
.cid-rUQSvT5ZIV .link {
  color: #808080;
}
.cid-rUQSvT5ZIV h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rUQSvT5ZIV h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rUQSvT5ZIV .card-title,
.cid-rUQSvT5ZIV .card-img {
  color: #ffffff;
  text-align: center;
}
.cid-rMc2mU3Lx9 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rMc2mU3Lx9 .mbr-text {
  color: #767676;
}
.cid-rMc2mU3Lx9 .card-subtitle {
  margin: 0;
}
.cid-rMc2mU3Lx9 .link:hover {
  color: #167e85 !important;
}
.cid-rMc2mU3Lx9 .card {
  margin-bottom: 2rem;
}
.cid-rMc2mU3Lx9 .card:hover .img-overlay {
  opacity: 0.15;
}
.cid-rMc2mU3Lx9 .card:hover .card-img:before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-rMc2mU3Lx9 .card:hover .card-img:after {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-rMc2mU3Lx9 .card-img {
  height: 220px;
}
.cid-rMc2mU3Lx9 img {
  object-fit: cover;
  height: 100%;
}
.cid-rMc2mU3Lx9 h4 {
  margin: 0;
}
.cid-rMc2mU3Lx9 .row {
  justify-content: center;
}
.cid-rMc2mU3Lx9 .mbr-text,
.cid-rMc2mU3Lx9 .link {
  color: #808080;
}
.cid-rMc2mU3Lx9 h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rMc2mU3Lx9 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rMc2mU3Lx9 .card-title,
.cid-rMc2mU3Lx9 .card-img {
  color: #ffffff;
  text-align: center;
}
.cid-rMWxLm5asz {
  background-image: url("../../../assets/images/filter1-9-872x1308.webp");
}
.cid-rMWxLm5asz li {
  list-style: none;
}
.cid-rMWxLm5asz .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
  justify-content: space-between;
}
.cid-rMWxLm5asz .col-title {
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-rMWxLm5asz .list-col {
  border-bottom: 1px solid black;
  border-top: 1px solid black;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.cid-rMWxLm5asz .mbr-iconfont {
  font-size: 1.6rem;
  padding-right: 4rem;
  height: 28px;
  display: block;
  cursor: pointer;
  transition: all 0.6s;
  color: #000000 !important;
}
.cid-rMWxLm5asz .mbr-iconfont:hover {
  color: #ff2d55 !important;
}
.cid-rMWxLm5asz .time-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
}
.cid-rMWxLm5asz h4 {
  margin: 0;
}
.cid-rMWxLm5asz ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-rMWxLm5asz .md-pb {
    padding-bottom: 1rem;
  }
  .cid-rMWxLm5asz .mbr-iconfont {
    padding-right: 1rem;
  }
  .cid-rMWxLm5asz .item-wrap {
    flex-direction: column;
  }
  .cid-rMWxLm5asz .time-wrap {
    min-width: 80px;
    margin-top: .4rem;
  }
}
.cid-rMWxLm5asz .item1 {
  color: #ffffff;
}
.cid-rUQH5hD6KY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/talia-script-white-6.webp");
}
@media (min-width: 992px) {
  .cid-rUQH5hD6KY .display-1 {
    letter-spacing: -6px;
  }
}
.cid-rUQH5hD6KY p {
  margin: 0;
}
.cid-rUQH5hD6KY .display-1 {
  line-height: 1;
}
.cid-rUQH5hD6KY .mbr-text,
.cid-rUQH5hD6KY .img-align {
  color: #073b4c;
}
.cid-uFh4KelwJ6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ufo-sticker-1.webp");
}
.cid-uFh4KelwJ6 .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-uFh4KelwJ6 .col-lg-3,
.cid-uFh4KelwJ6 .col-lg-6 {
  padding: 0!important;
}
.cid-uFh4KelwJ6 .btn {
  border-radius: 30px;
}
.cid-uFh4KelwJ6 .card-wrapper {
  min-height: 700px;
  border-right: 1px solid white;
}
.cid-uFh4KelwJ6 .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-uFh4KelwJ6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uFh4KelwJ6 .wrapper {
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uFh4KelwJ6 .image-element:hover .wrapper {
    padding-top: 0;
  }
  .cid-uFh4KelwJ6 .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.9s;
    opacity: 1;
    max-height: 999px;
  }
  .cid-uFh4KelwJ6 .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    background: transparent;
  }
  .cid-uFh4KelwJ6 .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.3s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .cid-uFh4KelwJ6 .card-title,
  .cid-uFh4KelwJ6 .underline,
  .cid-uFh4KelwJ6 .mbr-text,
  .cid-uFh4KelwJ6 .mbr-section-btn,
  .cid-uFh4KelwJ6 .mbr-section-subtitle,
  .cid-uFh4KelwJ6 .mbr-section-title {
    text-align: center !important;
  }
  .cid-uFh4KelwJ6 .card-wrapper {
    align-items: center;
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid white;
  }
}
.cid-uFh4KelwJ6 .mbr-section-title {
  text-align: left;
}
.cid-uFh4KelwJ6 .mbr-section-title,
.cid-uFh4KelwJ6 .underline {
  text-align: center;
}
.cid-uFh4KelwJ6 H4 {
  color: #e1201d;
}
.cid-uFh4KelwJ6 H3 {
  color: #ffcc00;
}
.cid-sjulyhlDeC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
@media (min-width: 992px) {
  .cid-sjulyhlDeC .display-1 {
    letter-spacing: -6px;
  }
}
.cid-sjulyhlDeC p {
  margin: 0;
}
.cid-sjulyhlDeC .display-1 {
  line-height: 1;
}
.cid-sjulyhlDeC H1 {
  color: #ffcc00;
}
.cid-uDcARWYhob {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-uDcARWYhob .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uDcARWYhob .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-uDcARWYhob .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-uDcARWYhob .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-uDcARWYhob .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDcARWYhob .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDcARWYhob .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDcARWYhob .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDcARWYhob .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uDcARWYhob .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-uDcARWYhob .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uDcARWYhob .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uDcARWYhob .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDcARWYhob .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDcARWYhob .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDcARWYhob .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sKyTT2FSUX .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sKyTT2FSUX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sKyTT2FSUX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sKyTT2FSUX .nav-link {
  position: relative;
}
.cid-sKyTT2FSUX .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sKyTT2FSUX .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sKyTT2FSUX .container {
  display: flex;
  margin: auto;
}
.cid-sKyTT2FSUX .navbar.navbar-short .nav-link,
.cid-sKyTT2FSUX .navbar.navbar-short .navbar-caption,
.cid-sKyTT2FSUX .navbar.navbar-short .mbr-iconfont,
.cid-sKyTT2FSUX .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sKyTT2FSUX .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sKyTT2FSUX .navbar-caption {
  padding-right: 3rem;
}
.cid-sKyTT2FSUX .dropdown-menu,
.cid-sKyTT2FSUX .navbar.opened {
  background: #bc133e !important;
}
.cid-sKyTT2FSUX .nav-item:focus,
.cid-sKyTT2FSUX .nav-link:focus {
  outline: none;
}
.cid-sKyTT2FSUX .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-sKyTT2FSUX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sKyTT2FSUX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sKyTT2FSUX .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-sKyTT2FSUX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sKyTT2FSUX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sKyTT2FSUX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-sKyTT2FSUX .navbar.opened {
  transition: all .3s;
}
.cid-sKyTT2FSUX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sKyTT2FSUX .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sKyTT2FSUX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sKyTT2FSUX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sKyTT2FSUX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sKyTT2FSUX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sKyTT2FSUX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sKyTT2FSUX .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-sKyTT2FSUX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sKyTT2FSUX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sKyTT2FSUX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sKyTT2FSUX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sKyTT2FSUX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sKyTT2FSUX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sKyTT2FSUX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sKyTT2FSUX .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: 55%;
  }
  .cid-sKyTT2FSUX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sKyTT2FSUX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sKyTT2FSUX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sKyTT2FSUX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sKyTT2FSUX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sKyTT2FSUX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sKyTT2FSUX .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-sKyTT2FSUX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sKyTT2FSUX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sKyTT2FSUX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sKyTT2FSUX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sKyTT2FSUX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sKyTT2FSUX .dropdown-item.active,
.cid-sKyTT2FSUX .dropdown-item:active {
  background-color: transparent;
}
.cid-sKyTT2FSUX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sKyTT2FSUX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sKyTT2FSUX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sKyTT2FSUX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-sKyTT2FSUX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sKyTT2FSUX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sKyTT2FSUX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sKyTT2FSUX .navbar-buttons {
  text-align: center;
}
.cid-sKyTT2FSUX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sKyTT2FSUX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sKyTT2FSUX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sKyTT2FSUX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyTT2FSUX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyTT2FSUX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sKyTT2FSUX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyTT2FSUX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sKyTT2FSUX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sKyTT2FSUX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyTT2FSUX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sKyTT2FSUX a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKyTT2FSUX .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sKyTT2FSUX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sKyTT2FSUX .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sKyTT2FSUX .navbar {
    height: 77px;
  }
  .cid-sKyTT2FSUX .navbar.opened {
    height: auto;
  }
  .cid-sKyTT2FSUX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vgOjofIVhr {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-vgOjofIVhr h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-vgOjofIVhr span {
  background-image: url("../../../assets/images/background2.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-vgOjofIVhr .mbr-section-title {
  color: #ffffff;
}
.cid-uPDCuCL9Ln {
  padding-top: 225px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uPDCuCL9Ln h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-uPDCuCL9Ln h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-uPDCuCL9Ln .box {
  background-image: url("../../../assets/images/glowin-official-yt-tmbnl-2000x1125.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPDCuCL9Ln .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uPDCuCL9Ln .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-uPDCuCL9Ln .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uPDCuCL9Ln .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uPDCuCL9Ln .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uPDCuCL9Ln .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uPDCuCL9Ln .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uPDCuCL9Ln .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uPDCuCL9Ln a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uPDCuCL9Ln a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uPDCuCL9Ln .box {
    height: 250px;
  }
}
.cid-uKmXlycQfY {
  padding-top: 225px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uKmXlycQfY h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-uKmXlycQfY h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-uKmXlycQfY .box {
  background-image: url("../../../assets/images/matchstick-tmbnl-yt-2000x1125.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmXlycQfY .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uKmXlycQfY .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-uKmXlycQfY .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uKmXlycQfY .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uKmXlycQfY .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uKmXlycQfY .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKmXlycQfY .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKmXlycQfY .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKmXlycQfY a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKmXlycQfY a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uKmXlycQfY .box {
    height: 250px;
  }
}
.cid-uKmZmP1P5z {
  padding-top: 135px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-uKmZmP1P5z h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-uKmZmP1P5z h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-uKmZmP1P5z .box {
  background-image: url("../../../assets/images/talia-burn-youtube-thumbnail-v020-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmZmP1P5z .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uKmZmP1P5z .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-uKmZmP1P5z .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uKmZmP1P5z .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uKmZmP1P5z .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uKmZmP1P5z .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKmZmP1P5z .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKmZmP1P5z .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKmZmP1P5z a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKmZmP1P5z a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uKmZmP1P5z .box {
    height: 250px;
  }
}
.cid-uAFmvLl1hW {
  padding-top: 195px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-uAFmvLl1hW h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-uAFmvLl1hW h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-uAFmvLl1hW .box {
  background-image: url("../../../assets/images/nu2c-yt-thbnl-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAFmvLl1hW .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uAFmvLl1hW .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-uAFmvLl1hW .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uAFmvLl1hW .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uAFmvLl1hW .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uAFmvLl1hW .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uAFmvLl1hW .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uAFmvLl1hW .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uAFmvLl1hW a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uAFmvLl1hW a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uAFmvLl1hW .box {
    height: 250px;
  }
}
.cid-uiaml0VI8s {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-uiaml0VI8s h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-uiaml0VI8s h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-uiaml0VI8s .box {
  background-image: url("../../../assets/images/i-put-a-spell-on-you-yt-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uiaml0VI8s .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uiaml0VI8s .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-uiaml0VI8s .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uiaml0VI8s .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uiaml0VI8s .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uiaml0VI8s .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uiaml0VI8s .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uiaml0VI8s .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uiaml0VI8s a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uiaml0VI8s a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uiaml0VI8s .box {
    height: 250px;
  }
}
.cid-uag0UBbzGT {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-uag0UBbzGT h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-uag0UBbzGT h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-uag0UBbzGT .box {
  background-image: url("../../../assets/images/sweet-dreams-yt-thumbnail.stroke3-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uag0UBbzGT .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uag0UBbzGT .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-uag0UBbzGT .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uag0UBbzGT .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uag0UBbzGT .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uag0UBbzGT .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uag0UBbzGT .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uag0UBbzGT .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uag0UBbzGT a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uag0UBbzGT a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uag0UBbzGT .box {
    height: 250px;
  }
}
.cid-t7xAsEC6mN {
  padding-top: 225px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-t7xAsEC6mN h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-t7xAsEC6mN h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-t7xAsEC6mN .box {
  background-image: url("../../../assets/images/were-here-laurels-yt-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t7xAsEC6mN .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-t7xAsEC6mN .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-t7xAsEC6mN .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-t7xAsEC6mN .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-t7xAsEC6mN .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-t7xAsEC6mN .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t7xAsEC6mN .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t7xAsEC6mN .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t7xAsEC6mN a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-t7xAsEC6mN a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-t7xAsEC6mN .box {
    height: 250px;
  }
}
.cid-sZK7dNTlUt {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-sZK7dNTlUt h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sZK7dNTlUt h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sZK7dNTlUt .box {
  background-image: url("../../../assets/images/come-back-down-thmbnl-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZK7dNTlUt .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sZK7dNTlUt .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-sZK7dNTlUt .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sZK7dNTlUt .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sZK7dNTlUt .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sZK7dNTlUt .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sZK7dNTlUt .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sZK7dNTlUt .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sZK7dNTlUt a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sZK7dNTlUt a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sZK7dNTlUt .box {
    height: 250px;
  }
}
.cid-sZK6tChsYd {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-sZK6tChsYd h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sZK6tChsYd h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sZK6tChsYd .box {
  background-image: url("../../../assets/images/talia-keys-head-up-thmbnail-2-1-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZK6tChsYd .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sZK6tChsYd .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-sZK6tChsYd .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sZK6tChsYd .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sZK6tChsYd .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sZK6tChsYd .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sZK6tChsYd .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sZK6tChsYd .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sZK6tChsYd a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sZK6tChsYd a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sZK6tChsYd .box {
    height: 250px;
  }
}
.cid-sZK5yOjWgU {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-sZK5yOjWgU h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sZK5yOjWgU h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sZK5yOjWgU .box {
  background-image: url("../../../assets/images/born-in-the-light-yt-thbmn-2-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZK5yOjWgU .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sZK5yOjWgU .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-sZK5yOjWgU .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sZK5yOjWgU .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sZK5yOjWgU .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sZK5yOjWgU .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sZK5yOjWgU .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sZK5yOjWgU .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sZK5yOjWgU a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sZK5yOjWgU a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sZK5yOjWgU .box {
    height: 250px;
  }
}
.cid-sMTksVOUji {
  padding-top: 135px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-sMTksVOUji h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sMTksVOUji h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sMTksVOUji .box {
  background-image: url("../../../assets/images/aintgottime-yt-thmb-btrflysjpg-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMTksVOUji .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sMTksVOUji .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-sMTksVOUji .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sMTksVOUji .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sMTksVOUji .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sMTksVOUji .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sMTksVOUji .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sMTksVOUji .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sMTksVOUji a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sMTksVOUji a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sMTksVOUji .box {
    height: 250px;
  }
}
.cid-sLGC0xklXn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sLGC0xklXn .mbr-text {
    text-align: center;
  }
}
.cid-sLGC0xklXn .container-fluid {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-sLGC0xklXn .media-content {
    max-width: 650px;
    padding: 5rem 2rem;
    margin: auto;
  }
}
.cid-sLGC0xklXn .media-content {
  padding: 5rem 2rem;
}
.cid-sLGC0xklXn img {
  height: 100%;
  object-fit: cover;
}
.cid-sLGC0xklXn .mbr-figure {
  height: 100%;
}
.cid-sLGC0xklXn .col-lg-5,
.cid-sLGC0xklXn .col-lg-7 {
  padding: 0;
}
.cid-sLGC0xklXn .row {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sLGC0xklXn .media-content {
    padding: 3rem 1rem;
  }
}
.cid-szpFYAcFlM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-szpFYAcFlM h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-szpFYAcFlM h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-szpFYAcFlM .box {
  background-image: url("../../../assets/images/guns-out-black-moment25-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szpFYAcFlM .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-szpFYAcFlM .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-szpFYAcFlM .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-szpFYAcFlM .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-szpFYAcFlM .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-szpFYAcFlM .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-szpFYAcFlM .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-szpFYAcFlM .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-szpFYAcFlM a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-szpFYAcFlM a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-szpFYAcFlM .box {
    height: 250px;
  }
}
.cid-sPDNS9F3gr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sPDNS9F3gr .mbr-text {
    text-align: center;
  }
}
.cid-sPDNS9F3gr .container-fluid {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-sPDNS9F3gr .media-content {
    max-width: 650px;
    padding: 5rem 2rem;
    margin: auto;
  }
}
.cid-sPDNS9F3gr .media-content {
  padding: 5rem 2rem;
}
.cid-sPDNS9F3gr img {
  height: 100%;
  object-fit: cover;
}
.cid-sPDNS9F3gr .mbr-figure {
  height: 100%;
}
.cid-sPDNS9F3gr .col-lg-5,
.cid-sPDNS9F3gr .col-lg-7 {
  padding: 0;
}
.cid-sPDNS9F3gr .row {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sPDNS9F3gr .media-content {
    padding: 3rem 1rem;
  }
}
.cid-rUjcBxNV4e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUjcBxNV4e h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rUjcBxNV4e h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rUjcBxNV4e .box {
  background-image: url("../../../assets/images/11-earth-thumbnail-1920x1080.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rUjcBxNV4e .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-rUjcBxNV4e .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-rUjcBxNV4e .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-rUjcBxNV4e .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-rUjcBxNV4e .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rUjcBxNV4e .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rUjcBxNV4e .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rUjcBxNV4e .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rUjcBxNV4e a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rUjcBxNV4e a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-rUjcBxNV4e .box {
    height: 250px;
  }
}
.cid-rMgumDcJdX {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-rMgumDcJdX h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rMgumDcJdX h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rMgumDcJdX .box {
  background-image: url("../../../assets/images/dreamscapes-closedmouth.1.2.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMgumDcJdX .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-rMgumDcJdX .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-rMgumDcJdX .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-rMgumDcJdX .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-rMgumDcJdX .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rMgumDcJdX .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rMgumDcJdX .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rMgumDcJdX .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rMgumDcJdX a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rMgumDcJdX a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-rMgumDcJdX .box {
    height: 250px;
  }
}
.cid-sKylwLnSdr {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-sKylwLnSdr h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sKylwLnSdr h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sKylwLnSdr .box {
  background-image: url("../../../assets/images/love-is-1.2.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sKylwLnSdr .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sKylwLnSdr .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-sKylwLnSdr .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sKylwLnSdr .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sKylwLnSdr .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sKylwLnSdr .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sKylwLnSdr .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sKylwLnSdr .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sKylwLnSdr a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sKylwLnSdr a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sKylwLnSdr .box {
    height: 250px;
  }
}
.cid-sKyj3niwWA {
  padding-top: 75px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/talia-script-white-8.webp");
}
@media (min-width: 992px) {
  .cid-sKyj3niwWA .display-1 {
    letter-spacing: -6px;
  }
}
.cid-sKyj3niwWA p {
  margin: 0;
}
.cid-sKyj3niwWA .display-1 {
  line-height: 1;
}
.cid-sKyj3niwWA .mbr-text,
.cid-sKyj3niwWA .img-align {
  color: #073b4c;
}
.cid-rMgu76BpWu {
  padding-top: 150px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rMgu76BpWu h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rMgu76BpWu h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rMgu76BpWu .box {
  background-image: url("../../../assets/images/taliakeyslove-depot-2-yt-960x598.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMgu76BpWu .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-rMgu76BpWu .icon-wrap:hover {
  transform: scale(1.04);
}
.cid-rMgu76BpWu .icon-wrap span {
  padding-left: 8px;
}
.cid-rMgu76BpWu .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.6;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-rMgu76BpWu .mbr-media span:hover {
  opacity: 1;
  color: #ff2d55 !important;
}
.cid-rMgu76BpWu .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rMgu76BpWu .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rMgu76BpWu .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rMgu76BpWu .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rMgu76BpWu a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rMgu76BpWu a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-rMgu76BpWu .box {
    height: 250px;
  }
}
.cid-rMgu76BpWu H1 {
  color: #ffffff;
}
.cid-rMgu76BpWu .mbr-section-subtitle,
.cid-rMgu76BpWu .title-align {
  color: #ffffff;
}
.cid-rUo2a6sN6q {
  padding-top: 150px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rUo2a6sN6q h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rUo2a6sN6q h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rUo2a6sN6q .box {
  background-image: url("../../../assets/images/come-back-solo-thumbnail.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rUo2a6sN6q .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-rUo2a6sN6q .icon-wrap:hover {
  transform: scale(1.04);
}
.cid-rUo2a6sN6q .icon-wrap span {
  padding-left: 8px;
}
.cid-rUo2a6sN6q .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.6;
  transition: all 0.25s;
  color: #efefef !important;
}
.cid-rUo2a6sN6q .mbr-media span:hover {
  opacity: 1;
  color: #ff2d55 !important;
}
.cid-rUo2a6sN6q .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rUo2a6sN6q .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rUo2a6sN6q .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rUo2a6sN6q .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rUo2a6sN6q a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rUo2a6sN6q a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-rUo2a6sN6q .box {
    height: 250px;
  }
}
.cid-rUo2a6sN6q .mbr-section-subtitle,
.cid-rUo2a6sN6q .title-align {
  color: #ffffff;
}
.cid-rUo2a6sN6q H1 {
  color: #ffffff;
}
.cid-uFh4xSQOWP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ufo-sticker-1.webp");
}
.cid-uFh4xSQOWP .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-uFh4xSQOWP .col-lg-3,
.cid-uFh4xSQOWP .col-lg-6 {
  padding: 0!important;
}
.cid-uFh4xSQOWP .btn {
  border-radius: 30px;
}
.cid-uFh4xSQOWP .card-wrapper {
  min-height: 700px;
  border-right: 1px solid white;
}
.cid-uFh4xSQOWP .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-uFh4xSQOWP .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uFh4xSQOWP .wrapper {
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uFh4xSQOWP .image-element:hover .wrapper {
    padding-top: 0;
  }
  .cid-uFh4xSQOWP .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.9s;
    opacity: 1;
    max-height: 999px;
  }
  .cid-uFh4xSQOWP .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    background: transparent;
  }
  .cid-uFh4xSQOWP .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.3s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .cid-uFh4xSQOWP .card-title,
  .cid-uFh4xSQOWP .underline,
  .cid-uFh4xSQOWP .mbr-text,
  .cid-uFh4xSQOWP .mbr-section-btn,
  .cid-uFh4xSQOWP .mbr-section-subtitle,
  .cid-uFh4xSQOWP .mbr-section-title {
    text-align: center !important;
  }
  .cid-uFh4xSQOWP .card-wrapper {
    align-items: center;
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid white;
  }
}
.cid-uFh4xSQOWP .mbr-section-title {
  text-align: left;
}
.cid-uFh4xSQOWP .mbr-section-title,
.cid-uFh4xSQOWP .underline {
  text-align: center;
}
.cid-uFh4xSQOWP H4 {
  color: #e1201d;
}
.cid-uFh4xSQOWP H3 {
  color: #ffcc00;
}
.cid-rMLNaNwAzx {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
@media (min-width: 992px) {
  .cid-rMLNaNwAzx .display-1 {
    letter-spacing: -6px;
  }
}
.cid-rMLNaNwAzx p {
  margin: 0;
}
.cid-rMLNaNwAzx .display-1 {
  line-height: 1;
}
.cid-rMLNaNwAzx H1 {
  color: #ffcc00;
}
.cid-uDcARWYhob {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-uDcARWYhob .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uDcARWYhob .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-uDcARWYhob .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-uDcARWYhob .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-uDcARWYhob .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDcARWYhob .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDcARWYhob .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDcARWYhob .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDcARWYhob .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uDcARWYhob .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-uDcARWYhob .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uDcARWYhob .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uDcARWYhob .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDcARWYhob .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDcARWYhob .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDcARWYhob .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sKyTJGTDyq .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sKyTJGTDyq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sKyTJGTDyq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sKyTJGTDyq .nav-link {
  position: relative;
}
.cid-sKyTJGTDyq .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sKyTJGTDyq .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sKyTJGTDyq .container {
  display: flex;
  margin: auto;
}
.cid-sKyTJGTDyq .navbar.navbar-short .nav-link,
.cid-sKyTJGTDyq .navbar.navbar-short .navbar-caption,
.cid-sKyTJGTDyq .navbar.navbar-short .mbr-iconfont,
.cid-sKyTJGTDyq .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sKyTJGTDyq .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sKyTJGTDyq .navbar-caption {
  padding-right: 3rem;
}
.cid-sKyTJGTDyq .dropdown-menu,
.cid-sKyTJGTDyq .navbar.opened {
  background: #bc133e !important;
}
.cid-sKyTJGTDyq .nav-item:focus,
.cid-sKyTJGTDyq .nav-link:focus {
  outline: none;
}
.cid-sKyTJGTDyq .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-sKyTJGTDyq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sKyTJGTDyq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sKyTJGTDyq .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-sKyTJGTDyq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sKyTJGTDyq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sKyTJGTDyq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-sKyTJGTDyq .navbar.opened {
  transition: all .3s;
}
.cid-sKyTJGTDyq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sKyTJGTDyq .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sKyTJGTDyq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sKyTJGTDyq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sKyTJGTDyq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sKyTJGTDyq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sKyTJGTDyq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sKyTJGTDyq .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-sKyTJGTDyq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sKyTJGTDyq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sKyTJGTDyq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sKyTJGTDyq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sKyTJGTDyq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sKyTJGTDyq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sKyTJGTDyq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sKyTJGTDyq .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: 55%;
  }
  .cid-sKyTJGTDyq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sKyTJGTDyq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sKyTJGTDyq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sKyTJGTDyq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sKyTJGTDyq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sKyTJGTDyq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sKyTJGTDyq .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-sKyTJGTDyq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sKyTJGTDyq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sKyTJGTDyq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sKyTJGTDyq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sKyTJGTDyq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sKyTJGTDyq .dropdown-item.active,
.cid-sKyTJGTDyq .dropdown-item:active {
  background-color: transparent;
}
.cid-sKyTJGTDyq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sKyTJGTDyq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sKyTJGTDyq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sKyTJGTDyq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-sKyTJGTDyq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sKyTJGTDyq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sKyTJGTDyq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sKyTJGTDyq .navbar-buttons {
  text-align: center;
}
.cid-sKyTJGTDyq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sKyTJGTDyq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sKyTJGTDyq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sKyTJGTDyq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyTJGTDyq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyTJGTDyq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sKyTJGTDyq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyTJGTDyq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sKyTJGTDyq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sKyTJGTDyq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyTJGTDyq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sKyTJGTDyq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKyTJGTDyq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sKyTJGTDyq .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sKyTJGTDyq .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sKyTJGTDyq .navbar {
    height: 77px;
  }
  .cid-sKyTJGTDyq .navbar.opened {
    height: auto;
  }
  .cid-sKyTJGTDyq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tt9kooMS7X {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/20240430-stansbury-taliakeys-1162-2-1600x1067.webp");
}
.cid-tt9kooMS7X h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-tt9kooMS7X span {
  background-image: url("../../../assets/images/background2.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-tt9kooMS7X .mbr-section-title {
  color: #ffffff;
}
.cid-verIVL6D4m {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rMLr1hJMBY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rMLr1hJMBY .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-uFh4eyv9X3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ufo-sticker-1.webp");
}
.cid-uFh4eyv9X3 .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-uFh4eyv9X3 .col-lg-3,
.cid-uFh4eyv9X3 .col-lg-6 {
  padding: 0!important;
}
.cid-uFh4eyv9X3 .btn {
  border-radius: 30px;
}
.cid-uFh4eyv9X3 .card-wrapper {
  min-height: 700px;
  border-right: 1px solid white;
}
.cid-uFh4eyv9X3 .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-uFh4eyv9X3 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uFh4eyv9X3 .wrapper {
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uFh4eyv9X3 .image-element:hover .wrapper {
    padding-top: 0;
  }
  .cid-uFh4eyv9X3 .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.9s;
    opacity: 1;
    max-height: 999px;
  }
  .cid-uFh4eyv9X3 .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    background: transparent;
  }
  .cid-uFh4eyv9X3 .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.3s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .cid-uFh4eyv9X3 .card-title,
  .cid-uFh4eyv9X3 .underline,
  .cid-uFh4eyv9X3 .mbr-text,
  .cid-uFh4eyv9X3 .mbr-section-btn,
  .cid-uFh4eyv9X3 .mbr-section-subtitle,
  .cid-uFh4eyv9X3 .mbr-section-title {
    text-align: center !important;
  }
  .cid-uFh4eyv9X3 .card-wrapper {
    align-items: center;
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid white;
  }
}
.cid-uFh4eyv9X3 .mbr-section-title {
  text-align: left;
}
.cid-uFh4eyv9X3 .mbr-section-title,
.cid-uFh4eyv9X3 .underline {
  text-align: center;
}
.cid-uFh4eyv9X3 H4 {
  color: #e1201d;
}
.cid-uFh4eyv9X3 H3 {
  color: #ffcc00;
}
.cid-sADP47dwxj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
@media (min-width: 992px) {
  .cid-sADP47dwxj .display-1 {
    letter-spacing: -6px;
  }
}
.cid-sADP47dwxj p {
  margin: 0;
}
.cid-sADP47dwxj .display-1 {
  line-height: 1;
}
.cid-sADP47dwxj H1 {
  color: #ffcc00;
}
.cid-uDcARWYhob {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-uDcARWYhob .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uDcARWYhob .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-uDcARWYhob .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-uDcARWYhob .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-uDcARWYhob .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDcARWYhob .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDcARWYhob .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDcARWYhob .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDcARWYhob .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uDcARWYhob .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-uDcARWYhob .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uDcARWYhob .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uDcARWYhob .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDcARWYhob .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDcARWYhob .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDcARWYhob .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sKyU0exUfs .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sKyU0exUfs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sKyU0exUfs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sKyU0exUfs .nav-link {
  position: relative;
}
.cid-sKyU0exUfs .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sKyU0exUfs .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sKyU0exUfs .container {
  display: flex;
  margin: auto;
}
.cid-sKyU0exUfs .navbar.navbar-short .nav-link,
.cid-sKyU0exUfs .navbar.navbar-short .navbar-caption,
.cid-sKyU0exUfs .navbar.navbar-short .mbr-iconfont,
.cid-sKyU0exUfs .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sKyU0exUfs .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sKyU0exUfs .navbar-caption {
  padding-right: 3rem;
}
.cid-sKyU0exUfs .dropdown-menu,
.cid-sKyU0exUfs .navbar.opened {
  background: #bc133e !important;
}
.cid-sKyU0exUfs .nav-item:focus,
.cid-sKyU0exUfs .nav-link:focus {
  outline: none;
}
.cid-sKyU0exUfs .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-sKyU0exUfs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sKyU0exUfs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sKyU0exUfs .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-sKyU0exUfs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sKyU0exUfs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sKyU0exUfs .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-sKyU0exUfs .navbar.opened {
  transition: all .3s;
}
.cid-sKyU0exUfs .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sKyU0exUfs .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sKyU0exUfs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sKyU0exUfs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sKyU0exUfs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sKyU0exUfs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sKyU0exUfs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sKyU0exUfs .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-sKyU0exUfs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sKyU0exUfs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sKyU0exUfs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sKyU0exUfs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sKyU0exUfs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sKyU0exUfs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sKyU0exUfs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sKyU0exUfs .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: 55%;
  }
  .cid-sKyU0exUfs .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sKyU0exUfs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sKyU0exUfs .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sKyU0exUfs .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sKyU0exUfs .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sKyU0exUfs .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sKyU0exUfs .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-sKyU0exUfs .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sKyU0exUfs .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sKyU0exUfs .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sKyU0exUfs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sKyU0exUfs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sKyU0exUfs .dropdown-item.active,
.cid-sKyU0exUfs .dropdown-item:active {
  background-color: transparent;
}
.cid-sKyU0exUfs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sKyU0exUfs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sKyU0exUfs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sKyU0exUfs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-sKyU0exUfs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sKyU0exUfs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sKyU0exUfs ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sKyU0exUfs .navbar-buttons {
  text-align: center;
}
.cid-sKyU0exUfs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sKyU0exUfs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sKyU0exUfs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sKyU0exUfs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyU0exUfs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyU0exUfs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sKyU0exUfs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyU0exUfs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sKyU0exUfs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sKyU0exUfs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyU0exUfs .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sKyU0exUfs a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKyU0exUfs .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sKyU0exUfs .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sKyU0exUfs .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sKyU0exUfs .navbar {
    height: 77px;
  }
  .cid-sKyU0exUfs .navbar.opened {
    height: auto;
  }
  .cid-sKyU0exUfs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rOxurZKFIP {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/taliakeys-equ22-centr-credit-png-2-1920x1080.webp");
}
.cid-rOxurZKFIP .nav-tabs .nav-item.open .nav-link:focus,
.cid-rOxurZKFIP .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-rOxurZKFIP .container {
  max-width: 1600px;
}
.cid-rOxurZKFIP .icon-wrap .mbr-iconfont {
  font-size: 1rem;
  padding-right: 0.5rem;
  display: block;
  cursor: pointer;
  transition: all 0.6s;
  color: currentColor;
}
.cid-rOxurZKFIP .icon-big {
  font-size: 2rem;
  padding-top: 2rem;
  width: 100%;
  display: inline-block;
  transition: all 0.3s;
}
.cid-rOxurZKFIP .icon-big:hover {
  color: #167e85 !important;
}
.cid-rOxurZKFIP .content-col {
  margin: auto 0;
}
.cid-rOxurZKFIP img {
  width: 90%;
  margin: auto;
}
.cid-rOxurZKFIP h6 {
  margin: 0;
}
.cid-rOxurZKFIP .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border: none;
  padding-top: 8rem;
  padding-bottom: 8rem;
  justify-content: space-around;
  flex-direction: column;
  min-width: 150px;
  height: 100%;
  border-left: 1px solid gray;
}
.cid-rOxurZKFIP .icon-wrap,
.cid-rOxurZKFIP .date-wrap {
  display: flex;
  align-items: center;
  width: fit-content;
}
.cid-rOxurZKFIP .align-wrap {
  display: inline-block;
}
.cid-rOxurZKFIP .tabs-col {
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
}
.cid-rOxurZKFIP .tab-content {
  width: 100%;
  padding-right: 3rem;
  margin: auto 0;
}
.cid-rOxurZKFIP .nav-tabs .nav-link {
  color: #ffffff;
  font-style: normal;
  padding: 1rem 1.5rem;
  background: transparent;
  font-weight: 600;
  border: none;
  border-radius: 0;
  position: relative;
}
.cid-rOxurZKFIP .nav-tabs .nav-link:before {
  position: absolute;
  content: '';
  top: 50%;
  bottom: 50%;
  left: -5px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: transparent;
  transition: all 0.3s;
  z-index: 9;
}
.cid-rOxurZKFIP .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-rOxurZKFIP .nav-tabs .nav-link.active {
  font-weight: 600;
  font-style: normal;
}
.cid-rOxurZKFIP .nav-tabs .nav-link.active:before {
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-rOxurZKFIP img {
    margin-bottom: 2rem;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-rOxurZKFIP .nav-tabs {
    flex-direction: row;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-left: 0px;
  }
  .cid-rOxurZKFIP .tabs-col {
    flex-direction: column;
  }
  .cid-rOxurZKFIP .mbr-text,
  .cid-rOxurZKFIP .nav-link {
    text-align: center;
  }
  .cid-rOxurZKFIP .nav-tabs .nav-link {
    padding: 0.3rem;
    border: 0;
  }
  .cid-rOxurZKFIP .nav-tabs .nav-link:after {
    content: none;
  }
  .cid-rOxurZKFIP .nav-tabs .nav-link:before {
    content: none;
  }
  .cid-rOxurZKFIP .nav-item {
    min-width: 100px;
  }
  .cid-rOxurZKFIP .tab-content {
    border-top: 1px solid gray;
    padding: 0;
    padding-top: 1rem;
    padding-bottom: 4rem;
  }
}
.cid-tiA42AFq9R {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tiA42AFq9R .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.5;
}
.cid-tiA42AFq9R .container {
  max-width: 1400px;
  padding: 0 3rem;
}
.cid-tiA42AFq9R textarea {
  min-height: 150px;
}
.cid-tiA42AFq9R .row2 {
  justify-content: space-between;
  border: 2px solid #000000 !important;
  padding: 3rem;
}
.cid-tiA42AFq9R h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-tiA42AFq9R h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tiA42AFq9R form .btn {
  border-radius: 30px;
  margin: 0.18rem;
}
.cid-tiA42AFq9R .form-control,
.cid-tiA42AFq9R .field-input {
  padding: 1rem;
  background-color: transparent;
  border: 2px solid #000000 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tiA42AFq9R .form-control::-webkit-input-placeholder,
.cid-tiA42AFq9R .field-input::-webkit-input-placeholder,
.cid-tiA42AFq9R .form-control::-webkit-input-placeholder,
.cid-tiA42AFq9R .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tiA42AFq9R .form-control:-moz-placeholder,
.cid-tiA42AFq9R .field-input:-moz-placeholder,
.cid-tiA42AFq9R .form-control:-moz-placeholder,
.cid-tiA42AFq9R .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tiA42AFq9R .form-control:hover,
.cid-tiA42AFq9R .field-input:hover,
.cid-tiA42AFq9R .form-control:focus,
.cid-tiA42AFq9R .field-input:focus {
  background-color: transparent;
  border-color: #000000 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tiA42AFq9R .form-control:hover::-webkit-input-placeholder,
.cid-tiA42AFq9R .field-input:hover::-webkit-input-placeholder,
.cid-tiA42AFq9R .form-control:focus::-webkit-input-placeholder,
.cid-tiA42AFq9R .field-input:focus::-webkit-input-placeholder,
.cid-tiA42AFq9R .form-control:hover::-webkit-input-placeholder,
.cid-tiA42AFq9R .field-input:hover::-webkit-input-placeholder,
.cid-tiA42AFq9R .form-control:focus::-webkit-input-placeholder,
.cid-tiA42AFq9R .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-tiA42AFq9R .form-control:hover:-moz-placeholder,
.cid-tiA42AFq9R .field-input:hover:-moz-placeholder,
.cid-tiA42AFq9R .form-control:focus:-moz-placeholder,
.cid-tiA42AFq9R .field-input:focus:-moz-placeholder,
.cid-tiA42AFq9R .form-control:hover:-moz-placeholder,
.cid-tiA42AFq9R .field-input:hover:-moz-placeholder,
.cid-tiA42AFq9R .form-control:focus:-moz-placeholder,
.cid-tiA42AFq9R .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-tiA42AFq9R .jq-number__spin:hover,
.cid-tiA42AFq9R .jq-number__spin:focus {
  background-color: transparent;
  border-color: #000000 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tiA42AFq9R .jq-number__spin {
  background-color: transparent;
  border-color: #000000 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tiA42AFq9R input::-webkit-clear-button {
  display: none;
}
.cid-tiA42AFq9R input::-webkit-inner-spin-button {
  display: none;
}
.cid-tiA42AFq9R input::-webkit-outer-spin-button {
  display: none;
}
.cid-tiA42AFq9R input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 767px) {
  .cid-tiA42AFq9R .container {
    padding: 0 2rem;
  }
  .cid-tiA42AFq9R .row2 {
    padding: 1rem 0;
  }
}
.cid-tiA42AFq9R H2 {
  color: #000000;
}
.cid-tiA42AFq9R .mbr-text,
.cid-tiA42AFq9R .mbr-section-btn {
  color: #000000;
}
.cid-rUiW4mFtah {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-rUiW4mFtah .mbr-text {
  color: #767676;
}
.cid-rUiW4mFtah .card-subtitle {
  margin: 0;
}
.cid-rUiW4mFtah .link:hover {
  color: #167e85 !important;
}
.cid-rUiW4mFtah .card {
  margin-bottom: 2rem;
}
.cid-rUiW4mFtah .card:hover .img-overlay {
  opacity: 0.15;
}
.cid-rUiW4mFtah .card:hover .card-img:before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-rUiW4mFtah .card:hover .card-img:after {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-rUiW4mFtah .card-img {
  height: 220px;
}
.cid-rUiW4mFtah img {
  object-fit: cover;
  height: 100%;
}
.cid-rUiW4mFtah h4 {
  margin: 0;
}
.cid-rUiW4mFtah .row {
  justify-content: center;
}
.cid-rUiW4mFtah .mbr-text,
.cid-rUiW4mFtah .link {
  color: #808080;
}
.cid-rUiW4mFtah h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rUiW4mFtah h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rUiW4mFtah .card-title,
.cid-rUiW4mFtah .card-img {
  color: #ffffff;
  text-align: center;
}
.cid-rUiW4mFtah H1 {
  color: #ffffff;
}
.cid-rUiW4mFtah .mbr-section-subtitle,
.cid-rUiW4mFtah .title-align {
  color: #ffffff;
}
.cid-rUiSut3BtB {
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUiSut3BtB .mbr-text {
  color: #767676;
}
.cid-rUiSut3BtB .card-subtitle {
  margin: 0;
}
.cid-rUiSut3BtB .link:hover {
  color: #167e85 !important;
}
.cid-rUiSut3BtB .card {
  margin-bottom: 2rem;
}
.cid-rUiSut3BtB .card:hover .img-overlay {
  opacity: 0.15;
}
.cid-rUiSut3BtB .card:hover .card-img:before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-rUiSut3BtB .card:hover .card-img:after {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-rUiSut3BtB .card-img {
  height: 220px;
}
.cid-rUiSut3BtB img {
  object-fit: cover;
  height: 100%;
}
.cid-rUiSut3BtB h4 {
  margin: 0;
}
.cid-rUiSut3BtB .row {
  justify-content: center;
}
.cid-rUiSut3BtB .mbr-text,
.cid-rUiSut3BtB .link {
  color: #808080;
}
.cid-rUiSut3BtB h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rUiSut3BtB h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rUiSut3BtB .card-title,
.cid-rUiSut3BtB .card-img {
  color: #ffffff;
  text-align: center;
}
.cid-rUiSut3BtB H1 {
  color: #ffffff;
}
.cid-rUiSut3BtB .mbr-section-subtitle,
.cid-rUiSut3BtB .title-align {
  color: #ffffff;
}
.cid-rUiU3bUYk8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUiU3bUYk8 .mbr-text {
  color: #767676;
}
.cid-rUiU3bUYk8 .card-subtitle {
  margin: 0;
}
.cid-rUiU3bUYk8 .link:hover {
  color: #167e85 !important;
}
.cid-rUiU3bUYk8 .card {
  margin-bottom: 2rem;
}
.cid-rUiU3bUYk8 .card:hover .img-overlay {
  opacity: 0.15;
}
.cid-rUiU3bUYk8 .card:hover .card-img:before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-rUiU3bUYk8 .card:hover .card-img:after {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-rUiU3bUYk8 .card-img {
  height: 220px;
}
.cid-rUiU3bUYk8 img {
  object-fit: cover;
  height: 100%;
}
.cid-rUiU3bUYk8 h4 {
  margin: 0;
}
.cid-rUiU3bUYk8 .row {
  justify-content: center;
}
.cid-rUiU3bUYk8 .mbr-text,
.cid-rUiU3bUYk8 .link {
  color: #808080;
}
.cid-rUiU3bUYk8 h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rUiU3bUYk8 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rUiU3bUYk8 .card-title,
.cid-rUiU3bUYk8 .card-img {
  color: #ffffff;
  text-align: center;
}
.cid-rUiU3bUYk8 H1 {
  color: #ffffff;
}
.cid-rUiU3bUYk8 .mbr-section-subtitle,
.cid-rUiU3bUYk8 .title-align {
  color: #ffffff;
}
.cid-rUj2Betsmm {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-rUj2Betsmm h3 {
  line-height: 1;
  letter-spacing: -3px;
  position: relative;
}
.cid-rUj2Betsmm h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rUj2Betsmm h3:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -120px;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rUj2Betsmm .mbr-iconfont {
  margin-top: 150px;
  display: block;
  font-size: 3rem;
  color: #000000;
}
.cid-rUj2Betsmm H3 {
  color: #ffcc00;
}
.cid-vgNF9jA0dp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgNF9jA0dp H2 {
  color: #ffffff;
}
.cid-rUj3xhSOpt {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-rUj3xhSOpt .mbr-text,
.cid-rUj3xhSOpt .img-align {
  color: #ffcc00;
}
.cid-rUj3xhSOpt H2 {
  color: #efefef;
}
.cid-uDcARWYhob {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-uDcARWYhob .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uDcARWYhob .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-uDcARWYhob .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-uDcARWYhob .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-uDcARWYhob .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDcARWYhob .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDcARWYhob .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDcARWYhob .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDcARWYhob .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uDcARWYhob .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-uDcARWYhob .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uDcARWYhob .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uDcARWYhob .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDcARWYhob .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDcARWYhob .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDcARWYhob .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sKyU3HvTPt .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sKyU3HvTPt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sKyU3HvTPt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sKyU3HvTPt .nav-link {
  position: relative;
}
.cid-sKyU3HvTPt .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sKyU3HvTPt .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sKyU3HvTPt .container {
  display: flex;
  margin: auto;
}
.cid-sKyU3HvTPt .navbar.navbar-short .nav-link,
.cid-sKyU3HvTPt .navbar.navbar-short .navbar-caption,
.cid-sKyU3HvTPt .navbar.navbar-short .mbr-iconfont,
.cid-sKyU3HvTPt .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sKyU3HvTPt .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sKyU3HvTPt .navbar-caption {
  padding-right: 3rem;
}
.cid-sKyU3HvTPt .dropdown-menu,
.cid-sKyU3HvTPt .navbar.opened {
  background: #bc133e !important;
}
.cid-sKyU3HvTPt .nav-item:focus,
.cid-sKyU3HvTPt .nav-link:focus {
  outline: none;
}
.cid-sKyU3HvTPt .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-sKyU3HvTPt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sKyU3HvTPt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sKyU3HvTPt .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-sKyU3HvTPt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sKyU3HvTPt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sKyU3HvTPt .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-sKyU3HvTPt .navbar.opened {
  transition: all .3s;
}
.cid-sKyU3HvTPt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sKyU3HvTPt .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sKyU3HvTPt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sKyU3HvTPt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sKyU3HvTPt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sKyU3HvTPt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sKyU3HvTPt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sKyU3HvTPt .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-sKyU3HvTPt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sKyU3HvTPt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sKyU3HvTPt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sKyU3HvTPt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sKyU3HvTPt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sKyU3HvTPt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sKyU3HvTPt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sKyU3HvTPt .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: 55%;
  }
  .cid-sKyU3HvTPt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sKyU3HvTPt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sKyU3HvTPt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sKyU3HvTPt .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sKyU3HvTPt .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sKyU3HvTPt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sKyU3HvTPt .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-sKyU3HvTPt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sKyU3HvTPt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sKyU3HvTPt .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sKyU3HvTPt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sKyU3HvTPt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sKyU3HvTPt .dropdown-item.active,
.cid-sKyU3HvTPt .dropdown-item:active {
  background-color: transparent;
}
.cid-sKyU3HvTPt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sKyU3HvTPt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sKyU3HvTPt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sKyU3HvTPt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-sKyU3HvTPt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sKyU3HvTPt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sKyU3HvTPt ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sKyU3HvTPt .navbar-buttons {
  text-align: center;
}
.cid-sKyU3HvTPt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sKyU3HvTPt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sKyU3HvTPt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sKyU3HvTPt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyU3HvTPt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyU3HvTPt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sKyU3HvTPt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyU3HvTPt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sKyU3HvTPt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sKyU3HvTPt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyU3HvTPt .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sKyU3HvTPt a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKyU3HvTPt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sKyU3HvTPt .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sKyU3HvTPt .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sKyU3HvTPt .navbar {
    height: 77px;
  }
  .cid-sKyU3HvTPt .navbar.opened {
    height: auto;
  }
  .cid-sKyU3HvTPt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMcEcsNzlt {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/taliakeys-woodstock-2019-1334x667.webp");
}
@media (min-width: 992px) {
  .cid-rMcEcsNzlt .display-1 {
    letter-spacing: -6px;
  }
}
.cid-rMcEcsNzlt p {
  margin: 0;
}
.cid-rMcEcsNzlt .display-1 {
  line-height: 1;
}
.cid-rUR1QaA2ph {
  padding-top: 0px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/talia-script-white-6.webp");
}
@media (min-width: 992px) {
  .cid-rUR1QaA2ph .display-1 {
    letter-spacing: -6px;
  }
}
.cid-rUR1QaA2ph p {
  margin: 0;
}
.cid-rUR1QaA2ph .display-1 .mbr-text,
.cid-rUR1QaA2ph .img-align {
  color: #073b4c;
}
.cid-rMQg1wjGTU {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rMQg1wjGTU h2 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rMQg1wjGTU h2:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rMQg1wjGTU li {
  list-style: none;
}
.cid-rMQg1wjGTU .location-wrap {
  min-width: 500px;
}
.cid-rMQg1wjGTU .btn {
  min-width: 230px;
}
.cid-rMQg1wjGTU .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
  justify-content: space-between;
}
.cid-rMQg1wjGTU .col-title {
  margin-bottom: 2rem;
}
.cid-rMQg1wjGTU h3 {
  min-width: 110px;
}
.cid-rMQg1wjGTU .date-wrap {
  min-width: 260px;
}
.cid-rMQg1wjGTU .btn-primary-outline,
.cid-rMQg1wjGTU .btn-secondary-outline,
.cid-rMQg1wjGTU .btn-info-outline,
.cid-rMQg1wjGTU .btn-success-outline,
.cid-rMQg1wjGTU .btn-warning-outline,
.cid-rMQg1wjGTU .btn-danger-outline,
.cid-rMQg1wjGTU .btn-black-outline,
.cid-rMQg1wjGTU .btn-white-outline {
  border: none;
}
.cid-rMQg1wjGTU .btn-primary-outline:hover,
.cid-rMQg1wjGTU .btn-secondary-outline:hover,
.cid-rMQg1wjGTU .btn-info-outline:hover,
.cid-rMQg1wjGTU .btn-success-outline:hover,
.cid-rMQg1wjGTU .btn-warning-outline:hover,
.cid-rMQg1wjGTU .btn-danger-outline:hover,
.cid-rMQg1wjGTU .btn-black-outline:hover,
.cid-rMQg1wjGTU .btn-white-outline:hover,
.cid-rMQg1wjGTU .btn-primary-outline:focus,
.cid-rMQg1wjGTU .btn-secondary-outline:focus,
.cid-rMQg1wjGTU .btn-info-outline:focus,
.cid-rMQg1wjGTU .btn-success-outline:focus,
.cid-rMQg1wjGTU .btn-warning-outline:focus,
.cid-rMQg1wjGTU .btn-danger-outline:focus,
.cid-rMQg1wjGTU .btn-black-outline:focus,
.cid-rMQg1wjGTU .btn-white-outline:focus {
  background: inherit!important;
  color: inherit!important;
}
.cid-rMQg1wjGTU .list {
  padding: 0;
  margin: 0;
}
.cid-rMQg1wjGTU .icon-wrap,
.cid-rMQg1wjGTU .date-wrap {
  display: flex;
  align-items: center;
}
.cid-rMQg1wjGTU .btn span {
  font-size: 1rem;
}
.cid-rMQg1wjGTU h6 {
  margin: 0;
}
.cid-rMQg1wjGTU h4 {
  line-height: 1.2;
  padding-left: 1rem;
  margin: 0;
}
.cid-rMQg1wjGTU .icon-wrap .mbr-iconfont {
  font-size: 1rem;
  padding-right: 0.5rem;
  display: block;
  cursor: pointer;
  transition: all 0.6s;
  color: currentColor;
}
.cid-rMQg1wjGTU .time-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
}
@media (max-width: 992px) {
  .cid-rMQg1wjGTU .item-wrap {
    flex-direction: column;
    padding-bottom: 2rem;
    border-bottom: 1px solid lightgray;
  }
  .cid-rMQg1wjGTU .first {
    border-top: 1px solid lightgray;
    padding-top: 2rem;
  }
  .cid-rMQg1wjGTU .date-wrap {
    min-width: auto;
  }
  .cid-rMQg1wjGTU .location-wrap {
    min-width: auto;
    padding-bottom: 1rem;
  }
  .cid-rMQg1wjGTU h3 {
    min-width: auto;
  }
}
.cid-rMQg1wjGTU H1 {
  color: #073b4c;
}
.cid-rMR4Nztg7Q {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rMR4Nztg7Q h2 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rMR4Nztg7Q h2:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rMR4Nztg7Q li {
  list-style: none;
}
.cid-rMR4Nztg7Q .location-wrap {
  min-width: 500px;
}
.cid-rMR4Nztg7Q .btn {
  min-width: 230px;
}
.cid-rMR4Nztg7Q .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
  justify-content: space-between;
}
.cid-rMR4Nztg7Q .col-title {
  margin-bottom: 2rem;
}
.cid-rMR4Nztg7Q h3 {
  min-width: 110px;
}
.cid-rMR4Nztg7Q .date-wrap {
  min-width: 260px;
}
.cid-rMR4Nztg7Q .btn-primary-outline,
.cid-rMR4Nztg7Q .btn-secondary-outline,
.cid-rMR4Nztg7Q .btn-info-outline,
.cid-rMR4Nztg7Q .btn-success-outline,
.cid-rMR4Nztg7Q .btn-warning-outline,
.cid-rMR4Nztg7Q .btn-danger-outline,
.cid-rMR4Nztg7Q .btn-black-outline,
.cid-rMR4Nztg7Q .btn-white-outline {
  border: none;
}
.cid-rMR4Nztg7Q .btn-primary-outline:hover,
.cid-rMR4Nztg7Q .btn-secondary-outline:hover,
.cid-rMR4Nztg7Q .btn-info-outline:hover,
.cid-rMR4Nztg7Q .btn-success-outline:hover,
.cid-rMR4Nztg7Q .btn-warning-outline:hover,
.cid-rMR4Nztg7Q .btn-danger-outline:hover,
.cid-rMR4Nztg7Q .btn-black-outline:hover,
.cid-rMR4Nztg7Q .btn-white-outline:hover,
.cid-rMR4Nztg7Q .btn-primary-outline:focus,
.cid-rMR4Nztg7Q .btn-secondary-outline:focus,
.cid-rMR4Nztg7Q .btn-info-outline:focus,
.cid-rMR4Nztg7Q .btn-success-outline:focus,
.cid-rMR4Nztg7Q .btn-warning-outline:focus,
.cid-rMR4Nztg7Q .btn-danger-outline:focus,
.cid-rMR4Nztg7Q .btn-black-outline:focus,
.cid-rMR4Nztg7Q .btn-white-outline:focus {
  background: inherit!important;
  color: inherit!important;
}
.cid-rMR4Nztg7Q .list {
  padding: 0;
  margin: 0;
}
.cid-rMR4Nztg7Q .icon-wrap,
.cid-rMR4Nztg7Q .date-wrap {
  display: flex;
  align-items: center;
}
.cid-rMR4Nztg7Q .btn span {
  font-size: 1rem;
}
.cid-rMR4Nztg7Q h6 {
  margin: 0;
}
.cid-rMR4Nztg7Q h4 {
  line-height: 1.2;
  padding-left: 1rem;
  margin: 0;
}
.cid-rMR4Nztg7Q .icon-wrap .mbr-iconfont {
  font-size: 1rem;
  padding-right: 0.5rem;
  display: block;
  cursor: pointer;
  transition: all 0.6s;
  color: currentColor;
}
.cid-rMR4Nztg7Q .time-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
}
@media (max-width: 992px) {
  .cid-rMR4Nztg7Q .item-wrap {
    flex-direction: column;
    padding-bottom: 2rem;
    border-bottom: 1px solid lightgray;
  }
  .cid-rMR4Nztg7Q .first {
    border-top: 1px solid lightgray;
    padding-top: 2rem;
  }
  .cid-rMR4Nztg7Q .date-wrap {
    min-width: auto;
  }
  .cid-rMR4Nztg7Q .location-wrap {
    min-width: auto;
    padding-bottom: 1rem;
  }
  .cid-rMR4Nztg7Q h3 {
    min-width: auto;
  }
}
.cid-rMR4Nztg7Q H1 {
  color: #073b4c;
}
.cid-uDcARWYhob {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-uDcARWYhob .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uDcARWYhob .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-uDcARWYhob .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-uDcARWYhob .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-uDcARWYhob .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDcARWYhob .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDcARWYhob .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDcARWYhob .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDcARWYhob .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uDcARWYhob .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-uDcARWYhob .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uDcARWYhob .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uDcARWYhob .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDcARWYhob .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDcARWYhob .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDcARWYhob .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sKyTOdlrp5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sKyTOdlrp5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sKyTOdlrp5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sKyTOdlrp5 .nav-link {
  position: relative;
}
.cid-sKyTOdlrp5 .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sKyTOdlrp5 .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sKyTOdlrp5 .container {
  display: flex;
  margin: auto;
}
.cid-sKyTOdlrp5 .navbar.navbar-short .nav-link,
.cid-sKyTOdlrp5 .navbar.navbar-short .navbar-caption,
.cid-sKyTOdlrp5 .navbar.navbar-short .mbr-iconfont,
.cid-sKyTOdlrp5 .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sKyTOdlrp5 .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sKyTOdlrp5 .navbar-caption {
  padding-right: 3rem;
}
.cid-sKyTOdlrp5 .dropdown-menu,
.cid-sKyTOdlrp5 .navbar.opened {
  background: #bc133e !important;
}
.cid-sKyTOdlrp5 .nav-item:focus,
.cid-sKyTOdlrp5 .nav-link:focus {
  outline: none;
}
.cid-sKyTOdlrp5 .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-sKyTOdlrp5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sKyTOdlrp5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sKyTOdlrp5 .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-sKyTOdlrp5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sKyTOdlrp5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sKyTOdlrp5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-sKyTOdlrp5 .navbar.opened {
  transition: all .3s;
}
.cid-sKyTOdlrp5 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sKyTOdlrp5 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sKyTOdlrp5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sKyTOdlrp5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sKyTOdlrp5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sKyTOdlrp5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sKyTOdlrp5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sKyTOdlrp5 .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-sKyTOdlrp5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sKyTOdlrp5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sKyTOdlrp5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sKyTOdlrp5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sKyTOdlrp5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sKyTOdlrp5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sKyTOdlrp5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sKyTOdlrp5 .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: 55%;
  }
  .cid-sKyTOdlrp5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sKyTOdlrp5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sKyTOdlrp5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sKyTOdlrp5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sKyTOdlrp5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sKyTOdlrp5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sKyTOdlrp5 .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-sKyTOdlrp5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sKyTOdlrp5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sKyTOdlrp5 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sKyTOdlrp5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sKyTOdlrp5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sKyTOdlrp5 .dropdown-item.active,
.cid-sKyTOdlrp5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sKyTOdlrp5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sKyTOdlrp5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sKyTOdlrp5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sKyTOdlrp5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-sKyTOdlrp5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sKyTOdlrp5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sKyTOdlrp5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sKyTOdlrp5 .navbar-buttons {
  text-align: center;
}
.cid-sKyTOdlrp5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sKyTOdlrp5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sKyTOdlrp5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sKyTOdlrp5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyTOdlrp5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyTOdlrp5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sKyTOdlrp5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyTOdlrp5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sKyTOdlrp5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sKyTOdlrp5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyTOdlrp5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sKyTOdlrp5 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKyTOdlrp5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sKyTOdlrp5 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sKyTOdlrp5 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sKyTOdlrp5 .navbar {
    height: 77px;
  }
  .cid-sKyTOdlrp5 .navbar.opened {
    height: auto;
  }
  .cid-sKyTOdlrp5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s2vzwDCZDE {
  padding-top: 150px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/taliakeys-crowdsurf-2000x1333.webp");
}
@media (min-width: 992px) {
  .cid-s2vzwDCZDE .display-1 {
    letter-spacing: -6px;
  }
}
.cid-s2vzwDCZDE p {
  margin: 0;
}
.cid-s2vzwDCZDE .container-fluid {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-s2vzwDCZDE .display-1 {
  line-height: 1;
}
.cid-s2vzwDCZDE .btn {
  border-radius: 0;
  padding: 1.3rem 2rem;
}
.cid-s2vzwDCZDE .btn .mbr-iconfont {
  font-size: 1rem;
}
.cid-s2vzwDCZDE .btn:hover {
  transform: translateY(-10px);
}
.cid-s2vzwDCZDE .btn-white-outline:hover,
.cid-s2vzwDCZDE .btn-white-outline:focus {
  color: white;
  background: black;
  border-color: black;
}
.cid-s2vzwDCZDE H1 {
  text-align: center;
  color: #ffcc00;
}
.cid-s2vzwDCZDE .mbr-text,
.cid-s2vzwDCZDE .mbr-section-btn {
  color: #ffcc00;
}
.cid-vgNyqn4il2 {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/grunge-texture-website-2000x2851.webp");
}
.cid-vgNyqn4il2 .mbr-text {
  color: #767676;
}
.cid-vgNyqn4il2 .card-subtitle {
  margin: 0;
}
.cid-vgNyqn4il2 img {
  object-fit: cover;
  height: 100%;
}
.cid-vgNyqn4il2 h4 {
  margin: 0;
}
.cid-vgNyqn4il2 .card-img {
  height: 300px;
}
.cid-vgNyqn4il2 .row {
  justify-content: center;
}
.cid-vgNyqn4il2 .card {
  margin-bottom: 2rem;
}
.cid-vgNyqn4il2 .mbr-text,
.cid-vgNyqn4il2 .link {
  color: #efefef;
  text-align: left;
}
.cid-vgNyqn4il2 h3 .card-title,
.cid-vgNyqn4il2 .card-img {
  text-align: left;
  color: #ffcc00;
}
.cid-vgNyqn4il2 .mbr-section-subtitle,
.cid-vgNyqn4il2 .title-align {
  color: #ffcc00;
}
.cid-vgNyqn4il2 H1 {
  color: #efefef;
}
.cid-vgNyqn4il2 .card-title,
.cid-vgNyqn4il2 .card-img {
  color: #ffcc00;
}
.cid-vgO1Q93vzm {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgO1Q93vzm .mbr-text,
.cid-vgO1Q93vzm .img-align {
  color: #efefef;
  text-align: center;
}
.cid-vgO1Q93vzm H2 {
  color: #efefef;
}
.cid-vgNBENwxUR {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/grunge-texture-website-2000x2851.webp");
}
.cid-vgNBENwxUR .mbr-text {
  color: #767676;
}
.cid-vgNBENwxUR .card-subtitle {
  margin: 0;
}
.cid-vgNBENwxUR img {
  object-fit: cover;
  height: 100%;
}
.cid-vgNBENwxUR h4 {
  margin: 0;
}
.cid-vgNBENwxUR .card-img {
  height: 300px;
}
.cid-vgNBENwxUR .row {
  justify-content: center;
}
.cid-vgNBENwxUR .card {
  margin-bottom: 2rem;
}
.cid-vgNBENwxUR .mbr-text,
.cid-vgNBENwxUR .link {
  color: #efefef;
  text-align: left;
}
.cid-vgNBENwxUR h3 .card-title,
.cid-vgNBENwxUR .card-img {
  text-align: left;
}
.cid-vgNBENwxUR .mbr-section-subtitle,
.cid-vgNBENwxUR .title-align {
  color: #ffcc00;
}
.cid-vgNBENwxUR .card-title,
.cid-vgNBENwxUR .card-img {
  color: #ffcc00;
}
.cid-vgNBL90NW2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgNBL90NW2 H2 {
  color: #ffffff;
}
.cid-vgl74C3pTR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-vgl74C3pTR .card-box {
  z-index: 10;
  position: absolute;
  padding: 1rem;
}
.cid-vgl74C3pTR .container-fluid {
  padding: 0;
}
.cid-vgl74C3pTR h5 {
  margin: 0;
}
.cid-vgl74C3pTR h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-vgl74C3pTR h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 0px;
  height: 0px;
  background: currentColor;
}
.cid-vgl74C3pTR .card {
  margin: auto;
  height: 500px;
  perspective: 800px;
  cursor: pointer;
}
.cid-vgl74C3pTR .card:hover {
  z-index: 99;
}
.cid-vgl74C3pTR .card-wrapper {
  background-position: center;
  background-size: cover;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform-origin: top;
  position: relative;
  overflow: hidden;
}
.cid-vgl74C3pTR .card-wrapper a {
  height: 100%;
}
.cid-vgl74C3pTR .card-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: all;
}
.cid-vgl74C3pTR h4 {
  font-weight: 500;
  margin-bottom: 0;
}
.cid-vgl74C3pTR .btn {
  margin: 0 !important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-vgl74C3pTR .card-box {
    text-align: center;
  }
}
.cid-vgl74C3pTR .mbr-text {
  color: #cccccc;
}
.cid-vgl74C3pTR .card-date {
  color: #000000;
}
.cid-vgl74C3pTR .card-wrapper {
  width: 370px;
  height: 370px;
  flex: none;
}
@media (max-width: 1200px) {
  .cid-vgl74C3pTR .card-wrapper {
    max-width: 313px;
    max-height: 313px;
  }
}
@media (max-width: 992px) {
  .cid-vgl74C3pTR .card-wrapper {
    max-width: 350px;
    max-height: 350px;
  }
}
@media (max-width: 768px) {
  .cid-vgl74C3pTR .card-wrapper {
    max-width: 540px;
    max-height: 540px;
  }
}
@media (max-width: 576px) {
  .cid-vgl74C3pTR .card-wrapper {
    max-width: 237px;
    max-height: 237px;
  }
}
.cid-vgl74C3pTR .card {
  height: 370px;
  margin-bottom: 20px;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-vgl74C3pTR .card {
    max-height: 313px;
  }
}
@media (max-width: 992px) {
  .cid-vgl74C3pTR .card {
    max-height: 350px;
  }
}
@media (max-width: 768px) {
  .cid-vgl74C3pTR .card {
    max-height: 540px;
  }
}
@media (max-width: 576px) {
  .cid-vgl74C3pTR .card {
    max-height: 237px;
  }
}
.cid-vgl74C3pTR .card-title,
.cid-vgl74C3pTR .card-box {
  color: #efefef;
}
.cid-vgl74C3pTR .mbr-section-subtitle,
.cid-vgl74C3pTR .title-align {
  color: #efefef;
}
.cid-vgl74C3pTR H1 {
  color: #ffcc00;
}
.cid-vgO55erlrf {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-vgO55erlrf .mbr-text,
.cid-vgO55erlrf .img-align {
  color: #efefef;
  text-align: center;
}
.cid-vgO55erlrf H2 {
  color: #efefef;
}
.cid-ts1pamO1Dy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
  background: linear-gradient(45deg, #000000, #02303f);
}
.cid-ts1pamO1Dy .cover {
  width: 250px;
  margin: auto;
  padding-bottom: 1rem;
}
.cid-ts1pamO1Dy .btn {
  border-radius: 0;
}
.cid-ts1pamO1Dy .btn .mbr-iconfont {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .cid-ts1pamO1Dy .media-content {
    max-width: 450px;
    margin: auto;
  }
}
.cid-ts1pamO1Dy .icons-wrap {
  display: flex;
}
.cid-ts1pamO1Dy .icons-wrap .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff !important;
  padding-top: 0.4rem;
  padding-right: 0.5rem;
}
.cid-ts1pamO1Dy h2 {
  margin: 0;
}
.cid-ts1pamO1Dy .icon-wrap {
  display: flex;
  align-items: center;
  padding-right: 2.5rem;
}
.cid-ts1pamO1Dy .mbr-figure {
  z-index: 2;
  padding: 8rem 2rem;
}
.cid-ts1pamO1Dy .card {
  overflow: hidden;
  height: 100%;
}
.cid-ts1pamO1Dy .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/cover-lessons-r2-cover-2-2000x2000.webp");
  filter: blur(15px);
  background-size: cover;
  z-index: 1;
}
.cid-ts1pamO1Dy H4 {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-ts1pamO1Dy .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
    padding-bottom: 0.5rem;
    padding-right: 0rem;
  }
  .cid-ts1pamO1Dy .icon-wrap {
    padding-bottom: 0.6rem;
    padding-right: 0rem;
  }
  .cid-ts1pamO1Dy .cover {
    width: 100%;
  }
}
.cid-ts1pamO1Dy .mbr-text,
.cid-ts1pamO1Dy .mbr-section-btn {
  color: #ffffff;
}
.cid-ts1pamO1Dy H3 {
  color: #ffffff;
}
.cid-ts1pamO1Dy .icon-text {
  color: #ffffff;
  text-align: right;
}
.cid-ts1pamO1Dy H1 {
  color: #ffffff;
}
.cid-vgO8Hl7nD3 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgO8Hl7nD3 .mbr-text,
.cid-vgO8Hl7nD3 .img-align {
  color: #efefef;
  text-align: center;
}
.cid-vgO8Hl7nD3 H2 {
  color: #efefef;
}
.cid-rLTUQdOZHM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #053312;
  background: linear-gradient(45deg, #053312, #efefef);
}
.cid-rLTUQdOZHM .cover {
  width: 250px;
  margin: auto;
  padding-bottom: 1rem;
}
.cid-rLTUQdOZHM .btn {
  border-radius: 0;
}
.cid-rLTUQdOZHM .btn .mbr-iconfont {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .cid-rLTUQdOZHM .media-content {
    max-width: 450px;
    margin: auto;
  }
}
.cid-rLTUQdOZHM .icons-wrap {
  display: flex;
}
.cid-rLTUQdOZHM .icons-wrap .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000 !important;
  padding-top: 0.4rem;
  padding-right: 0.5rem;
}
.cid-rLTUQdOZHM h2 {
  margin: 0;
}
.cid-rLTUQdOZHM .icon-wrap {
  display: flex;
  align-items: center;
  padding-right: 2.5rem;
}
.cid-rLTUQdOZHM .mbr-figure {
  z-index: 2;
  padding: 8rem 2rem;
}
.cid-rLTUQdOZHM .card {
  overflow: hidden;
  height: 100%;
}
.cid-rLTUQdOZHM .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/butterfly3-r2-2000x2000.webp");
  filter: blur(15px);
  background-size: cover;
  z-index: 1;
}
.cid-rLTUQdOZHM H4 {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rLTUQdOZHM .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
    padding-bottom: 0.5rem;
    padding-right: 0rem;
  }
  .cid-rLTUQdOZHM .icon-wrap {
    padding-bottom: 0.6rem;
    padding-right: 0rem;
  }
  .cid-rLTUQdOZHM .cover {
    width: 100%;
  }
}
.cid-rMc0rbaxqz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #7f1933);
}
.cid-rMc0rbaxqz .cover {
  width: 250px;
  margin: auto;
  padding-bottom: 1rem;
}
.cid-rMc0rbaxqz .btn {
  border-radius: 0;
}
.cid-rMc0rbaxqz .btn .mbr-iconfont {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .cid-rMc0rbaxqz .media-content {
    max-width: 450px;
    margin: auto;
  }
}
.cid-rMc0rbaxqz .icons-wrap {
  display: flex;
}
.cid-rMc0rbaxqz .icons-wrap .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef !important;
  padding-top: 0.4rem;
  padding-right: 0.5rem;
}
.cid-rMc0rbaxqz h2 {
  margin: 0;
}
.cid-rMc0rbaxqz .icon-wrap {
  display: flex;
  align-items: center;
  padding-right: 2.5rem;
}
.cid-rMc0rbaxqz .mbr-figure {
  z-index: 2;
  padding: 8rem 2rem;
}
.cid-rMc0rbaxqz .card {
  overflow: hidden;
  height: 100%;
}
.cid-rMc0rbaxqz .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/talia-keys-fools-gold-front-395x356.webp");
  filter: blur(15px);
  background-size: cover;
  z-index: 1;
}
.cid-rMc0rbaxqz H4 {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rMc0rbaxqz .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
    padding-bottom: 0.5rem;
    padding-right: 0rem;
  }
  .cid-rMc0rbaxqz .icon-wrap {
    padding-bottom: 0.6rem;
    padding-right: 0rem;
  }
  .cid-rMc0rbaxqz .cover {
    width: 100%;
  }
}
.cid-rMc0rbaxqz H1 {
  color: #efefef;
}
.cid-rMc0rbaxqz .mbr-text,
.cid-rMc0rbaxqz .mbr-section-btn {
  color: #efefef;
}
.cid-rMc0rbaxqz H3 {
  color: #efefef;
}
.cid-rMc0rbaxqz .icon-text {
  color: #efefef;
}
.cid-rMbWV1hl8Y {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #073b4c);
}
.cid-rMbWV1hl8Y .cover {
  width: 250px;
  margin: auto;
  padding-bottom: 1rem;
}
.cid-rMbWV1hl8Y .btn {
  border-radius: 0;
}
.cid-rMbWV1hl8Y .btn .mbr-iconfont {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .cid-rMbWV1hl8Y .media-content {
    max-width: 450px;
    margin: auto;
  }
}
.cid-rMbWV1hl8Y .icons-wrap {
  display: flex;
}
.cid-rMbWV1hl8Y .icons-wrap .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff !important;
  padding-top: 0.4rem;
  padding-right: 0.5rem;
}
.cid-rMbWV1hl8Y h2 {
  margin: 0;
}
.cid-rMbWV1hl8Y .icon-wrap {
  display: flex;
  align-items: center;
  padding-right: 2.5rem;
}
.cid-rMbWV1hl8Y .mbr-figure {
  z-index: 2;
  padding: 8rem 2rem;
}
.cid-rMbWV1hl8Y .card {
  overflow: hidden;
  height: 100%;
}
.cid-rMbWV1hl8Y .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/talia-keys-gemini-mind-front-cover-336x336.webp");
  filter: blur(15px);
  background-size: cover;
  z-index: 1;
}
.cid-rMbWV1hl8Y H4 {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rMbWV1hl8Y .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
    padding-bottom: 0.5rem;
    padding-right: 0rem;
  }
  .cid-rMbWV1hl8Y .icon-wrap {
    padding-bottom: 0.6rem;
    padding-right: 0rem;
  }
  .cid-rMbWV1hl8Y .cover {
    width: 100%;
  }
}
.cid-rMbWV1hl8Y H1 {
  color: #efefef;
}
.cid-rMbWV1hl8Y .mbr-text,
.cid-rMbWV1hl8Y .mbr-section-btn {
  color: #efefef;
}
.cid-rMbWV1hl8Y H3 {
  color: #efefef;
}
.cid-rMbWV1hl8Y .icon-text {
  color: #ffffff;
}
.cid-rMKKvKdKXs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #000000);
}
.cid-rMKKvKdKXs .cover {
  width: 250px;
  margin: auto;
  padding-bottom: 1rem;
}
.cid-rMKKvKdKXs .btn {
  border-radius: 0;
}
.cid-rMKKvKdKXs .btn .mbr-iconfont {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .cid-rMKKvKdKXs .media-content {
    max-width: 450px;
    margin: auto;
  }
}
.cid-rMKKvKdKXs .icons-wrap {
  display: flex;
}
.cid-rMKKvKdKXs .icons-wrap .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000 !important;
  padding-top: 0.4rem;
  padding-right: 0.5rem;
}
.cid-rMKKvKdKXs h2 {
  margin: 0;
}
.cid-rMKKvKdKXs .icon-wrap {
  display: flex;
  align-items: center;
  padding-right: 2.5rem;
}
.cid-rMKKvKdKXs .mbr-figure {
  z-index: 2;
  padding: 8rem 2rem;
}
.cid-rMKKvKdKXs .card {
  overflow: hidden;
  height: 100%;
}
.cid-rMKKvKdKXs .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/ryanconger-vinyl-art-700x700.webp");
  filter: blur(15px);
  background-size: cover;
  z-index: 1;
}
.cid-rMKKvKdKXs H4 {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rMKKvKdKXs .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
    padding-bottom: 0.5rem;
    padding-right: 0rem;
  }
  .cid-rMKKvKdKXs .icon-wrap {
    padding-bottom: 0.6rem;
    padding-right: 0rem;
  }
  .cid-rMKKvKdKXs .cover {
    width: 100%;
  }
}
.cid-rMKKvKdKXs H1 {
  color: #ffffff;
}
.cid-rMKKvKdKXs .mbr-text,
.cid-rMKKvKdKXs .mbr-section-btn {
  color: #ffffff;
}
.cid-rMKKvKdKXs H3 {
  color: #ffffff;
}
.cid-rMKKvKdKXs .icon-text {
  color: #ffffff;
}
.cid-uFh4mr31bc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ufo-sticker-1.webp");
}
.cid-uFh4mr31bc .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-uFh4mr31bc .col-lg-3,
.cid-uFh4mr31bc .col-lg-6 {
  padding: 0!important;
}
.cid-uFh4mr31bc .btn {
  border-radius: 30px;
}
.cid-uFh4mr31bc .card-wrapper {
  min-height: 700px;
  border-right: 1px solid white;
}
.cid-uFh4mr31bc .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-uFh4mr31bc .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uFh4mr31bc .wrapper {
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uFh4mr31bc .image-element:hover .wrapper {
    padding-top: 0;
  }
  .cid-uFh4mr31bc .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.9s;
    opacity: 1;
    max-height: 999px;
  }
  .cid-uFh4mr31bc .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    background: transparent;
  }
  .cid-uFh4mr31bc .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.3s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .cid-uFh4mr31bc .card-title,
  .cid-uFh4mr31bc .underline,
  .cid-uFh4mr31bc .mbr-text,
  .cid-uFh4mr31bc .mbr-section-btn,
  .cid-uFh4mr31bc .mbr-section-subtitle,
  .cid-uFh4mr31bc .mbr-section-title {
    text-align: center !important;
  }
  .cid-uFh4mr31bc .card-wrapper {
    align-items: center;
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid white;
  }
}
.cid-uFh4mr31bc .mbr-section-title {
  text-align: left;
}
.cid-uFh4mr31bc .mbr-section-title,
.cid-uFh4mr31bc .underline {
  text-align: center;
}
.cid-uFh4mr31bc H4 {
  color: #e1201d;
}
.cid-uFh4mr31bc H3 {
  color: #ffcc00;
}
.cid-sjuk1wOcQI {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-sjuk1wOcQI .display-1 {
    letter-spacing: -6px;
  }
}
.cid-sjuk1wOcQI p {
  margin: 0;
}
.cid-sjuk1wOcQI .display-1 {
  line-height: 1;
}
.cid-sjuk1wOcQI .mbr-text,
.cid-sjuk1wOcQI .img-align {
  color: #167e85;
}
.cid-sjuk1wOcQI H1 {
  color: #ffcc00;
}
.cid-uDcARWYhob {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-uDcARWYhob .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uDcARWYhob .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-uDcARWYhob .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-uDcARWYhob .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-uDcARWYhob .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDcARWYhob .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDcARWYhob .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDcARWYhob .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDcARWYhob .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uDcARWYhob .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-uDcARWYhob .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uDcARWYhob .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uDcARWYhob .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDcARWYhob .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDcARWYhob .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDcARWYhob .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vgNBJicYaw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgNBJicYaw H2 {
  color: #ffffff;
}
.cid-trOYHXymY4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-trOYHXymY4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-trOYHXymY4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-trOYHXymY4 .nav-link {
  position: relative;
}
.cid-trOYHXymY4 .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-trOYHXymY4 .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-trOYHXymY4 .container {
  display: flex;
  margin: auto;
}
.cid-trOYHXymY4 .navbar.navbar-short .nav-link,
.cid-trOYHXymY4 .navbar.navbar-short .navbar-caption,
.cid-trOYHXymY4 .navbar.navbar-short .mbr-iconfont,
.cid-trOYHXymY4 .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-trOYHXymY4 .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-trOYHXymY4 .navbar-caption {
  padding-right: 3rem;
}
.cid-trOYHXymY4 .dropdown-menu,
.cid-trOYHXymY4 .navbar.opened {
  background: #bc133e !important;
}
.cid-trOYHXymY4 .nav-item:focus,
.cid-trOYHXymY4 .nav-link:focus {
  outline: none;
}
.cid-trOYHXymY4 .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-trOYHXymY4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trOYHXymY4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trOYHXymY4 .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-trOYHXymY4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trOYHXymY4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trOYHXymY4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-trOYHXymY4 .navbar.opened {
  transition: all .3s;
}
.cid-trOYHXymY4 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-trOYHXymY4 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-trOYHXymY4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-trOYHXymY4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-trOYHXymY4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-trOYHXymY4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trOYHXymY4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trOYHXymY4 .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-trOYHXymY4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trOYHXymY4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trOYHXymY4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-trOYHXymY4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-trOYHXymY4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trOYHXymY4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trOYHXymY4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trOYHXymY4 .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: 55%;
  }
  .cid-trOYHXymY4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trOYHXymY4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trOYHXymY4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trOYHXymY4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-trOYHXymY4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-trOYHXymY4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-trOYHXymY4 .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-trOYHXymY4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trOYHXymY4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trOYHXymY4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trOYHXymY4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trOYHXymY4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trOYHXymY4 .dropdown-item.active,
.cid-trOYHXymY4 .dropdown-item:active {
  background-color: transparent;
}
.cid-trOYHXymY4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trOYHXymY4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trOYHXymY4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trOYHXymY4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-trOYHXymY4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trOYHXymY4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trOYHXymY4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-trOYHXymY4 .navbar-buttons {
  text-align: center;
}
.cid-trOYHXymY4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-trOYHXymY4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trOYHXymY4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trOYHXymY4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trOYHXymY4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trOYHXymY4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trOYHXymY4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trOYHXymY4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-trOYHXymY4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-trOYHXymY4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trOYHXymY4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-trOYHXymY4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-trOYHXymY4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trOYHXymY4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-trOYHXymY4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-trOYHXymY4 .navbar {
    height: 77px;
  }
  .cid-trOYHXymY4 .navbar.opened {
    height: auto;
  }
  .cid-trOYHXymY4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trOZPfvyMe {
  padding-top: 375px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/20240430-stansbury-taliakeys-1169-2-1600x1067.webp");
}
.cid-trOZPfvyMe h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  margin-bottom: 15rem;
}
.cid-trOZPfvyMe h1 span {
  background-image: url("../../../assets/images/background2.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-trOZPfvyMe .icons-wrap {
  background: #000000;
  display: flex;
  justify-content: center;
  box-shadow: 1px 35px 60px 1px rgba(0, 0, 0, 0.1);
}
.cid-trOZPfvyMe .mbr-iconfont {
  font-size: 1.8rem;
  color: #ffffff !important;
  padding-top: 0.4rem;
  padding-right: 1rem;
}
.cid-trOZPfvyMe .icon-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}
.cid-trOZPfvyMe h2 {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-trOZPfvyMe .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
  }
  .cid-trOZPfvyMe h1 {
    margin-bottom: 8rem;
  }
}
.cid-u2k6Oz5gCv {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2k6Oz5gCv h3 .signature {
  filter: invert(0.8);
  display: inline-block;
  width: auto;
}
.cid-u2k6Oz5gCv DIV {
  text-align: center;
}
.cid-u2k6Oz5gCv H2 {
  text-align: center;
}
.cid-u2k6Oz5gCv .mbr-text,
.cid-u2k6Oz5gCv .img-align {
  text-align: center;
}
.cid-verYSKX30C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-verYSKX30C H2 {
  color: #ffffff;
}
.cid-vgNz0ZXn7E {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/grunge-texture-website-2000x2851.webp");
}
.cid-vgNz0ZXn7E .mbr-text {
  color: #767676;
}
.cid-vgNz0ZXn7E .card-subtitle {
  margin: 0;
}
.cid-vgNz0ZXn7E img {
  object-fit: cover;
  height: 100%;
}
.cid-vgNz0ZXn7E h4 {
  margin: 0;
}
.cid-vgNz0ZXn7E .card-img {
  height: 300px;
}
.cid-vgNz0ZXn7E .row {
  justify-content: center;
}
.cid-vgNz0ZXn7E .card {
  margin-bottom: 2rem;
}
.cid-vgNz0ZXn7E .mbr-text,
.cid-vgNz0ZXn7E .link {
  color: #efefef;
  text-align: left;
}
.cid-vgNz0ZXn7E h3 .card-title,
.cid-vgNz0ZXn7E .card-img {
  text-align: left;
  color: #ffcc00;
}
.cid-vgNz0ZXn7E .mbr-section-subtitle,
.cid-vgNz0ZXn7E .title-align {
  color: #ffcc00;
}
.cid-vgNz0ZXn7E H1 {
  color: #efefef;
}
.cid-vgNz0ZXn7E .card-title,
.cid-vgNz0ZXn7E .card-img {
  color: #ffcc00;
}
.cid-vgNV3p3SoM {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgNV3p3SoM .mbr-text,
.cid-vgNV3p3SoM .img-align {
  color: #efefef;
  text-align: center;
}
.cid-vgNV3p3SoM H2 {
  color: #efefef;
}
.cid-vgNz2Co5w4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgNz2Co5w4 H2 {
  color: #ffffff;
}
.cid-verV0CBNZa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-verV0CBNZa .card-box {
  z-index: 10;
  position: absolute;
  padding: 1rem;
}
.cid-verV0CBNZa .container-fluid {
  padding: 0;
}
.cid-verV0CBNZa h5 {
  margin: 0;
}
.cid-verV0CBNZa h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-verV0CBNZa h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 0px;
  height: 0px;
  background: currentColor;
}
.cid-verV0CBNZa .card {
  margin: auto;
  height: 500px;
  perspective: 800px;
  cursor: pointer;
}
.cid-verV0CBNZa .card:hover {
  z-index: 99;
}
.cid-verV0CBNZa .card-wrapper {
  background-position: center;
  background-size: cover;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform-origin: top;
  position: relative;
  overflow: hidden;
}
.cid-verV0CBNZa .card-wrapper a {
  height: 100%;
}
.cid-verV0CBNZa .card-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: all;
}
.cid-verV0CBNZa h4 {
  font-weight: 500;
  margin-bottom: 0;
}
.cid-verV0CBNZa .btn {
  margin: 0 !important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-verV0CBNZa .card-box {
    text-align: center;
  }
}
.cid-verV0CBNZa .mbr-text {
  color: #cccccc;
}
.cid-verV0CBNZa .card-date {
  color: #000000;
}
.cid-verV0CBNZa .card-wrapper {
  width: 370px;
  height: 370px;
  flex: none;
}
@media (max-width: 1200px) {
  .cid-verV0CBNZa .card-wrapper {
    max-width: 313px;
    max-height: 313px;
  }
}
@media (max-width: 992px) {
  .cid-verV0CBNZa .card-wrapper {
    max-width: 350px;
    max-height: 350px;
  }
}
@media (max-width: 768px) {
  .cid-verV0CBNZa .card-wrapper {
    max-width: 540px;
    max-height: 540px;
  }
}
@media (max-width: 576px) {
  .cid-verV0CBNZa .card-wrapper {
    max-width: 237px;
    max-height: 237px;
  }
}
.cid-verV0CBNZa .card {
  height: 370px;
  margin-bottom: 20px;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-verV0CBNZa .card {
    max-height: 313px;
  }
}
@media (max-width: 992px) {
  .cid-verV0CBNZa .card {
    max-height: 350px;
  }
}
@media (max-width: 768px) {
  .cid-verV0CBNZa .card {
    max-height: 540px;
  }
}
@media (max-width: 576px) {
  .cid-verV0CBNZa .card {
    max-height: 237px;
  }
}
.cid-verV0CBNZa .card-title,
.cid-verV0CBNZa .card-box {
  color: #efefef;
}
.cid-verV0CBNZa .mbr-section-subtitle,
.cid-verV0CBNZa .title-align {
  color: #efefef;
}
.cid-verV0CBNZa H1 {
  color: #ffcc00;
}
.cid-vgO7xteklp {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgO7xteklp .mbr-text,
.cid-vgO7xteklp .img-align {
  color: #efefef;
  text-align: center;
}
.cid-vgO7xteklp H2 {
  color: #efefef;
}
.cid-trPfSMnpPn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
  background: linear-gradient(45deg, #000000, #02303f);
}
.cid-trPfSMnpPn .cover {
  width: 250px;
  margin: auto;
  padding-bottom: 1rem;
}
.cid-trPfSMnpPn .btn {
  border-radius: 0;
}
.cid-trPfSMnpPn .btn .mbr-iconfont {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .cid-trPfSMnpPn .media-content {
    max-width: 450px;
    margin: auto;
  }
}
.cid-trPfSMnpPn .icons-wrap {
  display: flex;
}
.cid-trPfSMnpPn .icons-wrap .mbr-iconfont {
  font-size: 1.5rem;
  color: #ffffff !important;
  padding-top: 0.4rem;
  padding-right: 0.5rem;
}
.cid-trPfSMnpPn h2 {
  margin: 0;
}
.cid-trPfSMnpPn .icon-wrap {
  display: flex;
  align-items: center;
  padding-right: 2.5rem;
}
.cid-trPfSMnpPn .mbr-figure {
  z-index: 2;
  padding: 8rem 2rem;
}
.cid-trPfSMnpPn .card {
  overflow: hidden;
  height: 100%;
}
.cid-trPfSMnpPn .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/cover-lessons-r2-cover-2-2000x2000.webp");
  filter: blur(15px);
  background-size: cover;
  z-index: 1;
}
.cid-trPfSMnpPn H4 {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-trPfSMnpPn .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
    padding-bottom: 0.5rem;
    padding-right: 0rem;
  }
  .cid-trPfSMnpPn .icon-wrap {
    padding-bottom: 0.6rem;
    padding-right: 0rem;
  }
  .cid-trPfSMnpPn .cover {
    width: 100%;
  }
}
.cid-trPfSMnpPn .mbr-text,
.cid-trPfSMnpPn .mbr-section-btn {
  color: #ffffff;
}
.cid-trPfSMnpPn H3 {
  color: #ffffff;
}
.cid-trPfSMnpPn .icon-text {
  color: #ffffff;
  text-align: right;
}
.cid-trPfSMnpPn H1 {
  color: #ffffff;
}
.cid-vgNZ4wb3fe {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgNZ4wb3fe .mbr-text,
.cid-vgNZ4wb3fe .img-align {
  color: #efefef;
  text-align: center;
}
.cid-vgNZ4wb3fe H2 {
  color: #efefef;
}
.cid-ts1bkO0Mci {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-ts1bkO0Mci .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts1bkO0Mci .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts1bkO0Mci .video-wrapper iframe {
  width: 100%;
}
.cid-ts1bkO0Mci .mbr-section-title,
.cid-ts1bkO0Mci .mbr-section-subtitle,
.cid-ts1bkO0Mci .mbr-text {
  text-align: center;
}
.cid-ts1bkO0Mci .mbr-section-title {
  color: #efefef;
}
.cid-ts1bkO0Mci .mbr-text {
  color: #efefef;
}
.cid-ves481DFwv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-ves481DFwv H2 {
  color: #ffffff;
}
.cid-uiavSkgJQV {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-uiavSkgJQV .card-subtitle {
  margin: 0;
}
.cid-uiavSkgJQV .row {
  padding: 0 0.5rem;
  justify-content: center;
}
.cid-uiavSkgJQV .card {
  padding: 0.5rem;
}
.cid-uiavSkgJQV img {
  object-fit: cover;
  height: 100%;
}
.cid-uiavSkgJQV h4 {
  margin: 0;
}
.cid-uiavSkgJQV .card-img {
  height: 550px;
}
.cid-uiavSkgJQV h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-uiavSkgJQV h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 0px;
  height: 0px;
  background: currentColor;
}
@media (max-width: 992px) {
  .cid-uiavSkgJQV .card-img {
    height: 350px;
  }
}
.cid-ves57wcYbs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ves57wcYbs H2 {
  color: #ffffff;
}
.cid-trQzW4Vn1C {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-trQzW4Vn1C .card-subtitle {
  margin: 0;
}
.cid-trQzW4Vn1C .row {
  padding: 0 0.5rem;
  justify-content: center;
}
.cid-trQzW4Vn1C .card {
  padding: 0.5rem;
}
.cid-trQzW4Vn1C img {
  object-fit: cover;
  height: 100%;
}
.cid-trQzW4Vn1C h4 {
  margin: 0;
}
.cid-trQzW4Vn1C .card-img {
  height: 550px;
}
.cid-trQzW4Vn1C h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-trQzW4Vn1C h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
@media (max-width: 992px) {
  .cid-trQzW4Vn1C .card-img {
    height: 350px;
  }
}
.cid-ves4dEhWsT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ves4dEhWsT H2 {
  color: #ffffff;
}
.cid-trQBlzGn5z {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-trQBlzGn5z .card-subtitle {
  margin: 0;
}
.cid-trQBlzGn5z .row {
  padding: 0 0.5rem;
  justify-content: center;
}
.cid-trQBlzGn5z .card {
  padding: 0.5rem;
}
.cid-trQBlzGn5z img {
  object-fit: cover;
  height: 100%;
}
.cid-trQBlzGn5z h4 {
  margin: 0;
}
.cid-trQBlzGn5z .card-img {
  height: 550px;
}
.cid-trQBlzGn5z h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-trQBlzGn5z h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
@media (max-width: 992px) {
  .cid-trQBlzGn5z .card-img {
    height: 350px;
  }
}
.cid-trQBlzGn5z .card-title,
.cid-trQBlzGn5z .card-img {
  text-align: left;
}
.cid-uFh4CTfFjT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ufo-sticker-1.webp");
}
.cid-uFh4CTfFjT .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-uFh4CTfFjT .col-lg-3,
.cid-uFh4CTfFjT .col-lg-6 {
  padding: 0!important;
}
.cid-uFh4CTfFjT .btn {
  border-radius: 30px;
}
.cid-uFh4CTfFjT .card-wrapper {
  min-height: 700px;
  border-right: 1px solid white;
}
.cid-uFh4CTfFjT .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-uFh4CTfFjT .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uFh4CTfFjT .wrapper {
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uFh4CTfFjT .image-element:hover .wrapper {
    padding-top: 0;
  }
  .cid-uFh4CTfFjT .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.9s;
    opacity: 1;
    max-height: 999px;
  }
  .cid-uFh4CTfFjT .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    background: transparent;
  }
  .cid-uFh4CTfFjT .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.3s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .cid-uFh4CTfFjT .card-title,
  .cid-uFh4CTfFjT .underline,
  .cid-uFh4CTfFjT .mbr-text,
  .cid-uFh4CTfFjT .mbr-section-btn,
  .cid-uFh4CTfFjT .mbr-section-subtitle,
  .cid-uFh4CTfFjT .mbr-section-title {
    text-align: center !important;
  }
  .cid-uFh4CTfFjT .card-wrapper {
    align-items: center;
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid white;
  }
}
.cid-uFh4CTfFjT .mbr-section-title {
  text-align: left;
}
.cid-uFh4CTfFjT .mbr-section-title,
.cid-uFh4CTfFjT .underline {
  text-align: center;
}
.cid-uFh4CTfFjT H4 {
  color: #e1201d;
}
.cid-uFh4CTfFjT H3 {
  color: #ffcc00;
}
.cid-trOYHZJRJj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
@media (min-width: 992px) {
  .cid-trOYHZJRJj .display-1 {
    letter-spacing: -6px;
  }
}
.cid-trOYHZJRJj p {
  margin: 0;
}
.cid-trOYHZJRJj .display-1 {
  line-height: 1;
}
.cid-trOYHZJRJj .mbr-text,
.cid-trOYHZJRJj .img-align {
  color: #167e85;
}
.cid-trOYHZJRJj H1 {
  color: #ffcc00;
}
.cid-uDcARWYhob {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-uDcARWYhob .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uDcARWYhob .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-uDcARWYhob .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-uDcARWYhob .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-uDcARWYhob .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDcARWYhob .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDcARWYhob .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDcARWYhob .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDcARWYhob .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uDcARWYhob .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-uDcARWYhob .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uDcARWYhob .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uDcARWYhob .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDcARWYhob .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDcARWYhob .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDcARWYhob .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-rLTUAz2xuB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLTUAz2xuB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-rLTUAz2xuB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-rLTUAz2xuB .nav-link {
  position: relative;
}
.cid-rLTUAz2xuB .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-rLTUAz2xuB .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-rLTUAz2xuB .container {
  display: flex;
  margin: auto;
}
.cid-rLTUAz2xuB .navbar.navbar-short .nav-link,
.cid-rLTUAz2xuB .navbar.navbar-short .navbar-caption,
.cid-rLTUAz2xuB .navbar.navbar-short .mbr-iconfont,
.cid-rLTUAz2xuB .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-rLTUAz2xuB .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-rLTUAz2xuB .navbar-caption {
  padding-right: 3rem;
}
.cid-rLTUAz2xuB .dropdown-menu,
.cid-rLTUAz2xuB .navbar.opened {
  background: #bc133e !important;
}
.cid-rLTUAz2xuB .nav-item:focus,
.cid-rLTUAz2xuB .nav-link:focus {
  outline: none;
}
.cid-rLTUAz2xuB .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-rLTUAz2xuB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rLTUAz2xuB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLTUAz2xuB .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-rLTUAz2xuB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLTUAz2xuB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLTUAz2xuB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-rLTUAz2xuB .navbar.opened {
  transition: all .3s;
}
.cid-rLTUAz2xuB .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rLTUAz2xuB .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-rLTUAz2xuB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLTUAz2xuB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLTUAz2xuB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-rLTUAz2xuB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLTUAz2xuB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rLTUAz2xuB .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-rLTUAz2xuB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLTUAz2xuB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rLTUAz2xuB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLTUAz2xuB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLTUAz2xuB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLTUAz2xuB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLTUAz2xuB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rLTUAz2xuB .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: 55%;
  }
  .cid-rLTUAz2xuB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLTUAz2xuB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLTUAz2xuB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rLTUAz2xuB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-rLTUAz2xuB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLTUAz2xuB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLTUAz2xuB .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-rLTUAz2xuB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLTUAz2xuB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLTUAz2xuB .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLTUAz2xuB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLTUAz2xuB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLTUAz2xuB .dropdown-item.active,
.cid-rLTUAz2xuB .dropdown-item:active {
  background-color: transparent;
}
.cid-rLTUAz2xuB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rLTUAz2xuB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLTUAz2xuB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLTUAz2xuB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-rLTUAz2xuB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLTUAz2xuB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLTUAz2xuB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLTUAz2xuB .navbar-buttons {
  text-align: center;
}
.cid-rLTUAz2xuB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLTUAz2xuB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rLTUAz2xuB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLTUAz2xuB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLTUAz2xuB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLTUAz2xuB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLTUAz2xuB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLTUAz2xuB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLTUAz2xuB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLTUAz2xuB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLTUAz2xuB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLTUAz2xuB a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLTUAz2xuB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rLTUAz2xuB .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-rLTUAz2xuB .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLTUAz2xuB .navbar {
    height: 77px;
  }
  .cid-rLTUAz2xuB .navbar.opened {
    height: auto;
  }
  .cid-rLTUAz2xuB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH9ghGT35m {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/grunge-texture-website-2000x2851.webp");
}
.cid-uH9ghGT35m .mbr-text {
  color: #767676;
}
.cid-uH9ghGT35m .card-subtitle {
  margin: 0;
}
.cid-uH9ghGT35m img {
  object-fit: cover;
  height: 100%;
}
.cid-uH9ghGT35m h4 {
  margin: 0;
}
.cid-uH9ghGT35m .card-img {
  height: 300px;
}
.cid-uH9ghGT35m .row {
  justify-content: center;
}
.cid-uH9ghGT35m .card {
  margin-bottom: 2rem;
}
.cid-uH9ghGT35m .mbr-text,
.cid-uH9ghGT35m .link {
  color: #efefef;
  text-align: left;
}
.cid-uH9ghGT35m h3 .card-title,
.cid-uH9ghGT35m .card-img {
  text-align: left;
  color: #ffcc00;
}
.cid-uH9ghGT35m .mbr-section-subtitle,
.cid-uH9ghGT35m .title-align {
  color: #ffcc00;
}
.cid-uH9ghGT35m H1 {
  color: #efefef;
}
.cid-uH9ghGT35m .card-title,
.cid-uH9ghGT35m .card-img {
  color: #ffcc00;
}
.cid-vgO8OelWWs {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgO8OelWWs .mbr-text,
.cid-vgO8OelWWs .img-align {
  color: #efefef;
  text-align: center;
}
.cid-vgO8OelWWs H2 {
  color: #efefef;
}
.cid-uH9lEmMKoG {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/grunge-texture-website-2000x2851.webp");
}
.cid-uH9lEmMKoG .mbr-text {
  color: #767676;
}
.cid-uH9lEmMKoG .card-subtitle {
  margin: 0;
}
.cid-uH9lEmMKoG img {
  object-fit: cover;
  height: 100%;
}
.cid-uH9lEmMKoG h4 {
  margin: 0;
}
.cid-uH9lEmMKoG .card-img {
  height: 300px;
}
.cid-uH9lEmMKoG .row {
  justify-content: center;
}
.cid-uH9lEmMKoG .card {
  margin-bottom: 2rem;
}
.cid-uH9lEmMKoG .mbr-text,
.cid-uH9lEmMKoG .link {
  color: #efefef;
  text-align: left;
}
.cid-uH9lEmMKoG h3 .card-title,
.cid-uH9lEmMKoG .card-img {
  text-align: left;
}
.cid-uH9lEmMKoG .mbr-section-subtitle,
.cid-uH9lEmMKoG .title-align {
  color: #ffcc00;
}
.cid-uH9lEmMKoG .card-title,
.cid-uH9lEmMKoG .card-img {
  color: #ffcc00;
}
.cid-uPDEnAsxVL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uPDEnAsxVL H2 {
  color: #ffcc00;
}
.cid-uPDEgD5ZQe {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/grunge-texture-website-2000x2851.webp");
}
.cid-uPDEgD5ZQe h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-uPDEgD5ZQe h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-uPDEgD5ZQe .box {
  background-image: url("../../../assets/images/glowin-official-yt-tmbnl-2000x1125.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPDEgD5ZQe .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uPDEgD5ZQe .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-uPDEgD5ZQe .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uPDEgD5ZQe .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uPDEgD5ZQe .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uPDEgD5ZQe .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uPDEgD5ZQe .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uPDEgD5ZQe .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uPDEgD5ZQe a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uPDEgD5ZQe a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uPDEgD5ZQe .box {
    height: 250px;
  }
}
.cid-uPDEgD5ZQe H1 {
  color: #ffcc00;
}
.cid-v6Oxczf1lX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-v6Oxczf1lX H2 {
  color: #ffffff;
}
.cid-uKnF0N221T {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/grunge-texture-website-2000x2851.webp");
}
.cid-uKnF0N221T h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-uKnF0N221T h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-uKnF0N221T .box {
  background-image: url("../../../assets/images/matchstick-tmbnl-yt-2000x1125.webp");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKnF0N221T .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uKnF0N221T .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-uKnF0N221T .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uKnF0N221T .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uKnF0N221T .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uKnF0N221T .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKnF0N221T .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKnF0N221T .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKnF0N221T a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKnF0N221T a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uKnF0N221T .box {
    height: 250px;
  }
}
.cid-uKnF0N221T H1 {
  color: #ffcc00;
}
.cid-t12H8Ox8uW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vgleApStWI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ufo-sticker-1.webp");
}
.cid-vgleApStWI .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-vgleApStWI .col-lg-3,
.cid-vgleApStWI .col-lg-6 {
  padding: 0!important;
}
.cid-vgleApStWI .btn {
  border-radius: 30px;
}
.cid-vgleApStWI .card-wrapper {
  min-height: 700px;
  border-right: 1px solid white;
}
.cid-vgleApStWI .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-vgleApStWI .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-vgleApStWI .wrapper {
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-vgleApStWI .image-element:hover .wrapper {
    padding-top: 0;
  }
  .cid-vgleApStWI .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.9s;
    opacity: 1;
    max-height: 999px;
  }
  .cid-vgleApStWI .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    background: transparent;
  }
  .cid-vgleApStWI .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.3s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .cid-vgleApStWI .card-title,
  .cid-vgleApStWI .underline,
  .cid-vgleApStWI .mbr-text,
  .cid-vgleApStWI .mbr-section-btn,
  .cid-vgleApStWI .mbr-section-subtitle,
  .cid-vgleApStWI .mbr-section-title {
    text-align: center !important;
  }
  .cid-vgleApStWI .card-wrapper {
    align-items: center;
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid white;
  }
}
.cid-vgleApStWI .mbr-section-title {
  text-align: left;
}
.cid-vgleApStWI .mbr-section-title,
.cid-vgleApStWI .underline {
  text-align: center;
}
.cid-vgleApStWI H4 {
  color: #e1201d;
}
.cid-vgleApStWI H3 {
  color: #ffcc00;
}
.cid-t7xWsCohGW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-t7xWsCohGW H2 {
  color: #ffcc00;
}
.cid-t7xWsCohGW .mbr-text,
.cid-t7xWsCohGW .img-align {
  color: #167e85;
}
.cid-uDcARWYhob {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-uDcARWYhob .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uDcARWYhob .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-uDcARWYhob .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-uDcARWYhob .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-uDcARWYhob .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDcARWYhob .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDcARWYhob .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDcARWYhob .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDcARWYhob .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uDcARWYhob .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-uDcARWYhob .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uDcARWYhob .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uDcARWYhob .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDcARWYhob .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDcARWYhob .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDcARWYhob .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sKyTnLmKVN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sKyTnLmKVN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sKyTnLmKVN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sKyTnLmKVN .nav-link {
  position: relative;
}
.cid-sKyTnLmKVN .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sKyTnLmKVN .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sKyTnLmKVN .container {
  display: flex;
  margin: auto;
}
.cid-sKyTnLmKVN .navbar.navbar-short .nav-link,
.cid-sKyTnLmKVN .navbar.navbar-short .navbar-caption,
.cid-sKyTnLmKVN .navbar.navbar-short .mbr-iconfont,
.cid-sKyTnLmKVN .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sKyTnLmKVN .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sKyTnLmKVN .navbar-caption {
  padding-right: 3rem;
}
.cid-sKyTnLmKVN .dropdown-menu,
.cid-sKyTnLmKVN .navbar.opened {
  background: #bc133e !important;
}
.cid-sKyTnLmKVN .nav-item:focus,
.cid-sKyTnLmKVN .nav-link:focus {
  outline: none;
}
.cid-sKyTnLmKVN .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-sKyTnLmKVN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sKyTnLmKVN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sKyTnLmKVN .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-sKyTnLmKVN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sKyTnLmKVN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sKyTnLmKVN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-sKyTnLmKVN .navbar.opened {
  transition: all .3s;
}
.cid-sKyTnLmKVN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sKyTnLmKVN .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sKyTnLmKVN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sKyTnLmKVN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sKyTnLmKVN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sKyTnLmKVN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sKyTnLmKVN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sKyTnLmKVN .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-sKyTnLmKVN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sKyTnLmKVN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sKyTnLmKVN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sKyTnLmKVN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sKyTnLmKVN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sKyTnLmKVN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sKyTnLmKVN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sKyTnLmKVN .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: 55%;
  }
  .cid-sKyTnLmKVN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sKyTnLmKVN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sKyTnLmKVN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sKyTnLmKVN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sKyTnLmKVN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sKyTnLmKVN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sKyTnLmKVN .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-sKyTnLmKVN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sKyTnLmKVN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sKyTnLmKVN .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sKyTnLmKVN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sKyTnLmKVN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sKyTnLmKVN .dropdown-item.active,
.cid-sKyTnLmKVN .dropdown-item:active {
  background-color: transparent;
}
.cid-sKyTnLmKVN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sKyTnLmKVN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sKyTnLmKVN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sKyTnLmKVN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-sKyTnLmKVN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sKyTnLmKVN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sKyTnLmKVN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sKyTnLmKVN .navbar-buttons {
  text-align: center;
}
.cid-sKyTnLmKVN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sKyTnLmKVN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sKyTnLmKVN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sKyTnLmKVN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyTnLmKVN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sKyTnLmKVN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sKyTnLmKVN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyTnLmKVN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sKyTnLmKVN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sKyTnLmKVN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sKyTnLmKVN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sKyTnLmKVN a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKyTnLmKVN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sKyTnLmKVN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sKyTnLmKVN .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sKyTnLmKVN .navbar {
    height: 77px;
  }
  .cid-sKyTnLmKVN .navbar.opened {
    height: auto;
  }
  .cid-sKyTnLmKVN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMVGAHrImz {
  padding-top: 120px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/20240430-stansbury-taliakeys-1169-2-1600x1067.webp");
}
.cid-rMVGAHrImz h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-rMVGAHrImz span {
  background-image: url("../../../assets/images/background2.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-rMVGAHrImz .mbr-section-title {
  color: #ffffff;
}
.cid-t1IF7INA0h {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-t1IF7INA0h h3 .signature {
  filter: invert(0.8);
  display: inline-block;
  width: auto;
}
.cid-t1IF7INA0h .mbr-text,
.cid-t1IF7INA0h .img-align {
  color: #000000;
}
.cid-t1IF7INA0h H1 {
  color: #000000;
}
.cid-t1IF7INA0h H2 {
  color: #000000;
}
.cid-rWDKw70Yhw {
  padding-top: 90px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/talia-script-white-6.webp");
}
@media (min-width: 992px) {
  .cid-rWDKw70Yhw .display-1 {
    letter-spacing: -6px;
  }
}
.cid-rWDKw70Yhw p {
  margin: 0;
}
.cid-rWDKw70Yhw .display-1 {
  line-height: 1;
}
.cid-rWDKw70Yhw .mbr-text,
.cid-rWDKw70Yhw .img-align {
  color: #073b4c;
}
.cid-u2eGj0D7Ip {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/grunge-texture-website300-2000x2851.webp");
}
.cid-u2eGj0D7Ip .foot-menu {
  display: flex;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-u2eGj0D7Ip .foot-menu li {
  padding-right: 1.8rem;
  width: fit-content;
}
.cid-u2eGj0D7Ip .foot-menu li p {
  margin: 0;
}
.cid-u2eGj0D7Ip .text-warning:hover {
  color: #167e85 !important;
}
.cid-u2eGj0D7Ip .first {
  list-style: none;
}
.cid-u2eGj0D7Ip img {
  height: 600px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}
.cid-u2eGj0D7Ip .mbr-figure {
  height: 100%;
}
.cid-u2eGj0D7Ip H3 {
  color: #808080;
}
@media (max-width: 767px) {
  .cid-u2eGj0D7Ip img {
    height: auto;
    object-fit: cover;
  }
  .cid-u2eGj0D7Ip .foot-menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .cid-u2eGj0D7Ip .foot-menu li {
    padding-right: 0rem;
  }
  .cid-u2eGj0D7Ip .first {
    list-style: inherit;
  }
}
.cid-u2eGj0D7Ip H1 {
  text-align: center;
  color: #ffffff;
}
.cid-tmPMVdtZ05 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tmPMVdtZ05 .mbr-text {
    text-align: center;
  }
}
.cid-tmPMVdtZ05 .container-fluid {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-tmPMVdtZ05 .media-content {
    max-width: 650px;
    padding: 5rem 2rem;
    margin: auto;
  }
}
.cid-tmPMVdtZ05 .media-content {
  padding: 5rem 2rem;
}
.cid-tmPMVdtZ05 img {
  height: 100%;
  object-fit: cover;
}
.cid-tmPMVdtZ05 .mbr-figure {
  height: 100%;
}
.cid-tmPMVdtZ05 .col-lg-5,
.cid-tmPMVdtZ05 .col-lg-7 {
  padding: 0;
}
.cid-tmPMVdtZ05 .row {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tmPMVdtZ05 .media-content {
    padding: 3rem 1rem;
  }
}
.cid-tmPMVdtZ05 P {
  color: #000000;
}
.cid-tmPMVdtZ05 H2 {
  color: #000000;
}
.cid-tmPMVdtZ05 H1 {
  color: #000000;
}
.cid-tmPMVdtZ05 .mbr-text,
.cid-tmPMVdtZ05 .mbr-section-btn {
  color: #000000;
}
.cid-tmPMVdtZ05 H3 {
  color: #ffffff;
}
.cid-tmPMZQswDs {
  padding-top: 45px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/grunge-texture-website300-2000x2851.webp");
}
.cid-tmPMZQswDs .card-subtitle {
  margin: 0;
}
.cid-tmPMZQswDs .row {
  padding: 0 0.5rem;
  justify-content: center;
}
.cid-tmPMZQswDs .card {
  padding: 0.5rem;
}
.cid-tmPMZQswDs img {
  object-fit: cover;
  height: 100%;
}
.cid-tmPMZQswDs h4 {
  margin: 0;
}
.cid-tmPMZQswDs .card-img {
  height: 550px;
}
.cid-tmPMZQswDs h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-tmPMZQswDs h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 0px;
  height: 0px;
  background: currentColor;
}
@media (max-width: 992px) {
  .cid-tmPMZQswDs .card-img {
    height: 350px;
  }
}
.cid-tmPMZQswDs H1 {
  color: #ffffff;
}
.cid-tmPMZQswDs .mbr-section-subtitle,
.cid-tmPMZQswDs .title-align {
  color: #ffffff;
}
.cid-tmPMZQswDs .mbr-text,
.cid-tmPMZQswDs .link {
  color: #0a52de;
}
.cid-tmPMZQswDs .card-title,
.cid-tmPMZQswDs .card-img {
  color: #ffffff;
  text-align: center;
}
.cid-uFh48ORXYT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ufo-sticker-1.webp");
}
.cid-uFh48ORXYT .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-uFh48ORXYT .col-lg-3,
.cid-uFh48ORXYT .col-lg-6 {
  padding: 0!important;
}
.cid-uFh48ORXYT .btn {
  border-radius: 30px;
}
.cid-uFh48ORXYT .card-wrapper {
  min-height: 700px;
  border-right: 1px solid white;
}
.cid-uFh48ORXYT .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-uFh48ORXYT .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uFh48ORXYT .wrapper {
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-uFh48ORXYT .image-element:hover .wrapper {
    padding-top: 0;
  }
  .cid-uFh48ORXYT .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.9s;
    opacity: 1;
    max-height: 999px;
  }
  .cid-uFh48ORXYT .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    background: transparent;
  }
  .cid-uFh48ORXYT .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.3s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .cid-uFh48ORXYT .card-title,
  .cid-uFh48ORXYT .underline,
  .cid-uFh48ORXYT .mbr-text,
  .cid-uFh48ORXYT .mbr-section-btn,
  .cid-uFh48ORXYT .mbr-section-subtitle,
  .cid-uFh48ORXYT .mbr-section-title {
    text-align: center !important;
  }
  .cid-uFh48ORXYT .card-wrapper {
    align-items: center;
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid white;
  }
}
.cid-uFh48ORXYT .mbr-section-title {
  text-align: left;
}
.cid-uFh48ORXYT .mbr-section-title,
.cid-uFh48ORXYT .underline {
  text-align: center;
}
.cid-uFh48ORXYT H4 {
  color: #e1201d;
}
.cid-uFh48ORXYT H3 {
  color: #ffcc00;
}
.cid-tmVJVQhnnq {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uDcARWYhob {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-uDcARWYhob .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uDcARWYhob .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-uDcARWYhob .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-uDcARWYhob .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-uDcARWYhob .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDcARWYhob .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDcARWYhob .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDcARWYhob .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDcARWYhob .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uDcARWYhob .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-uDcARWYhob .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uDcARWYhob .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uDcARWYhob .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDcARWYhob .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDcARWYhob .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDcARWYhob .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v2nutCLeP1 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v2nutCLeP1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-v2nutCLeP1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2nutCLeP1 .nav-link {
  position: relative;
}
.cid-v2nutCLeP1 .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-v2nutCLeP1 .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-v2nutCLeP1 .container {
  display: flex;
  margin: auto;
}
.cid-v2nutCLeP1 .navbar.navbar-short .nav-link,
.cid-v2nutCLeP1 .navbar.navbar-short .navbar-caption,
.cid-v2nutCLeP1 .navbar.navbar-short .mbr-iconfont,
.cid-v2nutCLeP1 .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-v2nutCLeP1 .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-v2nutCLeP1 .navbar-caption {
  padding-right: 3rem;
}
.cid-v2nutCLeP1 .dropdown-menu,
.cid-v2nutCLeP1 .navbar.opened {
  background: #bc133e !important;
}
.cid-v2nutCLeP1 .nav-item:focus,
.cid-v2nutCLeP1 .nav-link:focus {
  outline: none;
}
.cid-v2nutCLeP1 .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-v2nutCLeP1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2nutCLeP1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v2nutCLeP1 .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-v2nutCLeP1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2nutCLeP1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2nutCLeP1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-v2nutCLeP1 .navbar.opened {
  transition: all .3s;
}
.cid-v2nutCLeP1 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-v2nutCLeP1 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v2nutCLeP1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2nutCLeP1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2nutCLeP1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-v2nutCLeP1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2nutCLeP1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2nutCLeP1 .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-v2nutCLeP1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2nutCLeP1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-v2nutCLeP1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-v2nutCLeP1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2nutCLeP1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2nutCLeP1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2nutCLeP1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2nutCLeP1 .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: 55%;
  }
  .cid-v2nutCLeP1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-v2nutCLeP1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2nutCLeP1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2nutCLeP1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2nutCLeP1 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-v2nutCLeP1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-v2nutCLeP1 .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-v2nutCLeP1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v2nutCLeP1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v2nutCLeP1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2nutCLeP1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2nutCLeP1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2nutCLeP1 .dropdown-item.active,
.cid-v2nutCLeP1 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2nutCLeP1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2nutCLeP1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2nutCLeP1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2nutCLeP1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-v2nutCLeP1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2nutCLeP1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2nutCLeP1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v2nutCLeP1 .navbar-buttons {
  text-align: center;
}
.cid-v2nutCLeP1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v2nutCLeP1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2nutCLeP1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v2nutCLeP1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v2nutCLeP1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v2nutCLeP1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v2nutCLeP1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v2nutCLeP1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v2nutCLeP1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v2nutCLeP1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v2nutCLeP1 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-v2nutCLeP1 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2nutCLeP1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-v2nutCLeP1 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-v2nutCLeP1 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v2nutCLeP1 .navbar {
    height: 77px;
  }
  .cid-v2nutCLeP1 .navbar.opened {
    height: auto;
  }
  .cid-v2nutCLeP1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vgOkAlaWsh {
  padding-top: 105px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-vgOkAlaWsh h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-vgOkAlaWsh span {
  background-image: url("../../../assets/images/background2-1.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-vgOkAlaWsh .mbr-section-title {
  color: #ffffff;
}
.cid-v2nwzUvax3 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vglcR7pM7N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-v2nutDy3Fw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ufo-sticker-1.webp");
}
.cid-v2nutDy3Fw .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-v2nutDy3Fw .col-lg-3,
.cid-v2nutDy3Fw .col-lg-6 {
  padding: 0!important;
}
.cid-v2nutDy3Fw .btn {
  border-radius: 30px;
}
.cid-v2nutDy3Fw .card-wrapper {
  min-height: 700px;
  border-right: 1px solid white;
}
.cid-v2nutDy3Fw .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-v2nutDy3Fw .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v2nutDy3Fw .wrapper {
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-v2nutDy3Fw .image-element:hover .wrapper {
    padding-top: 0;
  }
  .cid-v2nutDy3Fw .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.9s;
    opacity: 1;
    max-height: 999px;
  }
  .cid-v2nutDy3Fw .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    background: transparent;
  }
  .cid-v2nutDy3Fw .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.3s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .cid-v2nutDy3Fw .card-title,
  .cid-v2nutDy3Fw .underline,
  .cid-v2nutDy3Fw .mbr-text,
  .cid-v2nutDy3Fw .mbr-section-btn,
  .cid-v2nutDy3Fw .mbr-section-subtitle,
  .cid-v2nutDy3Fw .mbr-section-title {
    text-align: center !important;
  }
  .cid-v2nutDy3Fw .card-wrapper {
    align-items: center;
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid white;
  }
}
.cid-v2nutDy3Fw .mbr-section-title {
  text-align: left;
}
.cid-v2nutDy3Fw .mbr-section-title,
.cid-v2nutDy3Fw .underline {
  text-align: center;
}
.cid-v2nutDy3Fw H4 {
  color: #e1201d;
}
.cid-v2nutDy3Fw H3 {
  color: #ffcc00;
}
.cid-v2nutDLedi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
@media (min-width: 992px) {
  .cid-v2nutDLedi .display-1 {
    letter-spacing: -6px;
  }
}
.cid-v2nutDLedi p {
  margin: 0;
}
.cid-v2nutDLedi .display-1 {
  line-height: 1;
}
.cid-v2nutDLedi H1 {
  color: #ffcc00;
}
.cid-v2nutDXlfS {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-v2nutDXlfS .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-v2nutDXlfS .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-v2nutDXlfS .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-v2nutDXlfS .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-v2nutDXlfS .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2nutDXlfS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v2nutDXlfS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v2nutDXlfS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v2nutDXlfS .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v2nutDXlfS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-v2nutDXlfS .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-v2nutDXlfS .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v2nutDXlfS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v2nutDXlfS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v2nutDXlfS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v2nutDXlfS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v2nxIm87bH .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v2nxIm87bH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-v2nxIm87bH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2nxIm87bH .nav-link {
  position: relative;
}
.cid-v2nxIm87bH .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-v2nxIm87bH .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-v2nxIm87bH .container {
  display: flex;
  margin: auto;
}
.cid-v2nxIm87bH .navbar.navbar-short .nav-link,
.cid-v2nxIm87bH .navbar.navbar-short .navbar-caption,
.cid-v2nxIm87bH .navbar.navbar-short .mbr-iconfont,
.cid-v2nxIm87bH .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-v2nxIm87bH .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-v2nxIm87bH .navbar-caption {
  padding-right: 3rem;
}
.cid-v2nxIm87bH .dropdown-menu,
.cid-v2nxIm87bH .navbar.opened {
  background: #bc133e !important;
}
.cid-v2nxIm87bH .nav-item:focus,
.cid-v2nxIm87bH .nav-link:focus {
  outline: none;
}
.cid-v2nxIm87bH .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-v2nxIm87bH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2nxIm87bH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v2nxIm87bH .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-v2nxIm87bH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2nxIm87bH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2nxIm87bH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #d4750d;
  background: none;
}
.cid-v2nxIm87bH .navbar.opened {
  transition: all .3s;
}
.cid-v2nxIm87bH .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-v2nxIm87bH .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v2nxIm87bH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2nxIm87bH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2nxIm87bH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-v2nxIm87bH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2nxIm87bH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2nxIm87bH .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-v2nxIm87bH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2nxIm87bH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-v2nxIm87bH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-v2nxIm87bH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2nxIm87bH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2nxIm87bH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2nxIm87bH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2nxIm87bH .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: 55%;
  }
  .cid-v2nxIm87bH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-v2nxIm87bH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2nxIm87bH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2nxIm87bH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2nxIm87bH .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-v2nxIm87bH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-v2nxIm87bH .navbar.navbar-short {
  background: #d4750d !important;
  min-height: 60px;
}
.cid-v2nxIm87bH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v2nxIm87bH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v2nxIm87bH .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2nxIm87bH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2nxIm87bH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2nxIm87bH .dropdown-item.active,
.cid-v2nxIm87bH .dropdown-item:active {
  background-color: transparent;
}
.cid-v2nxIm87bH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2nxIm87bH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2nxIm87bH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2nxIm87bH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4750d;
}
.cid-v2nxIm87bH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2nxIm87bH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2nxIm87bH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v2nxIm87bH .navbar-buttons {
  text-align: center;
}
.cid-v2nxIm87bH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v2nxIm87bH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2nxIm87bH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v2nxIm87bH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v2nxIm87bH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v2nxIm87bH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v2nxIm87bH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v2nxIm87bH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v2nxIm87bH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v2nxIm87bH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v2nxIm87bH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-v2nxIm87bH a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2nxIm87bH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-v2nxIm87bH .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-v2nxIm87bH .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v2nxIm87bH .navbar {
    height: 77px;
  }
  .cid-v2nxIm87bH .navbar.opened {
    height: auto;
  }
  .cid-v2nxIm87bH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vgOkOCi0eL {
  padding-top: 105px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
.cid-vgOkOCi0eL h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-vgOkOCi0eL span {
  background-image: url("../../../assets/images/background2-1.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-vgOkOCi0eL .mbr-section-title {
  color: #ffffff;
}
.cid-v2nyyIU2cg {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vglbSMVJ4Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-v2nxIn3Gsz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ufo-sticker-1.webp");
}
.cid-v2nxIn3Gsz .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-v2nxIn3Gsz .col-lg-3,
.cid-v2nxIn3Gsz .col-lg-6 {
  padding: 0!important;
}
.cid-v2nxIn3Gsz .btn {
  border-radius: 30px;
}
.cid-v2nxIn3Gsz .card-wrapper {
  min-height: 700px;
  border-right: 1px solid white;
}
.cid-v2nxIn3Gsz .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-v2nxIn3Gsz .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v2nxIn3Gsz .wrapper {
  padding: 2rem;
}
@media (min-width: 992px) {
  .cid-v2nxIn3Gsz .image-element:hover .wrapper {
    padding-top: 0;
  }
  .cid-v2nxIn3Gsz .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.9s;
    opacity: 1;
    max-height: 999px;
  }
  .cid-v2nxIn3Gsz .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    background: transparent;
  }
  .cid-v2nxIn3Gsz .wrapper .collapsed-content {
    transition: opacity 0.3s, max-height 0.3s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .cid-v2nxIn3Gsz .card-title,
  .cid-v2nxIn3Gsz .underline,
  .cid-v2nxIn3Gsz .mbr-text,
  .cid-v2nxIn3Gsz .mbr-section-btn,
  .cid-v2nxIn3Gsz .mbr-section-subtitle,
  .cid-v2nxIn3Gsz .mbr-section-title {
    text-align: center !important;
  }
  .cid-v2nxIn3Gsz .card-wrapper {
    align-items: center;
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid white;
  }
}
.cid-v2nxIn3Gsz .mbr-section-title {
  text-align: left;
}
.cid-v2nxIn3Gsz .mbr-section-title,
.cid-v2nxIn3Gsz .underline {
  text-align: center;
}
.cid-v2nxIn3Gsz H4 {
  color: #e1201d;
}
.cid-v2nxIn3Gsz H3 {
  color: #ffcc00;
}
.cid-v2nxInhBYw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/grunge-texture-website-150-1223x1743.webp");
}
@media (min-width: 992px) {
  .cid-v2nxInhBYw .display-1 {
    letter-spacing: -6px;
  }
}
.cid-v2nxInhBYw p {
  margin: 0;
}
.cid-v2nxInhBYw .display-1 {
  line-height: 1;
}
.cid-v2nxInhBYw H1 {
  color: #ffcc00;
}
.cid-v2nxInsAtS {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tk-fromtheashes-sqr-lowres-1-1688x1840.webp");
}
.cid-v2nxInsAtS .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
@keyframes size {
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cid-v2nxInsAtS .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2rem;
}
.cid-v2nxInsAtS .soc-item {
  background: transparent;
  width: 45px;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-v2nxInsAtS .soc-item:hover {
  background: #fb6e0f;
  animation-duration: 0.3s;
  animation-name: size;
}
.cid-v2nxInsAtS .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2nxInsAtS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v2nxInsAtS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v2nxInsAtS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v2nxInsAtS .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v2nxInsAtS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-v2nxInsAtS .media-container-row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-v2nxInsAtS .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v2nxInsAtS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v2nxInsAtS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v2nxInsAtS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v2nxInsAtS .media-container-row .row-copirayt p {
  width: 100%;
}
