body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #365c9a !important;
}
.bg-success {
  background-color: #4289a7 !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #ffd617 !important;
}
.bg-danger {
  background-color: #50c227 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #4289a7 !important;
  border-color: #4289a7 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #ffd617 !important;
  border-color: #ffd617 !important;
  color: #171300 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #171300 !important;
  background-color: #c9a600 !important;
  border-color: #c9a600 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #171300 !important;
  background-color: #c9a600 !important;
  border-color: #c9a600 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #50c227 !important;
  border-color: #50c227 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #36821a !important;
  border-color: #36821a !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #36821a !important;
  border-color: #36821a !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #254d5e;
  color: #254d5e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #4289a7;
  border-color: #4289a7;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #4289a7 !important;
  border-color: #4289a7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #b09100;
  color: #b09100 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #171300 !important;
  background-color: #ffd617;
  border-color: #ffd617;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #171300 !important;
  background-color: #ffd617 !important;
  border-color: #ffd617 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #2d6d16;
  color: #2d6d16 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #50c227;
  border-color: #50c227;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #50c227 !important;
  border-color: #50c227 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #365c9a !important;
}
.text-secondary {
  color: #365c9a !important;
}
.text-success {
  color: #4289a7 !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #ffd617 !important;
}
.text-danger {
  color: #50c227 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1c2f4e !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #1c2f4e !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #254d5e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b09100 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #2d6d16 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #4289a7;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #ffd617;
}
.alert-danger {
  background-color: #50c227;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #365c9a;
  border-color: #365c9a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #365c9a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #94c1d5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fffae3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #9de683;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
blockquote {
  border-color: #365c9a;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #365c9a;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #365c9a;
  border-bottom-color: #365c9a;
}
.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: #365c9a !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: #365c9a !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23365c9a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-soy6IN0O4x {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9b0d00;
}
.cid-soy6IN0O4x .mbr-section-title {
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}
.cid-soy6IN0O4x .block__left {
  margin-bottom: 50px;
}
.cid-soy6IN0O4x .text__left {
  margin-top: 85px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}
.cid-soy6IN0O4x .image img {
  max-width: 95%;
  border-radius: 20px;
  object-fit: cover;
}
.cid-soy6IN0O4x .title__right {
  margin-bottom: 15px;
}
.cid-soy6IN0O4x .mbr-text {
  margin-bottom: 0;
  color: #000000;
}
.cid-soy6IN0O4x .item__right {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-soy6IN0O4x .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-soy6IN0O4x .text__left {
    margin-top: 0;
  }
  .cid-soy6IN0O4x .item__right {
    margin-bottom: 0;
    margin-top: 50px;
  }
  .cid-soy6IN0O4x .image img {
    max-width: 100%;
    width: 100%;
    border-radius: 0px;
  }
  .cid-soy6IN0O4x .container {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-soy6IN0O4x .block__left {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cid-tbLpI5gN51 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tbLpI5gN51 .mbr-section-title {
  text-align: center;
}
#custom-html-2z {
  /* Type valid CSS here */
}
#custom-html-2z div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2z p {
  font-size: 60px;
  color: #777;
}
.cid-sF3Wc1UhcP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-sF3Wc1UhcP .mbr-section-subtitle {
  color: #767676;
}
.cid-sF3Wc1UhcP .mbr-section-title {
  color: #ffffff;
}
.cid-tXCCD4r5ya {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tXCCD4r5ya .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
#custom-html-2o {
  /* Type valid CSS here */
}
#custom-html-2o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2o p {
  font-size: 60px;
  color: #777;
}
.cid-tYNLbIQOtX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tYNLbIQOtX .card {
  display: block;
  position: relative;
}
.cid-tYNLbIQOtX .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tYNLbIQOtX .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tYNLbIQOtX .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tYNLbIQOtX .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tYNLbIQOtX .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tYNLbIQOtX .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tYNLbIQOtX .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tYNLbIQOtX .mbr-card-text,
.cid-tYNLbIQOtX .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-tYNLbIQOtX .mbr-title DIV {
  text-align: center;
}
.cid-tYNLbIQOtX .mbr-title {
  text-align: center;
}
.cid-tYNLbIQOtX .mbr-section-title {
  text-align: center;
}
.cid-tbvvXgvKK9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbvvXgvKK9 img,
.cid-tbvvXgvKK9 .item-img {
  width: 100%;
}
.cid-tbvvXgvKK9 .item:focus,
.cid-tbvvXgvKK9 span:focus {
  outline: none;
}
.cid-tbvvXgvKK9 .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tbvvXgvKK9 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tbvvXgvKK9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tbvvXgvKK9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tbvvXgvKK9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tbvvXgvKK9 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tXp5PInqLx {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXp5PInqLx .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-so1e9vr8I7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-so1e9vr8I7 .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-so1e9vr8I7 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-so1e9vr8I7 .mbr-section-subtitle {
  color: #767676;
}
.cid-so1e9vr8I7 .panel-group {
  width: 100%;
}
.cid-so1e9vr8I7 .panel-text {
  color: #000000;
  text-align: left;
}
.cid-so1e9vr8I7 .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-so1e9vr8I7 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-so1e9vr8I7 .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f7f7f7;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-so1e9vr8I7 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-so1e9vr8I7 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-so1e9vr8I7 .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-so1e9vr8I7 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-so1e9vr8I7 .card .panel-body {
  background: #ffffff;
}
.cid-so1e9vr8I7 .sign {
  color: #232323;
}
.cid-tbM4JTW0iO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tbM4JTW0iO .mbr-section-title {
  text-align: center;
}
.cid-tXp9QyPMM3 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXp9QyPMM3 .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-so1r0hFUE0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-so1r0hFUE0 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-so1r0hFUE0 .mbr-section-btn,
  .cid-so1r0hFUE0 .mbr-section-subtitle,
  .cid-so1r0hFUE0 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-so1r0hFUE0 .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-so1sa4EZzX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-so1sa4EZzX .nav-tabs .nav-item.open .nav-link:focus,
.cid-so1sa4EZzX .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-so1sa4EZzX .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #9b0d00;
}
@media (max-width: 767px) {
  .cid-so1sa4EZzX .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-so1sa4EZzX .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-so1sa4EZzX .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-so1sa4EZzX .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-so1sa4EZzX .nav-link,
.cid-so1sa4EZzX .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-so1sa4EZzX .nav-tabs .nav-link.active {
  color: #9b0d00;
  border-bottom: 3px solid #9b0d00;
}
.cid-so1sa4EZzX H4 {
  text-align: center;
}
.cid-so1sa4EZzX H3 {
  text-align: center;
}
.cid-tmCrUfHQod {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tmCrUfHQod .mbr-section-title {
  text-align: center;
}
.cid-qIjKmBgNqd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qIjKmBgNqd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qIjKmBgNqd .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-qIjMDc36tP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qIjMDc36tP .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qIjMDc36tP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qIjMDc36tP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qIjMDc36tP .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qIjMDc36tP .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #ca4336;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qIjMDc36tP .icon-transition span:hover {
  background-color: #acfde1;
}
.cid-qIjMDc36tP .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-qIjMDc36tP .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qIjMDc36tP .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qIjMDc36tP .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tXp5jCXeyz.popup-builder {
  background-color: #ffffff;
}
.cid-tXp5jCXeyz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tXp5jCXeyz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tXp5jCXeyz .modal-content,
.cid-tXp5jCXeyz .modal-dialog {
  height: auto;
}
.cid-tXp5jCXeyz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tXp5jCXeyz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tXp5jCXeyz .form-wrapper .mbr-form .form-group,
  .cid-tXp5jCXeyz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tXp5jCXeyz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tXp5jCXeyz .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXp5jCXeyz .mbr-text {
  text-align: center;
}
.cid-tXp5jCXeyz .pt-0 {
  padding-top: 0 !important;
}
.cid-tXp5jCXeyz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tXp5jCXeyz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tXp5jCXeyz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tXp5jCXeyz .modal-open {
  overflow: hidden;
}
.cid-tXp5jCXeyz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tXp5jCXeyz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tXp5jCXeyz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tXp5jCXeyz .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tXp5jCXeyz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tXp5jCXeyz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tXp5jCXeyz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tXp5jCXeyz .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tXp5jCXeyz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tXp5jCXeyz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tXp5jCXeyz .modal-backdrop.fade {
  opacity: 0;
}
.cid-tXp5jCXeyz .modal-backdrop.show {
  opacity: .5;
}
.cid-tXp5jCXeyz .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tXp5jCXeyz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tXp5jCXeyz .modal-header {
    padding: 1rem;
  }
}
.cid-tXp5jCXeyz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tXp5jCXeyz .modal-header .close svg {
  fill: #353535;
}
.cid-tXp5jCXeyz .modal-header .close:hover {
  opacity: 1;
}
.cid-tXp5jCXeyz .modal-header .close:focus {
  outline: none;
}
.cid-tXp5jCXeyz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tXp5jCXeyz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tXp5jCXeyz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXp5jCXeyz .modal-body {
    padding: 1rem;
  }
}
.cid-tXp5jCXeyz .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tXp5jCXeyz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXp5jCXeyz .modal-footer {
    padding: 1rem;
  }
}
.cid-tXp5jCXeyz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tXp5jCXeyz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tXp5jCXeyz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tXp5jCXeyz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tXp5jCXeyz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tXp5jCXeyz .modal-lg,
  .cid-tXp5jCXeyz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tXp5jCXeyz .modal-xl {
    max-width: 1140px;
  }
}
.cid-tXp5jCXeyz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tXp5jCXeyz .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tXp5jCXeyz .form-group {
  margin-bottom: 1rem;
}
.cid-tXp5jCXeyz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tXp5jCXeyz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tXp5jCXeyz .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tXp5jCXeyz .mbr-section-btn {
  margin: 0;
}
.cid-tXp5jCXeyz .mbr-section-btn .btn {
  margin: 0;
}
.cid-tXuxgDIolN.popup-builder {
  background-color: #ffffff;
}
.cid-tXuxgDIolN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tXuxgDIolN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tXuxgDIolN .modal-content,
.cid-tXuxgDIolN .modal-dialog {
  height: auto;
}
.cid-tXuxgDIolN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tXuxgDIolN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tXuxgDIolN .form-wrapper .mbr-form .form-group,
  .cid-tXuxgDIolN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tXuxgDIolN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tXuxgDIolN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXuxgDIolN .mbr-text {
  text-align: center;
}
.cid-tXuxgDIolN .pt-0 {
  padding-top: 0 !important;
}
.cid-tXuxgDIolN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tXuxgDIolN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tXuxgDIolN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tXuxgDIolN .modal-open {
  overflow: hidden;
}
.cid-tXuxgDIolN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tXuxgDIolN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tXuxgDIolN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tXuxgDIolN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tXuxgDIolN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tXuxgDIolN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tXuxgDIolN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tXuxgDIolN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tXuxgDIolN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tXuxgDIolN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tXuxgDIolN .modal-backdrop.fade {
  opacity: 0;
}
.cid-tXuxgDIolN .modal-backdrop.show {
  opacity: .5;
}
.cid-tXuxgDIolN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tXuxgDIolN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tXuxgDIolN .modal-header {
    padding: 1rem;
  }
}
.cid-tXuxgDIolN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tXuxgDIolN .modal-header .close svg {
  fill: #353535;
}
.cid-tXuxgDIolN .modal-header .close:hover {
  opacity: 1;
}
.cid-tXuxgDIolN .modal-header .close:focus {
  outline: none;
}
.cid-tXuxgDIolN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tXuxgDIolN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tXuxgDIolN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXuxgDIolN .modal-body {
    padding: 1rem;
  }
}
.cid-tXuxgDIolN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tXuxgDIolN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXuxgDIolN .modal-footer {
    padding: 1rem;
  }
}
.cid-tXuxgDIolN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tXuxgDIolN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tXuxgDIolN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tXuxgDIolN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tXuxgDIolN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tXuxgDIolN .modal-lg,
  .cid-tXuxgDIolN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tXuxgDIolN .modal-xl {
    max-width: 1140px;
  }
}
.cid-tXuxgDIolN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tXuxgDIolN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tXuxgDIolN .form-group {
  margin-bottom: 1rem;
}
.cid-tXuxgDIolN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tXuxgDIolN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tXuxgDIolN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tXuxgDIolN .mbr-section-btn {
  margin: 0;
}
.cid-tXuxgDIolN .mbr-section-btn .btn {
  margin: 0;
}
.cid-tXCBCiPrPN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9b0d00;
}
.cid-tXCBCiPrPN .mbr-section-title {
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}
.cid-tXCBCiPrPN .block__left {
  margin-bottom: 50px;
}
.cid-tXCBCiPrPN .text__left {
  margin-top: 85px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tXCBCiPrPN .image img {
  max-width: 95%;
  border-radius: 20px;
  object-fit: cover;
}
.cid-tXCBCiPrPN .title__right {
  margin-bottom: 15px;
}
.cid-tXCBCiPrPN .mbr-text {
  margin-bottom: 0;
  color: #000000;
}
.cid-tXCBCiPrPN .item__right {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-tXCBCiPrPN .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-tXCBCiPrPN .text__left {
    margin-top: 0;
  }
  .cid-tXCBCiPrPN .item__right {
    margin-bottom: 0;
    margin-top: 50px;
  }
  .cid-tXCBCiPrPN .image img {
    max-width: 100%;
    width: 100%;
    border-radius: 0px;
  }
  .cid-tXCBCiPrPN .container {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-tXCBCiPrPN .block__left {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cid-tXCBCjbRCB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tXCBCjbRCB .mbr-section-title {
  text-align: center;
}
#custom-html-39 {
  /* Type valid CSS here */
}
#custom-html-39 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-39 p {
  font-size: 60px;
  color: #777;
}
.cid-tXCBCjsKFd {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tXCBCjsKFd .mbr-section-subtitle {
  color: #767676;
}
.cid-tXCBCjsKFd .mbr-section-title {
  color: #ffffff;
}
.cid-tXCBCjDKXU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tXCBCjDKXU .mbr-section-title {
  text-align: center;
}
.cid-tXCBCjMd49 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXCBCjMd49 img,
.cid-tXCBCjMd49 .item-img {
  width: 100%;
}
.cid-tXCBCjMd49 .item:focus,
.cid-tXCBCjMd49 span:focus {
  outline: none;
}
.cid-tXCBCjMd49 .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tXCBCjMd49 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tXCBCjMd49 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXCBCjMd49 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tXCBCjMd49 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tXCBCjMd49 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tXCBCkeM6j {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXCBCkeM6j .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tXCBCkFs5P {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ff1600;
}
.cid-tXCBCkFs5P .mbr-section-subtitle {
  color: #767676;
}
.cid-tXCBCkFs5P .mbr-section-title {
  color: #ffffff;
}
#custom-html-3f {
  /* Type valid CSS here */
}
#custom-html-3f div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3f p {
  font-size: 60px;
  color: #777;
}
.cid-tXCBCliDgK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ff1600;
}
.cid-tXCBCliDgK .mbr-section-subtitle {
  color: #767676;
}
.cid-tXCBCliDgK .mbr-section-title {
  color: #ffffff;
}
.cid-tXCBClEdng {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXCBClEdng .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-tXCBClEdng .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tXCBClEdng .mbr-section-subtitle {
  color: #767676;
}
.cid-tXCBClEdng .panel-group {
  width: 100%;
}
.cid-tXCBClEdng .panel-text {
  color: #000000;
  text-align: left;
}
.cid-tXCBClEdng .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tXCBClEdng .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tXCBClEdng .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f7f7f7;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tXCBClEdng .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tXCBClEdng .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tXCBClEdng .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tXCBClEdng .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-tXCBClEdng .card .panel-body {
  background: #ffffff;
}
.cid-tXCBClEdng .sign {
  color: #232323;
}
.cid-tXCBCm28cr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXCBCm28cr .mbr-section-title {
  text-align: center;
}
.cid-tXCBCmbfzk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXCBCmbfzk .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tXCBCmmVxY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tXCBCmmVxY .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tXCBCmmVxY .mbr-section-btn,
  .cid-tXCBCmmVxY .mbr-section-subtitle,
  .cid-tXCBCmmVxY .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tXCBCmmVxY .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-tXCBCmAWL2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXCBCmAWL2 .nav-tabs .nav-item.open .nav-link:focus,
.cid-tXCBCmAWL2 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tXCBCmAWL2 .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #9b0d00;
}
@media (max-width: 767px) {
  .cid-tXCBCmAWL2 .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tXCBCmAWL2 .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tXCBCmAWL2 .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tXCBCmAWL2 .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tXCBCmAWL2 .nav-link,
.cid-tXCBCmAWL2 .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tXCBCmAWL2 .nav-tabs .nav-link.active {
  color: #9b0d00;
  border-bottom: 3px solid #9b0d00;
}
.cid-tXCBCmAWL2 H4 {
  text-align: center;
}
.cid-tXCBCmAWL2 H3 {
  text-align: center;
}
.cid-tXCBCmVQmb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXCBCmVQmb .mbr-section-title {
  text-align: center;
}
.cid-tXCBCngMcj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tXCBCngMcj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tXCBCngMcj .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tXCBCnxc8w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tXCBCnxc8w .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tXCBCnxc8w .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tXCBCnxc8w .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tXCBCnxc8w .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tXCBCnxc8w .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #ca4336;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tXCBCnxc8w .icon-transition span:hover {
  background-color: #acfde1;
}
.cid-tXCBCnxc8w .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tXCBCnxc8w .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tXCBCnxc8w .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tXCBCnxc8w .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tXCBCnPIZG.popup-builder {
  background-color: #ffffff;
}
.cid-tXCBCnPIZG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tXCBCnPIZG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tXCBCnPIZG .modal-content,
.cid-tXCBCnPIZG .modal-dialog {
  height: auto;
}
.cid-tXCBCnPIZG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tXCBCnPIZG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tXCBCnPIZG .form-wrapper .mbr-form .form-group,
  .cid-tXCBCnPIZG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tXCBCnPIZG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tXCBCnPIZG .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXCBCnPIZG .mbr-text {
  text-align: center;
}
.cid-tXCBCnPIZG .pt-0 {
  padding-top: 0 !important;
}
.cid-tXCBCnPIZG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tXCBCnPIZG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tXCBCnPIZG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tXCBCnPIZG .modal-open {
  overflow: hidden;
}
.cid-tXCBCnPIZG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tXCBCnPIZG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tXCBCnPIZG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tXCBCnPIZG .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tXCBCnPIZG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tXCBCnPIZG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tXCBCnPIZG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tXCBCnPIZG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tXCBCnPIZG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tXCBCnPIZG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tXCBCnPIZG .modal-backdrop.fade {
  opacity: 0;
}
.cid-tXCBCnPIZG .modal-backdrop.show {
  opacity: .5;
}
.cid-tXCBCnPIZG .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tXCBCnPIZG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tXCBCnPIZG .modal-header {
    padding: 1rem;
  }
}
.cid-tXCBCnPIZG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tXCBCnPIZG .modal-header .close svg {
  fill: #353535;
}
.cid-tXCBCnPIZG .modal-header .close:hover {
  opacity: 1;
}
.cid-tXCBCnPIZG .modal-header .close:focus {
  outline: none;
}
.cid-tXCBCnPIZG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tXCBCnPIZG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tXCBCnPIZG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXCBCnPIZG .modal-body {
    padding: 1rem;
  }
}
.cid-tXCBCnPIZG .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tXCBCnPIZG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXCBCnPIZG .modal-footer {
    padding: 1rem;
  }
}
.cid-tXCBCnPIZG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tXCBCnPIZG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tXCBCnPIZG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tXCBCnPIZG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tXCBCnPIZG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tXCBCnPIZG .modal-lg,
  .cid-tXCBCnPIZG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tXCBCnPIZG .modal-xl {
    max-width: 1140px;
  }
}
.cid-tXCBCnPIZG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tXCBCnPIZG .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tXCBCnPIZG .form-group {
  margin-bottom: 1rem;
}
.cid-tXCBCnPIZG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tXCBCnPIZG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tXCBCnPIZG .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tXCBCnPIZG .mbr-section-btn {
  margin: 0;
}
.cid-tXCBCnPIZG .mbr-section-btn .btn {
  margin: 0;
}
.cid-tXCBCofI0y.popup-builder {
  background-color: #ffffff;
}
.cid-tXCBCofI0y.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tXCBCofI0y.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tXCBCofI0y .modal-content,
.cid-tXCBCofI0y .modal-dialog {
  height: auto;
}
.cid-tXCBCofI0y .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tXCBCofI0y .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tXCBCofI0y .form-wrapper .mbr-form .form-group,
  .cid-tXCBCofI0y .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tXCBCofI0y .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tXCBCofI0y .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXCBCofI0y .mbr-text {
  text-align: center;
}
.cid-tXCBCofI0y .pt-0 {
  padding-top: 0 !important;
}
.cid-tXCBCofI0y .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tXCBCofI0y .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tXCBCofI0y .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tXCBCofI0y .modal-open {
  overflow: hidden;
}
.cid-tXCBCofI0y .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tXCBCofI0y .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tXCBCofI0y .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tXCBCofI0y .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tXCBCofI0y .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tXCBCofI0y .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tXCBCofI0y .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tXCBCofI0y .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tXCBCofI0y .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tXCBCofI0y .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tXCBCofI0y .modal-backdrop.fade {
  opacity: 0;
}
.cid-tXCBCofI0y .modal-backdrop.show {
  opacity: .5;
}
.cid-tXCBCofI0y .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tXCBCofI0y .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tXCBCofI0y .modal-header {
    padding: 1rem;
  }
}
.cid-tXCBCofI0y .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tXCBCofI0y .modal-header .close svg {
  fill: #353535;
}
.cid-tXCBCofI0y .modal-header .close:hover {
  opacity: 1;
}
.cid-tXCBCofI0y .modal-header .close:focus {
  outline: none;
}
.cid-tXCBCofI0y .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tXCBCofI0y .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tXCBCofI0y .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXCBCofI0y .modal-body {
    padding: 1rem;
  }
}
.cid-tXCBCofI0y .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tXCBCofI0y .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXCBCofI0y .modal-footer {
    padding: 1rem;
  }
}
.cid-tXCBCofI0y .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tXCBCofI0y .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tXCBCofI0y .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tXCBCofI0y .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tXCBCofI0y .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tXCBCofI0y .modal-lg,
  .cid-tXCBCofI0y .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tXCBCofI0y .modal-xl {
    max-width: 1140px;
  }
}
.cid-tXCBCofI0y .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tXCBCofI0y .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tXCBCofI0y .form-group {
  margin-bottom: 1rem;
}
.cid-tXCBCofI0y .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tXCBCofI0y .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tXCBCofI0y .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tXCBCofI0y .mbr-section-btn {
  margin: 0;
}
.cid-tXCBCofI0y .mbr-section-btn .btn {
  margin: 0;
}
.cid-tXH0zM62yp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9b0d00;
}
.cid-tXH0zM62yp .mbr-section-title {
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}
.cid-tXH0zM62yp .block__left {
  margin-bottom: 50px;
}
.cid-tXH0zM62yp .text__left {
  margin-top: 85px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tXH0zM62yp .image img {
  max-width: 95%;
  border-radius: 20px;
  object-fit: cover;
}
.cid-tXH0zM62yp .title__right {
  margin-bottom: 15px;
}
.cid-tXH0zM62yp .mbr-text {
  margin-bottom: 0;
  color: #000000;
}
.cid-tXH0zM62yp .item__right {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-tXH0zM62yp .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-tXH0zM62yp .text__left {
    margin-top: 0;
  }
  .cid-tXH0zM62yp .item__right {
    margin-bottom: 0;
    margin-top: 50px;
  }
  .cid-tXH0zM62yp .image img {
    max-width: 100%;
    width: 100%;
    border-radius: 0px;
  }
  .cid-tXH0zM62yp .container {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-tXH0zM62yp .block__left {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cid-tXH0zMTwX2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tXH0zMTwX2 .mbr-section-title {
  text-align: center;
}
#custom-html-3u {
  /* Type valid CSS here */
}
#custom-html-3u div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3u p {
  font-size: 60px;
  color: #777;
}
.cid-tXH0zNcBjW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tXH0zNcBjW .mbr-section-subtitle {
  color: #767676;
}
.cid-tXH0zNcBjW .mbr-section-title {
  color: #ffffff;
}
.cid-tXH0zNrELu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tXH0zNrELu .mbr-section-title {
  text-align: center;
}
.cid-tXH0zNBi32 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXH0zNBi32 img,
.cid-tXH0zNBi32 .item-img {
  width: 100%;
}
.cid-tXH0zNBi32 .item:focus,
.cid-tXH0zNBi32 span:focus {
  outline: none;
}
.cid-tXH0zNBi32 .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tXH0zNBi32 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tXH0zNBi32 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXH0zNBi32 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tXH0zNBi32 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tXH0zNBi32 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tXH0zOqvcD {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXH0zOqvcD .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tXH0zOHZcI {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tXH0zOHZcI .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tXH0zPdkVn {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tXH0zPdkVn .mbr-section-subtitle {
  color: #767676;
}
.cid-tXH0zPdkVn .mbr-section-title {
  color: #ffffff;
}
#custom-html-41 {
  /* Type valid CSS here */
}
#custom-html-41 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-41 p {
  font-size: 60px;
  color: #777;
}
.cid-tXH0zPCa0V {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ff1600;
}
.cid-tXH0zPCa0V .mbr-section-subtitle {
  color: #767676;
}
.cid-tXH0zPCa0V .mbr-section-title {
  color: #ffffff;
}
.cid-tXH0zQbUKO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXH0zQbUKO .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-tXH0zQbUKO .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tXH0zQbUKO .mbr-section-subtitle {
  color: #767676;
}
.cid-tXH0zQbUKO .panel-group {
  width: 100%;
}
.cid-tXH0zQbUKO .panel-text {
  color: #000000;
  text-align: left;
}
.cid-tXH0zQbUKO .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tXH0zQbUKO .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tXH0zQbUKO .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f7f7f7;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tXH0zQbUKO .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tXH0zQbUKO .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tXH0zQbUKO .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tXH0zQbUKO .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-tXH0zQbUKO .card .panel-body {
  background: #ffffff;
}
.cid-tXH0zQbUKO .sign {
  color: #232323;
}
.cid-tXH0zR648b {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXH0zR648b .mbr-section-title {
  text-align: center;
}
.cid-tXH0zRojLI {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXH0zRojLI .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tXH0zRHyRt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tXH0zRHyRt .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tXH0zRHyRt .mbr-section-btn,
  .cid-tXH0zRHyRt .mbr-section-subtitle,
  .cid-tXH0zRHyRt .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tXH0zRHyRt .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-tXH0zRVzQU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXH0zRVzQU .nav-tabs .nav-item.open .nav-link:focus,
.cid-tXH0zRVzQU .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tXH0zRVzQU .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #9b0d00;
}
@media (max-width: 767px) {
  .cid-tXH0zRVzQU .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tXH0zRVzQU .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tXH0zRVzQU .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tXH0zRVzQU .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tXH0zRVzQU .nav-link,
.cid-tXH0zRVzQU .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tXH0zRVzQU .nav-tabs .nav-link.active {
  color: #9b0d00;
  border-bottom: 3px solid #9b0d00;
}
.cid-tXH0zRVzQU H4 {
  text-align: center;
}
.cid-tXH0zRVzQU H3 {
  text-align: center;
}
.cid-tXH0zSEVDV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXH0zSEVDV .mbr-section-title {
  text-align: center;
}
.cid-tXH0zT1qvf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tXH0zT1qvf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tXH0zT1qvf .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tXH0zTd7lF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tXH0zTd7lF .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tXH0zTd7lF .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tXH0zTd7lF .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tXH0zTd7lF .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tXH0zTd7lF .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #ca4336;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tXH0zTd7lF .icon-transition span:hover {
  background-color: #acfde1;
}
.cid-tXH0zTd7lF .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tXH0zTd7lF .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tXH0zTd7lF .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tXH0zTd7lF .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tXH0zTxIvy.popup-builder {
  background-color: #ffffff;
}
.cid-tXH0zTxIvy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tXH0zTxIvy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tXH0zTxIvy .modal-content,
.cid-tXH0zTxIvy .modal-dialog {
  height: auto;
}
.cid-tXH0zTxIvy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tXH0zTxIvy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tXH0zTxIvy .form-wrapper .mbr-form .form-group,
  .cid-tXH0zTxIvy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tXH0zTxIvy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tXH0zTxIvy .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXH0zTxIvy .mbr-text {
  text-align: center;
}
.cid-tXH0zTxIvy .pt-0 {
  padding-top: 0 !important;
}
.cid-tXH0zTxIvy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tXH0zTxIvy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tXH0zTxIvy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tXH0zTxIvy .modal-open {
  overflow: hidden;
}
.cid-tXH0zTxIvy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tXH0zTxIvy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tXH0zTxIvy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tXH0zTxIvy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tXH0zTxIvy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tXH0zTxIvy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tXH0zTxIvy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tXH0zTxIvy .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tXH0zTxIvy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tXH0zTxIvy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tXH0zTxIvy .modal-backdrop.fade {
  opacity: 0;
}
.cid-tXH0zTxIvy .modal-backdrop.show {
  opacity: .5;
}
.cid-tXH0zTxIvy .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tXH0zTxIvy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tXH0zTxIvy .modal-header {
    padding: 1rem;
  }
}
.cid-tXH0zTxIvy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tXH0zTxIvy .modal-header .close svg {
  fill: #353535;
}
.cid-tXH0zTxIvy .modal-header .close:hover {
  opacity: 1;
}
.cid-tXH0zTxIvy .modal-header .close:focus {
  outline: none;
}
.cid-tXH0zTxIvy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tXH0zTxIvy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tXH0zTxIvy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXH0zTxIvy .modal-body {
    padding: 1rem;
  }
}
.cid-tXH0zTxIvy .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tXH0zTxIvy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXH0zTxIvy .modal-footer {
    padding: 1rem;
  }
}
.cid-tXH0zTxIvy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tXH0zTxIvy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tXH0zTxIvy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tXH0zTxIvy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tXH0zTxIvy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tXH0zTxIvy .modal-lg,
  .cid-tXH0zTxIvy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tXH0zTxIvy .modal-xl {
    max-width: 1140px;
  }
}
.cid-tXH0zTxIvy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tXH0zTxIvy .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tXH0zTxIvy .form-group {
  margin-bottom: 1rem;
}
.cid-tXH0zTxIvy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tXH0zTxIvy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tXH0zTxIvy .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tXH0zTxIvy .mbr-section-btn {
  margin: 0;
}
.cid-tXH0zTxIvy .mbr-section-btn .btn {
  margin: 0;
}
.cid-tXH0zU3jEb.popup-builder {
  background-color: #ffffff;
}
.cid-tXH0zU3jEb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tXH0zU3jEb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tXH0zU3jEb .modal-content,
.cid-tXH0zU3jEb .modal-dialog {
  height: auto;
}
.cid-tXH0zU3jEb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tXH0zU3jEb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tXH0zU3jEb .form-wrapper .mbr-form .form-group,
  .cid-tXH0zU3jEb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tXH0zU3jEb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tXH0zU3jEb .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXH0zU3jEb .mbr-text {
  text-align: center;
}
.cid-tXH0zU3jEb .pt-0 {
  padding-top: 0 !important;
}
.cid-tXH0zU3jEb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tXH0zU3jEb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tXH0zU3jEb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tXH0zU3jEb .modal-open {
  overflow: hidden;
}
.cid-tXH0zU3jEb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tXH0zU3jEb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tXH0zU3jEb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tXH0zU3jEb .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tXH0zU3jEb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tXH0zU3jEb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tXH0zU3jEb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tXH0zU3jEb .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tXH0zU3jEb .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tXH0zU3jEb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tXH0zU3jEb .modal-backdrop.fade {
  opacity: 0;
}
.cid-tXH0zU3jEb .modal-backdrop.show {
  opacity: .5;
}
.cid-tXH0zU3jEb .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tXH0zU3jEb .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tXH0zU3jEb .modal-header {
    padding: 1rem;
  }
}
.cid-tXH0zU3jEb .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tXH0zU3jEb .modal-header .close svg {
  fill: #353535;
}
.cid-tXH0zU3jEb .modal-header .close:hover {
  opacity: 1;
}
.cid-tXH0zU3jEb .modal-header .close:focus {
  outline: none;
}
.cid-tXH0zU3jEb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tXH0zU3jEb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tXH0zU3jEb .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXH0zU3jEb .modal-body {
    padding: 1rem;
  }
}
.cid-tXH0zU3jEb .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tXH0zU3jEb .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXH0zU3jEb .modal-footer {
    padding: 1rem;
  }
}
.cid-tXH0zU3jEb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tXH0zU3jEb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tXH0zU3jEb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tXH0zU3jEb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tXH0zU3jEb .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tXH0zU3jEb .modal-lg,
  .cid-tXH0zU3jEb .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tXH0zU3jEb .modal-xl {
    max-width: 1140px;
  }
}
.cid-tXH0zU3jEb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tXH0zU3jEb .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tXH0zU3jEb .form-group {
  margin-bottom: 1rem;
}
.cid-tXH0zU3jEb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tXH0zU3jEb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tXH0zU3jEb .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tXH0zU3jEb .mbr-section-btn {
  margin: 0;
}
.cid-tXH0zU3jEb .mbr-section-btn .btn {
  margin: 0;
}
.cid-tYNoqZ06pe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9b0d00;
}
.cid-tYNoqZ06pe .mbr-section-title {
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}
.cid-tYNoqZ06pe .block__left {
  margin-bottom: 50px;
}
.cid-tYNoqZ06pe .text__left {
  margin-top: 85px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tYNoqZ06pe .image img {
  max-width: 95%;
  border-radius: 20px;
  object-fit: cover;
}
.cid-tYNoqZ06pe .title__right {
  margin-bottom: 15px;
}
.cid-tYNoqZ06pe .mbr-text {
  margin-bottom: 0;
  color: #000000;
}
.cid-tYNoqZ06pe .item__right {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-tYNoqZ06pe .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-tYNoqZ06pe .text__left {
    margin-top: 0;
  }
  .cid-tYNoqZ06pe .item__right {
    margin-bottom: 0;
    margin-top: 50px;
  }
  .cid-tYNoqZ06pe .image img {
    max-width: 100%;
    width: 100%;
    border-radius: 0px;
  }
  .cid-tYNoqZ06pe .container {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-tYNoqZ06pe .block__left {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cid-tYNoqZogX5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNoqZogX5 .mbr-section-title {
  text-align: center;
}
#custom-html-4g {
  /* Type valid CSS here */
}
#custom-html-4g div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4g p {
  font-size: 60px;
  color: #777;
}
.cid-tYNoqZCFQ1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tYNoqZCFQ1 .mbr-section-subtitle {
  color: #767676;
}
.cid-tYNoqZCFQ1 .mbr-section-title {
  color: #ffffff;
}
.cid-tYNoqZNuor {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNoqZNuor .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
#custom-html-4j {
  /* Type valid CSS here */
}
#custom-html-4j div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4j p {
  font-size: 60px;
  color: #777;
}
.cid-tYNor0xnl0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYNor0xnl0 img,
.cid-tYNor0xnl0 .item-img {
  width: 100%;
}
.cid-tYNor0xnl0 .item:focus,
.cid-tYNor0xnl0 span:focus {
  outline: none;
}
.cid-tYNor0xnl0 .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tYNor0xnl0 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYNor0xnl0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNor0xnl0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYNor0xnl0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYNor0xnl0 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tYNor0Zj9g {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNor0Zj9g .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tYNor02UUc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tYNor02UUc .card {
  display: block;
  position: relative;
}
.cid-tYNor02UUc .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tYNor02UUc .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tYNor02UUc .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tYNor02UUc .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tYNor02UUc .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tYNor02UUc .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tYNor02UUc .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tYNor02UUc .mbr-card-text,
.cid-tYNor02UUc .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-tYNor02UUc .mbr-title DIV {
  text-align: center;
}
.cid-tYNor02UUc .mbr-title {
  text-align: center;
}
.cid-tYNor02UUc .mbr-section-title {
  text-align: center;
}
.cid-tYNp1MrKts {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNp1MrKts .mbr-section-title {
  text-align: center;
}
.cid-tYNor19C4U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNor19C4U .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-tYNor19C4U .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tYNor19C4U .mbr-section-subtitle {
  color: #767676;
}
.cid-tYNor19C4U .panel-group {
  width: 100%;
}
.cid-tYNor19C4U .panel-text {
  color: #000000;
  text-align: left;
}
.cid-tYNor19C4U .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tYNor19C4U .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tYNor19C4U .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f7f7f7;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tYNor19C4U .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tYNor19C4U .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYNor19C4U .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tYNor19C4U .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-tYNor19C4U .card .panel-body {
  background: #ffffff;
}
.cid-tYNor19C4U .sign {
  color: #232323;
}
.cid-tYNor1NCRA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNor1NCRA .mbr-section-title {
  text-align: center;
}
.cid-tYNor1Yr8j {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNor1Yr8j .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tYNor29YtR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNor29YtR .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tYNor29YtR .mbr-section-btn,
  .cid-tYNor29YtR .mbr-section-subtitle,
  .cid-tYNor29YtR .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tYNor29YtR .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-tYNor2p97z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYNor2p97z .nav-tabs .nav-item.open .nav-link:focus,
.cid-tYNor2p97z .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tYNor2p97z .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #9b0d00;
}
@media (max-width: 767px) {
  .cid-tYNor2p97z .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tYNor2p97z .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tYNor2p97z .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tYNor2p97z .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tYNor2p97z .nav-link,
.cid-tYNor2p97z .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tYNor2p97z .nav-tabs .nav-link.active {
  color: #9b0d00;
  border-bottom: 3px solid #9b0d00;
}
.cid-tYNor2p97z H4 {
  text-align: center;
}
.cid-tYNor2p97z H3 {
  text-align: center;
}
.cid-tYNor2Q9YP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNor2Q9YP .mbr-section-title {
  text-align: center;
}
.cid-tYNor37pHl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tYNor37pHl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tYNor37pHl .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tYNor3mwpF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tYNor3mwpF .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tYNor3mwpF .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tYNor3mwpF .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tYNor3mwpF .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tYNor3mwpF .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #ca4336;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tYNor3mwpF .icon-transition span:hover {
  background-color: #acfde1;
}
.cid-tYNor3mwpF .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tYNor3mwpF .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tYNor3mwpF .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tYNor3mwpF .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tYNor3FdfU.popup-builder {
  background-color: #ffffff;
}
.cid-tYNor3FdfU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tYNor3FdfU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tYNor3FdfU .modal-content,
.cid-tYNor3FdfU .modal-dialog {
  height: auto;
}
.cid-tYNor3FdfU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tYNor3FdfU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tYNor3FdfU .form-wrapper .mbr-form .form-group,
  .cid-tYNor3FdfU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tYNor3FdfU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tYNor3FdfU .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tYNor3FdfU .mbr-text {
  text-align: center;
}
.cid-tYNor3FdfU .pt-0 {
  padding-top: 0 !important;
}
.cid-tYNor3FdfU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tYNor3FdfU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tYNor3FdfU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tYNor3FdfU .modal-open {
  overflow: hidden;
}
.cid-tYNor3FdfU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tYNor3FdfU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tYNor3FdfU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tYNor3FdfU .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tYNor3FdfU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tYNor3FdfU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tYNor3FdfU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tYNor3FdfU .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tYNor3FdfU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tYNor3FdfU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tYNor3FdfU .modal-backdrop.fade {
  opacity: 0;
}
.cid-tYNor3FdfU .modal-backdrop.show {
  opacity: .5;
}
.cid-tYNor3FdfU .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tYNor3FdfU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNor3FdfU .modal-header {
    padding: 1rem;
  }
}
.cid-tYNor3FdfU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tYNor3FdfU .modal-header .close svg {
  fill: #353535;
}
.cid-tYNor3FdfU .modal-header .close:hover {
  opacity: 1;
}
.cid-tYNor3FdfU .modal-header .close:focus {
  outline: none;
}
.cid-tYNor3FdfU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tYNor3FdfU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tYNor3FdfU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNor3FdfU .modal-body {
    padding: 1rem;
  }
}
.cid-tYNor3FdfU .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tYNor3FdfU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNor3FdfU .modal-footer {
    padding: 1rem;
  }
}
.cid-tYNor3FdfU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tYNor3FdfU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tYNor3FdfU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tYNor3FdfU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tYNor3FdfU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tYNor3FdfU .modal-lg,
  .cid-tYNor3FdfU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tYNor3FdfU .modal-xl {
    max-width: 1140px;
  }
}
.cid-tYNor3FdfU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tYNor3FdfU .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tYNor3FdfU .form-group {
  margin-bottom: 1rem;
}
.cid-tYNor3FdfU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tYNor3FdfU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tYNor3FdfU .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tYNor3FdfU .mbr-section-btn {
  margin: 0;
}
.cid-tYNor3FdfU .mbr-section-btn .btn {
  margin: 0;
}
.cid-tYNor41dSx.popup-builder {
  background-color: #ffffff;
}
.cid-tYNor41dSx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tYNor41dSx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tYNor41dSx .modal-content,
.cid-tYNor41dSx .modal-dialog {
  height: auto;
}
.cid-tYNor41dSx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tYNor41dSx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tYNor41dSx .form-wrapper .mbr-form .form-group,
  .cid-tYNor41dSx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tYNor41dSx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tYNor41dSx .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tYNor41dSx .mbr-text {
  text-align: center;
}
.cid-tYNor41dSx .pt-0 {
  padding-top: 0 !important;
}
.cid-tYNor41dSx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tYNor41dSx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tYNor41dSx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tYNor41dSx .modal-open {
  overflow: hidden;
}
.cid-tYNor41dSx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tYNor41dSx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tYNor41dSx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tYNor41dSx .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tYNor41dSx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tYNor41dSx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tYNor41dSx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tYNor41dSx .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tYNor41dSx .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tYNor41dSx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tYNor41dSx .modal-backdrop.fade {
  opacity: 0;
}
.cid-tYNor41dSx .modal-backdrop.show {
  opacity: .5;
}
.cid-tYNor41dSx .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tYNor41dSx .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNor41dSx .modal-header {
    padding: 1rem;
  }
}
.cid-tYNor41dSx .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tYNor41dSx .modal-header .close svg {
  fill: #353535;
}
.cid-tYNor41dSx .modal-header .close:hover {
  opacity: 1;
}
.cid-tYNor41dSx .modal-header .close:focus {
  outline: none;
}
.cid-tYNor41dSx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tYNor41dSx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tYNor41dSx .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNor41dSx .modal-body {
    padding: 1rem;
  }
}
.cid-tYNor41dSx .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tYNor41dSx .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNor41dSx .modal-footer {
    padding: 1rem;
  }
}
.cid-tYNor41dSx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tYNor41dSx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tYNor41dSx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tYNor41dSx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tYNor41dSx .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tYNor41dSx .modal-lg,
  .cid-tYNor41dSx .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tYNor41dSx .modal-xl {
    max-width: 1140px;
  }
}
.cid-tYNor41dSx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tYNor41dSx .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tYNor41dSx .form-group {
  margin-bottom: 1rem;
}
.cid-tYNor41dSx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tYNor41dSx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tYNor41dSx .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tYNor41dSx .mbr-section-btn {
  margin: 0;
}
.cid-tYNor41dSx .mbr-section-btn .btn {
  margin: 0;
}
.cid-tYNpGr9ymH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9b0d00;
}
.cid-tYNpGr9ymH .mbr-section-title {
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}
.cid-tYNpGr9ymH .block__left {
  margin-bottom: 50px;
}
.cid-tYNpGr9ymH .text__left {
  margin-top: 85px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tYNpGr9ymH .image img {
  max-width: 95%;
  border-radius: 20px;
  object-fit: cover;
}
.cid-tYNpGr9ymH .title__right {
  margin-bottom: 15px;
}
.cid-tYNpGr9ymH .mbr-text {
  margin-bottom: 0;
  color: #000000;
}
.cid-tYNpGr9ymH .item__right {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-tYNpGr9ymH .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-tYNpGr9ymH .text__left {
    margin-top: 0;
  }
  .cid-tYNpGr9ymH .item__right {
    margin-bottom: 0;
    margin-top: 50px;
  }
  .cid-tYNpGr9ymH .image img {
    max-width: 100%;
    width: 100%;
    border-radius: 0px;
  }
  .cid-tYNpGr9ymH .container {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-tYNpGr9ymH .block__left {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cid-tYNpGrzqpW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNpGrzqpW .mbr-section-title {
  text-align: center;
}
#custom-html-5k {
  /* Type valid CSS here */
}
#custom-html-5k div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-5k p {
  font-size: 60px;
  color: #777;
}
.cid-tYNpGrPnFU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tYNpGrPnFU .mbr-section-subtitle {
  color: #767676;
}
.cid-tYNpGrPnFU .mbr-section-title {
  color: #ffffff;
}
.cid-tYNpGsBzuC {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNpGsBzuC .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
#custom-html-5p {
  /* Type valid CSS here */
}
#custom-html-5p div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-5p p {
  font-size: 60px;
  color: #777;
}
.cid-tYNpGs1jm6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYNpGs1jm6 img,
.cid-tYNpGs1jm6 .item-img {
  width: 100%;
}
.cid-tYNpGs1jm6 .item:focus,
.cid-tYNpGs1jm6 span:focus {
  outline: none;
}
.cid-tYNpGs1jm6 .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tYNpGs1jm6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYNpGs1jm6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNpGs1jm6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYNpGs1jm6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYNpGs1jm6 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tYNpGstRx0 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNpGstRx0 .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tYNpGtyh96 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNpGtyh96 .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-tYNpGtyh96 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tYNpGtyh96 .mbr-section-subtitle {
  color: #767676;
}
.cid-tYNpGtyh96 .panel-group {
  width: 100%;
}
.cid-tYNpGtyh96 .panel-text {
  color: #000000;
  text-align: left;
}
.cid-tYNpGtyh96 .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tYNpGtyh96 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tYNpGtyh96 .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f7f7f7;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tYNpGtyh96 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tYNpGtyh96 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYNpGtyh96 .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tYNpGtyh96 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-tYNpGtyh96 .card .panel-body {
  background: #ffffff;
}
.cid-tYNpGtyh96 .sign {
  color: #232323;
}
.cid-tYNpGtX1mN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNpGtX1mN .mbr-section-title {
  text-align: center;
}
.cid-tYNpGubjNW {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNpGubjNW .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tYNpGulywL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNpGulywL .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tYNpGulywL .mbr-section-btn,
  .cid-tYNpGulywL .mbr-section-subtitle,
  .cid-tYNpGulywL .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tYNpGulywL .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-tYNpGuAK57 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYNpGuAK57 .nav-tabs .nav-item.open .nav-link:focus,
.cid-tYNpGuAK57 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tYNpGuAK57 .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #9b0d00;
}
@media (max-width: 767px) {
  .cid-tYNpGuAK57 .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tYNpGuAK57 .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tYNpGuAK57 .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tYNpGuAK57 .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tYNpGuAK57 .nav-link,
.cid-tYNpGuAK57 .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tYNpGuAK57 .nav-tabs .nav-link.active {
  color: #9b0d00;
  border-bottom: 3px solid #9b0d00;
}
.cid-tYNpGuAK57 H4 {
  text-align: center;
}
.cid-tYNpGuAK57 H3 {
  text-align: center;
}
.cid-tYNpGuXnk5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNpGuXnk5 .mbr-section-title {
  text-align: center;
}
.cid-tYNpGv86jZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tYNpGv86jZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tYNpGv86jZ .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tYNpGvoMaN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tYNpGvoMaN .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tYNpGvoMaN .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tYNpGvoMaN .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tYNpGvoMaN .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tYNpGvoMaN .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #ca4336;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tYNpGvoMaN .icon-transition span:hover {
  background-color: #acfde1;
}
.cid-tYNpGvoMaN .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tYNpGvoMaN .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tYNpGvoMaN .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tYNpGvoMaN .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tYNpGvRsv5.popup-builder {
  background-color: #ffffff;
}
.cid-tYNpGvRsv5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tYNpGvRsv5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tYNpGvRsv5 .modal-content,
.cid-tYNpGvRsv5 .modal-dialog {
  height: auto;
}
.cid-tYNpGvRsv5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tYNpGvRsv5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tYNpGvRsv5 .form-wrapper .mbr-form .form-group,
  .cid-tYNpGvRsv5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tYNpGvRsv5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tYNpGvRsv5 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tYNpGvRsv5 .mbr-text {
  text-align: center;
}
.cid-tYNpGvRsv5 .pt-0 {
  padding-top: 0 !important;
}
.cid-tYNpGvRsv5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tYNpGvRsv5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tYNpGvRsv5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tYNpGvRsv5 .modal-open {
  overflow: hidden;
}
.cid-tYNpGvRsv5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tYNpGvRsv5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tYNpGvRsv5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tYNpGvRsv5 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tYNpGvRsv5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tYNpGvRsv5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tYNpGvRsv5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tYNpGvRsv5 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tYNpGvRsv5 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tYNpGvRsv5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tYNpGvRsv5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tYNpGvRsv5 .modal-backdrop.show {
  opacity: .5;
}
.cid-tYNpGvRsv5 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tYNpGvRsv5 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNpGvRsv5 .modal-header {
    padding: 1rem;
  }
}
.cid-tYNpGvRsv5 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tYNpGvRsv5 .modal-header .close svg {
  fill: #353535;
}
.cid-tYNpGvRsv5 .modal-header .close:hover {
  opacity: 1;
}
.cid-tYNpGvRsv5 .modal-header .close:focus {
  outline: none;
}
.cid-tYNpGvRsv5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tYNpGvRsv5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tYNpGvRsv5 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNpGvRsv5 .modal-body {
    padding: 1rem;
  }
}
.cid-tYNpGvRsv5 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tYNpGvRsv5 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNpGvRsv5 .modal-footer {
    padding: 1rem;
  }
}
.cid-tYNpGvRsv5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tYNpGvRsv5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tYNpGvRsv5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tYNpGvRsv5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tYNpGvRsv5 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tYNpGvRsv5 .modal-lg,
  .cid-tYNpGvRsv5 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tYNpGvRsv5 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tYNpGvRsv5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tYNpGvRsv5 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tYNpGvRsv5 .form-group {
  margin-bottom: 1rem;
}
.cid-tYNpGvRsv5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tYNpGvRsv5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tYNpGvRsv5 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tYNpGvRsv5 .mbr-section-btn {
  margin: 0;
}
.cid-tYNpGvRsv5 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tYNp3Hk4Yr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9b0d00;
}
.cid-tYNp3Hk4Yr .mbr-section-title {
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}
.cid-tYNp3Hk4Yr .block__left {
  margin-bottom: 50px;
}
.cid-tYNp3Hk4Yr .text__left {
  margin-top: 85px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tYNp3Hk4Yr .image img {
  max-width: 95%;
  border-radius: 20px;
  object-fit: cover;
}
.cid-tYNp3Hk4Yr .title__right {
  margin-bottom: 15px;
}
.cid-tYNp3Hk4Yr .mbr-text {
  margin-bottom: 0;
  color: #000000;
}
.cid-tYNp3Hk4Yr .item__right {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-tYNp3Hk4Yr .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-tYNp3Hk4Yr .text__left {
    margin-top: 0;
  }
  .cid-tYNp3Hk4Yr .item__right {
    margin-bottom: 0;
    margin-top: 50px;
  }
  .cid-tYNp3Hk4Yr .image img {
    max-width: 100%;
    width: 100%;
    border-radius: 0px;
  }
  .cid-tYNp3Hk4Yr .container {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-tYNp3Hk4Yr .block__left {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cid-tYNp3HFZmy {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNp3HFZmy .mbr-section-title {
  text-align: center;
}
#custom-html-50 {
  /* Type valid CSS here */
}
#custom-html-50 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-50 p {
  font-size: 60px;
  color: #777;
}
.cid-tYNp3HRnm1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tYNp3HRnm1 .mbr-section-subtitle {
  color: #767676;
}
.cid-tYNp3HRnm1 .mbr-section-title {
  color: #ffffff;
}
.cid-tYNp3Igayz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYNp3Igayz img,
.cid-tYNp3Igayz .item-img {
  width: 100%;
}
.cid-tYNp3Igayz .item:focus,
.cid-tYNp3Igayz span:focus {
  outline: none;
}
.cid-tYNp3Igayz .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tYNp3Igayz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYNp3Igayz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNp3Igayz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYNp3Igayz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYNp3Igayz .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tYNp3ICGVi {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNp3ICGVi .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tYNp3I29Hw {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNp3I29Hw .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
#custom-html-53 {
  /* Type valid CSS here */
}
#custom-html-53 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-53 p {
  font-size: 60px;
  color: #777;
}
.cid-tYNp3IMorC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tYNp3IMorC .card {
  display: block;
  position: relative;
}
.cid-tYNp3IMorC .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tYNp3IMorC .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tYNp3IMorC .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tYNp3IMorC .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tYNp3IMorC .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tYNp3IMorC .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tYNp3IMorC .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tYNp3IMorC .mbr-card-text,
.cid-tYNp3IMorC .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-tYNp3IMorC .mbr-title DIV {
  text-align: center;
}
.cid-tYNp3IMorC .mbr-title {
  text-align: center;
}
.cid-tYNp3IMorC .mbr-section-title {
  text-align: center;
}
.cid-tYNp3J9IcW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNp3J9IcW .mbr-section-title {
  text-align: center;
}
.cid-tYNp3Ji9Kc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNp3Ji9Kc .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-tYNp3Ji9Kc .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tYNp3Ji9Kc .mbr-section-subtitle {
  color: #767676;
}
.cid-tYNp3Ji9Kc .panel-group {
  width: 100%;
}
.cid-tYNp3Ji9Kc .panel-text {
  color: #000000;
  text-align: left;
}
.cid-tYNp3Ji9Kc .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tYNp3Ji9Kc .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tYNp3Ji9Kc .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f7f7f7;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tYNp3Ji9Kc .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tYNp3Ji9Kc .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYNp3Ji9Kc .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tYNp3Ji9Kc .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-tYNp3Ji9Kc .card .panel-body {
  background: #ffffff;
}
.cid-tYNp3Ji9Kc .sign {
  color: #232323;
}
.cid-tYNp3JC0qY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNp3JC0qY .mbr-section-title {
  text-align: center;
}
.cid-tYNp3JMgeh {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNp3JMgeh .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tYNp3JWBXv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNp3JWBXv .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tYNp3JWBXv .mbr-section-btn,
  .cid-tYNp3JWBXv .mbr-section-subtitle,
  .cid-tYNp3JWBXv .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tYNp3JWBXv .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-tYNp3K8tiY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYNp3K8tiY .nav-tabs .nav-item.open .nav-link:focus,
.cid-tYNp3K8tiY .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tYNp3K8tiY .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #9b0d00;
}
@media (max-width: 767px) {
  .cid-tYNp3K8tiY .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tYNp3K8tiY .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tYNp3K8tiY .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tYNp3K8tiY .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tYNp3K8tiY .nav-link,
.cid-tYNp3K8tiY .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tYNp3K8tiY .nav-tabs .nav-link.active {
  color: #9b0d00;
  border-bottom: 3px solid #9b0d00;
}
.cid-tYNp3K8tiY H4 {
  text-align: center;
}
.cid-tYNp3K8tiY H3 {
  text-align: center;
}
.cid-tYNp3KuDEY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNp3KuDEY .mbr-section-title {
  text-align: center;
}
.cid-tYNp3KEbJ7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tYNp3KEbJ7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tYNp3KEbJ7 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tYNp3KU9cK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tYNp3KU9cK .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tYNp3KU9cK .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tYNp3KU9cK .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tYNp3KU9cK .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tYNp3KU9cK .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #ca4336;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tYNp3KU9cK .icon-transition span:hover {
  background-color: #acfde1;
}
.cid-tYNp3KU9cK .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tYNp3KU9cK .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tYNp3KU9cK .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tYNp3KU9cK .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tYNp3Ltjee.popup-builder {
  background-color: #ffffff;
}
.cid-tYNp3Ltjee.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tYNp3Ltjee.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tYNp3Ltjee .modal-content,
.cid-tYNp3Ltjee .modal-dialog {
  height: auto;
}
.cid-tYNp3Ltjee .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tYNp3Ltjee .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tYNp3Ltjee .form-wrapper .mbr-form .form-group,
  .cid-tYNp3Ltjee .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tYNp3Ltjee .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tYNp3Ltjee .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tYNp3Ltjee .mbr-text {
  text-align: center;
}
.cid-tYNp3Ltjee .pt-0 {
  padding-top: 0 !important;
}
.cid-tYNp3Ltjee .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tYNp3Ltjee .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tYNp3Ltjee .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tYNp3Ltjee .modal-open {
  overflow: hidden;
}
.cid-tYNp3Ltjee .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tYNp3Ltjee .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tYNp3Ltjee .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tYNp3Ltjee .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tYNp3Ltjee .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tYNp3Ltjee .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tYNp3Ltjee .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tYNp3Ltjee .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tYNp3Ltjee .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tYNp3Ltjee .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tYNp3Ltjee .modal-backdrop.fade {
  opacity: 0;
}
.cid-tYNp3Ltjee .modal-backdrop.show {
  opacity: .5;
}
.cid-tYNp3Ltjee .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tYNp3Ltjee .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNp3Ltjee .modal-header {
    padding: 1rem;
  }
}
.cid-tYNp3Ltjee .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tYNp3Ltjee .modal-header .close svg {
  fill: #353535;
}
.cid-tYNp3Ltjee .modal-header .close:hover {
  opacity: 1;
}
.cid-tYNp3Ltjee .modal-header .close:focus {
  outline: none;
}
.cid-tYNp3Ltjee .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tYNp3Ltjee .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tYNp3Ltjee .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNp3Ltjee .modal-body {
    padding: 1rem;
  }
}
.cid-tYNp3Ltjee .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tYNp3Ltjee .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNp3Ltjee .modal-footer {
    padding: 1rem;
  }
}
.cid-tYNp3Ltjee .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tYNp3Ltjee .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tYNp3Ltjee .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tYNp3Ltjee .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tYNp3Ltjee .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tYNp3Ltjee .modal-lg,
  .cid-tYNp3Ltjee .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tYNp3Ltjee .modal-xl {
    max-width: 1140px;
  }
}
.cid-tYNp3Ltjee .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tYNp3Ltjee .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tYNp3Ltjee .form-group {
  margin-bottom: 1rem;
}
.cid-tYNp3Ltjee .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tYNp3Ltjee .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tYNp3Ltjee .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tYNp3Ltjee .mbr-section-btn {
  margin: 0;
}
.cid-tYNp3Ltjee .mbr-section-btn .btn {
  margin: 0;
}
.cid-tYNp3LPhuI.popup-builder {
  background-color: #ffffff;
}
.cid-tYNp3LPhuI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tYNp3LPhuI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tYNp3LPhuI .modal-content,
.cid-tYNp3LPhuI .modal-dialog {
  height: auto;
}
.cid-tYNp3LPhuI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tYNp3LPhuI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tYNp3LPhuI .form-wrapper .mbr-form .form-group,
  .cid-tYNp3LPhuI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tYNp3LPhuI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tYNp3LPhuI .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tYNp3LPhuI .mbr-text {
  text-align: center;
}
.cid-tYNp3LPhuI .pt-0 {
  padding-top: 0 !important;
}
.cid-tYNp3LPhuI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tYNp3LPhuI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tYNp3LPhuI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tYNp3LPhuI .modal-open {
  overflow: hidden;
}
.cid-tYNp3LPhuI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tYNp3LPhuI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tYNp3LPhuI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tYNp3LPhuI .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tYNp3LPhuI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tYNp3LPhuI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tYNp3LPhuI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tYNp3LPhuI .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tYNp3LPhuI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tYNp3LPhuI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tYNp3LPhuI .modal-backdrop.fade {
  opacity: 0;
}
.cid-tYNp3LPhuI .modal-backdrop.show {
  opacity: .5;
}
.cid-tYNp3LPhuI .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tYNp3LPhuI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNp3LPhuI .modal-header {
    padding: 1rem;
  }
}
.cid-tYNp3LPhuI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tYNp3LPhuI .modal-header .close svg {
  fill: #353535;
}
.cid-tYNp3LPhuI .modal-header .close:hover {
  opacity: 1;
}
.cid-tYNp3LPhuI .modal-header .close:focus {
  outline: none;
}
.cid-tYNp3LPhuI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tYNp3LPhuI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tYNp3LPhuI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNp3LPhuI .modal-body {
    padding: 1rem;
  }
}
.cid-tYNp3LPhuI .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tYNp3LPhuI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNp3LPhuI .modal-footer {
    padding: 1rem;
  }
}
.cid-tYNp3LPhuI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tYNp3LPhuI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tYNp3LPhuI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tYNp3LPhuI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tYNp3LPhuI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tYNp3LPhuI .modal-lg,
  .cid-tYNp3LPhuI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tYNp3LPhuI .modal-xl {
    max-width: 1140px;
  }
}
.cid-tYNp3LPhuI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tYNp3LPhuI .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tYNp3LPhuI .form-group {
  margin-bottom: 1rem;
}
.cid-tYNp3LPhuI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tYNp3LPhuI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tYNp3LPhuI .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tYNp3LPhuI .mbr-section-btn {
  margin: 0;
}
.cid-tYNp3LPhuI .mbr-section-btn .btn {
  margin: 0;
}
.cid-tYNunaPjU3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9b0d00;
}
.cid-tYNunaPjU3 .mbr-section-title {
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}
.cid-tYNunaPjU3 .block__left {
  margin-bottom: 50px;
}
.cid-tYNunaPjU3 .text__left {
  margin-top: 85px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tYNunaPjU3 .image img {
  max-width: 95%;
  border-radius: 20px;
  object-fit: cover;
}
.cid-tYNunaPjU3 .title__right {
  margin-bottom: 15px;
}
.cid-tYNunaPjU3 .mbr-text {
  margin-bottom: 0;
  color: #000000;
}
.cid-tYNunaPjU3 .item__right {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-tYNunaPjU3 .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-tYNunaPjU3 .text__left {
    margin-top: 0;
  }
  .cid-tYNunaPjU3 .item__right {
    margin-bottom: 0;
    margin-top: 50px;
  }
  .cid-tYNunaPjU3 .image img {
    max-width: 100%;
    width: 100%;
    border-radius: 0px;
  }
  .cid-tYNunaPjU3 .container {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-tYNunaPjU3 .block__left {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cid-tYNunbfLe6 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNunbfLe6 .mbr-section-title {
  text-align: center;
}
#custom-html-6l {
  /* Type valid CSS here */
}
#custom-html-6l div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6l p {
  font-size: 60px;
  color: #777;
}
.cid-tYNunbqtJM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tYNunbqtJM .mbr-section-subtitle {
  color: #767676;
}
.cid-tYNunbqtJM .mbr-section-title {
  color: #ffffff;
}
.cid-tYNunce96j {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNunce96j .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
#custom-html-6q {
  /* Type valid CSS here */
}
#custom-html-6q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6q p {
  font-size: 60px;
  color: #777;
}
.cid-tYNunctTW5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tYNunctTW5 .card {
  display: block;
  position: relative;
}
.cid-tYNunctTW5 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-tYNunctTW5 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tYNunctTW5 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tYNunctTW5 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tYNunctTW5 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tYNunctTW5 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tYNunctTW5 .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tYNunctTW5 .mbr-card-text,
.cid-tYNunctTW5 .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-tYNunctTW5 .mbr-title DIV {
  text-align: center;
}
.cid-tYNunctTW5 .mbr-title {
  text-align: center;
}
.cid-tYNunctTW5 .mbr-section-title {
  text-align: center;
}
.cid-tYNunbDwlz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYNunbDwlz img,
.cid-tYNunbDwlz .item-img {
  width: 100%;
}
.cid-tYNunbDwlz .item:focus,
.cid-tYNunbDwlz span:focus {
  outline: none;
}
.cid-tYNunbDwlz .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-tYNunbDwlz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYNunbDwlz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNunbDwlz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYNunbDwlz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYNunbDwlz .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tYNunc3Wgp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNunc3Wgp .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tYNund023F {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNund023F .mbr-section-title {
  text-align: center;
}
.cid-tYNundgFMN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNundgFMN .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-tYNundgFMN .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tYNundgFMN .mbr-section-subtitle {
  color: #767676;
}
.cid-tYNundgFMN .panel-group {
  width: 100%;
}
.cid-tYNundgFMN .panel-text {
  color: #000000;
  text-align: left;
}
.cid-tYNundgFMN .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-tYNundgFMN .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tYNundgFMN .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f7f7f7;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tYNundgFMN .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-tYNundgFMN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYNundgFMN .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tYNundgFMN .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-tYNundgFMN .card .panel-body {
  background: #ffffff;
}
.cid-tYNundgFMN .sign {
  color: #232323;
}
.cid-tYNundzw0U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNundzw0U .mbr-section-title {
  text-align: center;
}
.cid-tYNundPjqc {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNundPjqc .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-tYNune1ZqA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9b0d00;
}
.cid-tYNune1ZqA .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tYNune1ZqA .mbr-section-btn,
  .cid-tYNune1ZqA .mbr-section-subtitle,
  .cid-tYNune1ZqA .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tYNune1ZqA .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-tYNuneg1gl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYNuneg1gl .nav-tabs .nav-item.open .nav-link:focus,
.cid-tYNuneg1gl .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tYNuneg1gl .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #9b0d00;
}
@media (max-width: 767px) {
  .cid-tYNuneg1gl .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tYNuneg1gl .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tYNuneg1gl .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tYNuneg1gl .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tYNuneg1gl .nav-link,
.cid-tYNuneg1gl .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tYNuneg1gl .nav-tabs .nav-link.active {
  color: #9b0d00;
  border-bottom: 3px solid #9b0d00;
}
.cid-tYNuneg1gl H4 {
  text-align: center;
}
.cid-tYNuneg1gl H3 {
  text-align: center;
}
.cid-tYNuneCXZ6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tYNuneCXZ6 .mbr-section-title {
  text-align: center;
}
.cid-tYNunePnj5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tYNunePnj5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tYNunePnj5 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tYNunf3geh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tYNunf3geh .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tYNunf3geh .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tYNunf3geh .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tYNunf3geh .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tYNunf3geh .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #ca4336;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tYNunf3geh .icon-transition span:hover {
  background-color: #acfde1;
}
.cid-tYNunf3geh .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tYNunf3geh .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tYNunf3geh .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tYNunf3geh .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tYNunfpNoZ.popup-builder {
  background-color: #ffffff;
}
.cid-tYNunfpNoZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tYNunfpNoZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tYNunfpNoZ .modal-content,
.cid-tYNunfpNoZ .modal-dialog {
  height: auto;
}
.cid-tYNunfpNoZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tYNunfpNoZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tYNunfpNoZ .form-wrapper .mbr-form .form-group,
  .cid-tYNunfpNoZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tYNunfpNoZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tYNunfpNoZ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tYNunfpNoZ .mbr-text {
  text-align: center;
}
.cid-tYNunfpNoZ .pt-0 {
  padding-top: 0 !important;
}
.cid-tYNunfpNoZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tYNunfpNoZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tYNunfpNoZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tYNunfpNoZ .modal-open {
  overflow: hidden;
}
.cid-tYNunfpNoZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tYNunfpNoZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tYNunfpNoZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tYNunfpNoZ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tYNunfpNoZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tYNunfpNoZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tYNunfpNoZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tYNunfpNoZ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tYNunfpNoZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tYNunfpNoZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tYNunfpNoZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-tYNunfpNoZ .modal-backdrop.show {
  opacity: .5;
}
.cid-tYNunfpNoZ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tYNunfpNoZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNunfpNoZ .modal-header {
    padding: 1rem;
  }
}
.cid-tYNunfpNoZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tYNunfpNoZ .modal-header .close svg {
  fill: #353535;
}
.cid-tYNunfpNoZ .modal-header .close:hover {
  opacity: 1;
}
.cid-tYNunfpNoZ .modal-header .close:focus {
  outline: none;
}
.cid-tYNunfpNoZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tYNunfpNoZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tYNunfpNoZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNunfpNoZ .modal-body {
    padding: 1rem;
  }
}
.cid-tYNunfpNoZ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tYNunfpNoZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNunfpNoZ .modal-footer {
    padding: 1rem;
  }
}
.cid-tYNunfpNoZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tYNunfpNoZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tYNunfpNoZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tYNunfpNoZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tYNunfpNoZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tYNunfpNoZ .modal-lg,
  .cid-tYNunfpNoZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tYNunfpNoZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-tYNunfpNoZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tYNunfpNoZ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tYNunfpNoZ .form-group {
  margin-bottom: 1rem;
}
.cid-tYNunfpNoZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tYNunfpNoZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tYNunfpNoZ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tYNunfpNoZ .mbr-section-btn {
  margin: 0;
}
.cid-tYNunfpNoZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-tYNunfUsFN.popup-builder {
  background-color: #ffffff;
}
.cid-tYNunfUsFN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tYNunfUsFN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tYNunfUsFN .modal-content,
.cid-tYNunfUsFN .modal-dialog {
  height: auto;
}
.cid-tYNunfUsFN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tYNunfUsFN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tYNunfUsFN .form-wrapper .mbr-form .form-group,
  .cid-tYNunfUsFN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tYNunfUsFN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tYNunfUsFN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tYNunfUsFN .mbr-text {
  text-align: center;
}
.cid-tYNunfUsFN .pt-0 {
  padding-top: 0 !important;
}
.cid-tYNunfUsFN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tYNunfUsFN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tYNunfUsFN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tYNunfUsFN .modal-open {
  overflow: hidden;
}
.cid-tYNunfUsFN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tYNunfUsFN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tYNunfUsFN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tYNunfUsFN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tYNunfUsFN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tYNunfUsFN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tYNunfUsFN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tYNunfUsFN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tYNunfUsFN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tYNunfUsFN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tYNunfUsFN .modal-backdrop.fade {
  opacity: 0;
}
.cid-tYNunfUsFN .modal-backdrop.show {
  opacity: .5;
}
.cid-tYNunfUsFN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tYNunfUsFN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNunfUsFN .modal-header {
    padding: 1rem;
  }
}
.cid-tYNunfUsFN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tYNunfUsFN .modal-header .close svg {
  fill: #353535;
}
.cid-tYNunfUsFN .modal-header .close:hover {
  opacity: 1;
}
.cid-tYNunfUsFN .modal-header .close:focus {
  outline: none;
}
.cid-tYNunfUsFN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tYNunfUsFN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tYNunfUsFN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNunfUsFN .modal-body {
    padding: 1rem;
  }
}
.cid-tYNunfUsFN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tYNunfUsFN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYNunfUsFN .modal-footer {
    padding: 1rem;
  }
}
.cid-tYNunfUsFN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tYNunfUsFN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tYNunfUsFN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tYNunfUsFN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tYNunfUsFN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tYNunfUsFN .modal-lg,
  .cid-tYNunfUsFN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tYNunfUsFN .modal-xl {
    max-width: 1140px;
  }
}
.cid-tYNunfUsFN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tYNunfUsFN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tYNunfUsFN .form-group {
  margin-bottom: 1rem;
}
.cid-tYNunfUsFN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tYNunfUsFN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tYNunfUsFN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tYNunfUsFN .mbr-section-btn {
  margin: 0;
}
.cid-tYNunfUsFN .mbr-section-btn .btn {
  margin: 0;
}
