body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.25rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.96875rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.975rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.9rem;
    font-size: calc( 1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f32626 !important;
}
.bg-success {
  background-color: #ffe161 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #9f6d2a !important;
}
.bg-danger {
  background-color: #73460b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f32626 !important;
  border-color: #f32626 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b80a0a !important;
  border-color: #b80a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b80a0a !important;
  border-color: #b80a0a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c69453 !important;
  border-color: #c69453 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #926830 !important;
  border-color: #926830 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #926830 !important;
  border-color: #926830 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #9f6d2a !important;
  border-color: #9f6d2a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5a3e18 !important;
  border-color: #5a3e18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a3e18 !important;
  border-color: #5a3e18 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73460b !important;
  border-color: #73460b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #241603 !important;
  border-color: #241603 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #241603 !important;
  border-color: #241603 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
  color: #95785a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #5f4c39 !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #95785a !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f32626;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b80a0a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f32626 !important;
  border-color: #f32626 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c69453;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #926830 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c69453 !important;
  border-color: #c69453 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9f6d2a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5a3e18 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #9f6d2a !important;
  border-color: #9f6d2a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #73460b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #241603 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #73460b !important;
  border-color: #73460b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #222222;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f9f7f5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d8ccbf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #95785a !important;
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
}
.text-primary {
  color: #f32626 !important;
}
.text-secondary {
  color: #c69453 !important;
}
.text-success {
  color: #ffe161 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #9f6d2a !important;
}
.text-danger {
  color: #73460b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #aa0909 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #865f2d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #facb00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #4e3615 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #160d02 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d3c4b5 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f32626;
}
.nav-tabs .nav-link:not(.active) {
  color: #222222;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #9f6d2a;
}
.alert-danger {
  background-color: #73460b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f32626;
  border-color: #f32626;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f32626;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fee7e7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #d9ac6f;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e78d16;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.71875rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f32626 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.71875rem;
}
blockquote {
  border-color: #f32626;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f32626;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f32626;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f32626;
  border-bottom-color: #f32626;
}
.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: #f32626 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #c69453 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f32626' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.container {
  max-width: 1302px;
}
.btn {
  padding: 12px 24px;
  border-radius: 0;
  letter-spacing: 3px;
}
.btn-big {
  padding: 20px 40px !important;
}
.btn-scale {
  transition: 0.3s all;
}
.btn-scale:hover {
  transform: scale(0.9);
}
.cid-sSNfAITF5h .navbar-dropdown {
  position: relative !important;
}
.cid-sSNfAITF5h .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNfAITF5h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSNfAITF5h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSNfAITF5h .dropdown-item:hover,
.cid-sSNfAITF5h .dropdown-item:focus {
  background: #f32626 !important;
  color: white !important;
}
.cid-sSNfAITF5h .dropdown-item:hover span {
  color: white;
}
.cid-sSNfAITF5h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSNfAITF5h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSNfAITF5h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSNfAITF5h .nav-link {
  position: relative;
}
.cid-sSNfAITF5h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .container {
    flex-wrap: nowrap;
  }
}
.cid-sSNfAITF5h .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSNfAITF5h .dropdown-menu,
.cid-sSNfAITF5h .navbar.opened {
  background: #ffffff !important;
}
.cid-sSNfAITF5h .nav-item:focus,
.cid-sSNfAITF5h .nav-link:focus {
  outline: none;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNfAITF5h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSNfAITF5h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSNfAITF5h .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sSNfAITF5h .navbar.opened {
  transition: all 0.3s;
}
.cid-sSNfAITF5h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSNfAITF5h .navbar .navbar-logo img {
  width: auto;
}
.cid-sSNfAITF5h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSNfAITF5h .navbar.collapsed {
  justify-content: center;
}
.cid-sSNfAITF5h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSNfAITF5h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sSNfAITF5h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSNfAITF5h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSNfAITF5h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSNfAITF5h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sSNfAITF5h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSNfAITF5h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSNfAITF5h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSNfAITF5h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSNfAITF5h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSNfAITF5h .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSNfAITF5h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSNfAITF5h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSNfAITF5h .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSNfAITF5h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSNfAITF5h .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar-brand {
    padding-right: 40px;
  }
}
.cid-sSNfAITF5h .dropdown-item.active,
.cid-sSNfAITF5h .dropdown-item:active {
  background-color: transparent;
}
.cid-sSNfAITF5h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSNfAITF5h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSNfAITF5h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSNfAITF5h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSNfAITF5h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSNfAITF5h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSNfAITF5h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNfAITF5h .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sSNfAITF5h .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sSNfAITF5h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSNfAITF5h .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSNfAITF5h .navbar {
    height: 70px;
  }
  .cid-sSNfAITF5h .navbar.opened {
    height: auto;
  }
  .cid-sSNfAITF5h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSNfAITF5h .container,
.cid-sSNfAITF5h .container-fluid {
  flex-wrap: wrap;
}
.cid-sSNfAITF5h .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-sSNfAITF5h .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-sSNfAITF5h .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-sSNfAITF5h .contacts-menu {
    display: none;
  }
}
.cid-sSNfAITF5h .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-sSNfAITF5h .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #f32626;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-sSNfAITF5h .icon-box:hover {
  transform: scale(1.1);
}
.cid-sSNfAITF5h .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-sSNfAITF5h .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-sSNfAITF5h .navbar-collapse .mbr-section-btn .btn-black {
  color: #f32626 !important;
}
@media (max-width: 577px) {
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-sSNfAITF5h .navbar-collapse .nav-link:hover {
  color: #f32626 !important;
}
.cid-sSwPHs3H2U {
  background-image: url("../../../assets/images/hiram-roofing-company-1540x866.jpg");
}
.cid-sSwPHs3H2U .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sSwPHs3H2U .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-sSwPHs3H2U .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sSwPHs3H2U .label-text {
    text-align: center !important;
  }
}
.cid-sSwPHs3H2U .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSwPHs3H2U .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sSwPHs3H2U .mbr-section-title,
.cid-sSwPHs3H2U .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tNaCftBjGP {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fdfcfa;
}
.cid-tNaCftBjGP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNaCftBjGP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNaCftBjGP .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tNaCftBjGP .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tNaCftBjGP .container {
    padding: 0;
  }
}
.cid-tNaCftBjGP .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tNaCftBjGP .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tNaCftBjGP .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tNaCftBjGP .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tNaCftBjGP .mbr-section-title {
  color: #263652;
}
.cid-tNaCftBjGP .mbr-text {
  color: #263652;
}
.cid-sSwTkM5eXb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-sSwTkM5eXb .image-wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-sSwTkM5eXb .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-sSwTkM5eXb .image-wrapper {
    padding: 30px;
  }
}
.cid-sSwTkM5eXb .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-sSwTkM5eXb .image-wrapper img {
  height: 200px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-sSwTkM5eXb .image-wrapper img {
    height: 277px;
  }
}
@media (max-width: 991px) {
  .cid-sSwTkM5eXb .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-sSwTkM5eXb .col-text {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sSwTkM5eXb .col-text {
    text-align: center;
  }
}
.cid-sSwTkM5eXb .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sSwTkM5eXb .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #f32626;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sSwTkM5eXb .label-text {
    text-align: center !important;
  }
}
.cid-sSwTkM5eXb .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
  width: 100%;
}
.cid-sSwTkM5eXb .mbr-text {
  color: #a06e2c;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-sSwTkM5eXb .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sSwTkM5eXb .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSwTkM5eXb .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sSwTkM5eXb .mbr-section-title,
.cid-sSwTkM5eXb .mbr-section-btn {
  text-align: left;
}
.cid-tNaDrjzcWe {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNaDrjzcWe img {
  object-fit: cover;
}
.cid-tNaDK29OiJ {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #bfdeed;
}
.cid-tNaDK29OiJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNaDK29OiJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNaEafXDgF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tNaEafXDgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNaEafXDgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNaEafXDgF .container {
    padding: 0 30px;
  }
}
.cid-tNaEafXDgF .row {
  position: relative;
}
.cid-tNaEafXDgF .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tNaEafXDgF .row img {
    top: auto;
    width: 100%;
  }
}
.cid-tNaEafXDgF .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tNaEafXDgF .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-tNaEafXDgF .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tNaEafXDgF .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tNaEafXDgF .mbr-text {
  color: #212529;
}
.cid-tNaEafXDgF .mbr-link,
.cid-tNaEafXDgF .mbr-iconfont {
  color: #212529;
}
.cid-tNb6ivH6wX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfdeed;
}
.cid-tNb6ivH6wX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNb6ivH6wX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tNb6ivH6wX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tNb6ivH6wX .row {
  flex-direction: row-reverse;
}
.cid-tNb6ivH6wX img {
  width: 100%;
  border: 3px solid #f32626;
  border-radius: 2rem;
}
.cid-tNb6ivH6wX .mbr-text {
  color: #04492e;
}
.cid-tNaELNI3DG {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tNaELNI3DG .mbr-text {
  text-align: left;
  color: #151515;
}
.cid-tNaELNI3DG .mbr-section-subtitle {
  text-align: center;
}
.cid-tNb5h2H4TC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-tNb5h2H4TC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNb5h2H4TC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNb5h2H4TC .row {
  margin: 0 !important;
}
.cid-tNb5h2H4TC .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tNb5h2H4TC .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tNb5h2H4TC .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tNb5h2H4TC .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tNb5h2H4TC .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tNb5h2H4TC .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tNb5h2H4TC .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tNb5h2H4TC .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tNb5h2H4TC .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tNb5h2H4TC .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tNb5h2H4TC .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tNb5h2H4TC .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tNb5h2H4TC .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tNb5h2H4TC .panel-group {
  border: none;
}
.cid-tNb5h2H4TC .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tNb5h2H4TC .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tNb5h2H4TC .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tNb5h2H4TC .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tNb5h2H4TC .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tNb5h2H4TC .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tNb5h2H4TC .panel-title-edit {
  color: #131313;
}
.cid-tNb5h2H4TC .panel-body {
  padding: 0 0 20px;
}
.cid-tNb5h2H4TC .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tNaLh1o3sa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNaLh1o3sa .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tNaLh1o3sa .row {
    text-align: center !important;
  }
}
.cid-tNaLh1o3sa .col-text {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-tNaLh1o3sa .col-text {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.cid-tNaLh1o3sa .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tNaLh1o3sa .text-wrapper {
    text-align: center !important;
  }
}
.cid-tNaLh1o3sa .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNaLh1o3sa .label-text {
    text-align: center !important;
  }
}
.cid-tNaLh1o3sa .mbr-section-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNaLh1o3sa .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tNaLh1o3sa .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tNaLh1o3sa .mbr-text {
    text-align: center !important;
  }
}
.cid-tNaLh1o3sa .btn-container {
  width: 100%;
  margin-top: 16px;
}
.cid-tNaLh1o3sa .mbr-section-btn .btn {
  padding: 0;
}
.cid-tNaLh1o3sa .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-tNaLh1o3sa .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-tNaLh1o3sa .col-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 48px;
}
@media (max-width: 991px) {
  .cid-tNaLh1o3sa .col-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) {
  .cid-tNaLh1o3sa .col-cards {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.cid-tNaLh1o3sa .col-cards-second {
  padding-top: 48px;
  border-top: 1px solid #555555;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tNaLh1o3sa .card {
    margin-bottom: 1rem;
  }
}
.cid-tNaLh1o3sa .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-tNaLh1o3sa .card-title {
  color: #222222;
  margin-bottom: 8px;
}
.cid-tNaLh1o3sa .card-date {
  color: #999999;
  margin-bottom: 12px;
}
.cid-tNaLh1o3sa .card-text {
  color: #555555;
  margin-bottom: 0;
}
.cid-tNaLh1o3sa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNaLh1o3sa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbhr9bJy1 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-tNbhr9bJy1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbhr9bJy1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNbhr9bJy1 .container {
    padding: 0 16px;
  }
}
.cid-tNbhr9bJy1 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tNbhr9bJy1 .card {
    margin-bottom: 60px;
  }
}
.cid-tNbhr9bJy1 .card .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tNbhr9bJy1 .card .icon-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tNbhr9bJy1 .card .icon-wrapper .icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
}
.cid-tNbhr9bJy1 .card .icon-wrapper .icon-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .6;
  border-radius: 100%;
}
.cid-tNbhr9bJy1 .card .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: #ffffff;
  color: #08323c;
  border-radius: 100%;
  z-index: 1;
}
.cid-tNbhr9bJy1 .card .content-wrapper .mbr-section-title {
  margin-bottom: 14px;
}
.cid-tNbhr9bJy1 .card .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tNbhr9bJy1 .mbr-section-title {
  color: #08323C;
}
.cid-tNbhr9bJy1 .mbr-text {
  color: #08323C;
}
.cid-tNaBhudXvt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNaBhudXvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNaBhudXvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNaBhudXvt .container {
    padding: 0 20px;
  }
}
.cid-tNaBhudXvt .row {
  margin: 0;
}
.cid-tNaBhudXvt .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tNaBhudXvt .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tNaBhudXvt .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tNaBhudXvt .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tNaBhudXvt .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tNaBhudXvt .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tNaBhudXvt .mbr-section-title {
  color: #000000;
}
.cid-tNg7m9zqI7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tNg7m9zqI7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNg7m9zqI7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNg7m9zqI7 .google-map {
  height: 35rem;
  position: relative;
}
.cid-tNg7m9zqI7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tNg7m9zqI7 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tNg7m9zqI7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tNg7m9zqI7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tNg7m9zqI7 .mbr-section-title {
  color: #00004c;
}
.cid-tNau0mqhBC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #c8eafb;
}
.cid-tNau0mqhBC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNau0mqhBC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNau0mqhBC .row {
  justify-content: space-between;
}
.cid-tNau0mqhBC .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tNau0mqhBC .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tNau0mqhBC .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tNau0mqhBC .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tNau0mqhBC .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #f32626;
}
.cid-tNau0mqhBC .list li {
  margin-bottom: 25px;
}
.cid-tNau0mqhBC .list li:last-child {
  margin-bottom: 0;
}
.cid-tNau0mqhBC .mbr-desc {
  margin-bottom: 8px;
}
.cid-tNau0mqhBC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tNau0mqhBC .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tNau0mqhBC .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-tNau0mqhBC .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tNau0mqhBC .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-tNau0mqhBC .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tNau0mqhBC .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tNau0mqhBC .mbr-desc,
.cid-tNau0mqhBC .mbr-iconfont {
  color: #000000;
}
.cid-tNau0mqhBC .mbr-text,
.cid-tNau0mqhBC .mbr-section-btn {
  color: #f32626;
}
.cid-sSNfAITF5h .navbar-dropdown {
  position: relative !important;
}
.cid-sSNfAITF5h .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNfAITF5h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSNfAITF5h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSNfAITF5h .dropdown-item:hover,
.cid-sSNfAITF5h .dropdown-item:focus {
  background: #f32626 !important;
  color: white !important;
}
.cid-sSNfAITF5h .dropdown-item:hover span {
  color: white;
}
.cid-sSNfAITF5h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSNfAITF5h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSNfAITF5h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSNfAITF5h .nav-link {
  position: relative;
}
.cid-sSNfAITF5h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .container {
    flex-wrap: nowrap;
  }
}
.cid-sSNfAITF5h .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSNfAITF5h .dropdown-menu,
.cid-sSNfAITF5h .navbar.opened {
  background: #ffffff !important;
}
.cid-sSNfAITF5h .nav-item:focus,
.cid-sSNfAITF5h .nav-link:focus {
  outline: none;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNfAITF5h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSNfAITF5h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSNfAITF5h .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sSNfAITF5h .navbar.opened {
  transition: all 0.3s;
}
.cid-sSNfAITF5h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSNfAITF5h .navbar .navbar-logo img {
  width: auto;
}
.cid-sSNfAITF5h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSNfAITF5h .navbar.collapsed {
  justify-content: center;
}
.cid-sSNfAITF5h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSNfAITF5h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sSNfAITF5h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSNfAITF5h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSNfAITF5h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSNfAITF5h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sSNfAITF5h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSNfAITF5h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSNfAITF5h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSNfAITF5h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSNfAITF5h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSNfAITF5h .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSNfAITF5h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSNfAITF5h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSNfAITF5h .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSNfAITF5h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSNfAITF5h .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar-brand {
    padding-right: 40px;
  }
}
.cid-sSNfAITF5h .dropdown-item.active,
.cid-sSNfAITF5h .dropdown-item:active {
  background-color: transparent;
}
.cid-sSNfAITF5h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSNfAITF5h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSNfAITF5h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSNfAITF5h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSNfAITF5h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSNfAITF5h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSNfAITF5h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNfAITF5h .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sSNfAITF5h .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sSNfAITF5h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSNfAITF5h .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSNfAITF5h .navbar {
    height: 70px;
  }
  .cid-sSNfAITF5h .navbar.opened {
    height: auto;
  }
  .cid-sSNfAITF5h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSNfAITF5h .container,
.cid-sSNfAITF5h .container-fluid {
  flex-wrap: wrap;
}
.cid-sSNfAITF5h .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-sSNfAITF5h .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-sSNfAITF5h .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-sSNfAITF5h .contacts-menu {
    display: none;
  }
}
.cid-sSNfAITF5h .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-sSNfAITF5h .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #f32626;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-sSNfAITF5h .icon-box:hover {
  transform: scale(1.1);
}
.cid-sSNfAITF5h .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-sSNfAITF5h .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-sSNfAITF5h .navbar-collapse .mbr-section-btn .btn-black {
  color: #f32626 !important;
}
@media (max-width: 577px) {
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-sSNfAITF5h .navbar-collapse .nav-link:hover {
  color: #f32626 !important;
}
.cid-tNbEfxBBBA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/hiram-roofing-company-7-1200x628.jpg");
}
.cid-tNbEfxBBBA .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tNbEfxBBBA .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNbEfxBBBA .col-text {
    padding: 30px;
  }
}
.cid-tNbEfxBBBA .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNbEfxBBBA .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNbEfxBBBA .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-tNbEfxBBBA .col-form {
    max-height: 440px;
  }
}
.cid-tNbEfxBBBA .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tNbEfxBBBA .text-wrapper {
    text-align: center !important;
  }
}
.cid-tNbEfxBBBA .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tNbEfxBBBA .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tNbEfxBBBA .mbr-text {
  letter-spacing: inherit;
  color: #222222;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tNbEfxBBBA .mbr-text {
    text-align: center !important;
  }
}
.cid-tNbEfxBBBA .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-tNbEfxBBBA .name-text {
  color: #222222;
  width: 100%;
}
.cid-tNbEfxBBBA .prof-text {
  color: #555555;
  width: 100%;
}
.cid-tNbEfxBBBA .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-tNbEfxBBBA .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-tNbEfxBBBA .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tNbEfxBBBA .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tNbEfxBBBA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbEfxBBBA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbEfxBBBA .mbr-section-title,
.cid-tNbEfxBBBA .mbr-section-btn {
  text-align: center;
}
.cid-tNbEjXoaH5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecf7fd;
}
.cid-tNbEjXoaH5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbEjXoaH5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNbEjXoaH5 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tNbEjXoaH5 .container {
    padding: 0 12px;
  }
}
.cid-tNbEjXoaH5 .row {
  justify-content: center;
}
.cid-tNbEjXoaH5 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #ffffff;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-tNbEjXoaH5 .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-tNbEjXoaH5 .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tNbEjXoaH5 .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tNbEjXoaH5 .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tNbEjXoaH5 .card-wrapper .title-wrapper .mbr-text span {
  background-color: #ffffff;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-tNbEjXoaH5 .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-tNbEjXoaH5 .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-tNbEjXoaH5 .mbr-section-title {
  color: #222222;
}
.cid-tNbEjXoaH5 .mbr-text {
  color: #222222;
}
.cid-tNau0mqhBC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #c8eafb;
}
.cid-tNau0mqhBC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNau0mqhBC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNau0mqhBC .row {
  justify-content: space-between;
}
.cid-tNau0mqhBC .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tNau0mqhBC .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tNau0mqhBC .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tNau0mqhBC .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tNau0mqhBC .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #f32626;
}
.cid-tNau0mqhBC .list li {
  margin-bottom: 25px;
}
.cid-tNau0mqhBC .list li:last-child {
  margin-bottom: 0;
}
.cid-tNau0mqhBC .mbr-desc {
  margin-bottom: 8px;
}
.cid-tNau0mqhBC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tNau0mqhBC .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tNau0mqhBC .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-tNau0mqhBC .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tNau0mqhBC .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-tNau0mqhBC .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tNau0mqhBC .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tNau0mqhBC .mbr-desc,
.cid-tNau0mqhBC .mbr-iconfont {
  color: #000000;
}
.cid-tNau0mqhBC .mbr-text,
.cid-tNau0mqhBC .mbr-section-btn {
  color: #f32626;
}
.cid-tNga6xRqsn .navbar-dropdown {
  position: relative !important;
}
.cid-tNga6xRqsn .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNga6xRqsn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNga6xRqsn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNga6xRqsn .dropdown-item:hover,
.cid-tNga6xRqsn .dropdown-item:focus {
  background: #f32626 !important;
  color: white !important;
}
.cid-tNga6xRqsn .dropdown-item:hover span {
  color: white;
}
.cid-tNga6xRqsn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNga6xRqsn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNga6xRqsn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNga6xRqsn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNga6xRqsn .nav-link {
  position: relative;
}
.cid-tNga6xRqsn .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tNga6xRqsn .container {
    flex-wrap: nowrap;
  }
}
.cid-tNga6xRqsn .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNga6xRqsn .dropdown-menu,
.cid-tNga6xRqsn .navbar.opened {
  background: #ffffff !important;
}
.cid-tNga6xRqsn .nav-item:focus,
.cid-tNga6xRqsn .nav-link:focus {
  outline: none;
}
.cid-tNga6xRqsn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNga6xRqsn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNga6xRqsn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNga6xRqsn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNga6xRqsn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNga6xRqsn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNga6xRqsn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tNga6xRqsn .navbar.opened {
  transition: all 0.3s;
}
.cid-tNga6xRqsn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNga6xRqsn .navbar .navbar-logo img {
  width: auto;
}
.cid-tNga6xRqsn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNga6xRqsn .navbar.collapsed {
  justify-content: center;
}
.cid-tNga6xRqsn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNga6xRqsn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNga6xRqsn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tNga6xRqsn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNga6xRqsn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNga6xRqsn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tNga6xRqsn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNga6xRqsn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNga6xRqsn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNga6xRqsn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNga6xRqsn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNga6xRqsn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNga6xRqsn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNga6xRqsn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tNga6xRqsn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNga6xRqsn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNga6xRqsn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNga6xRqsn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNga6xRqsn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNga6xRqsn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNga6xRqsn .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNga6xRqsn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNga6xRqsn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNga6xRqsn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNga6xRqsn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNga6xRqsn .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tNga6xRqsn .navbar-brand {
    padding-right: 40px;
  }
}
.cid-tNga6xRqsn .dropdown-item.active,
.cid-tNga6xRqsn .dropdown-item:active {
  background-color: transparent;
}
.cid-tNga6xRqsn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNga6xRqsn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNga6xRqsn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNga6xRqsn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNga6xRqsn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNga6xRqsn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNga6xRqsn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNga6xRqsn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNga6xRqsn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNga6xRqsn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-tNga6xRqsn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNga6xRqsn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNga6xRqsn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNga6xRqsn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNga6xRqsn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNga6xRqsn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNga6xRqsn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNga6xRqsn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNga6xRqsn .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tNga6xRqsn .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-tNga6xRqsn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNga6xRqsn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNga6xRqsn .navbar {
    height: 70px;
  }
  .cid-tNga6xRqsn .navbar.opened {
    height: auto;
  }
  .cid-tNga6xRqsn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNga6xRqsn .container,
.cid-tNga6xRqsn .container-fluid {
  flex-wrap: wrap;
}
.cid-tNga6xRqsn .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-tNga6xRqsn .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-tNga6xRqsn .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-tNga6xRqsn .contacts-menu {
    display: none;
  }
}
.cid-tNga6xRqsn .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-tNga6xRqsn .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #f32626;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-tNga6xRqsn .icon-box:hover {
  transform: scale(1.1);
}
.cid-tNga6xRqsn .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-tNga6xRqsn .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-tNga6xRqsn .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-tNga6xRqsn .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-tNga6xRqsn .navbar-collapse .mbr-section-btn .btn-black {
  color: #f32626 !important;
}
@media (max-width: 577px) {
  .cid-tNga6xRqsn .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tNga6xRqsn .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-tNga6xRqsn .navbar-collapse .nav-link:hover {
  color: #f32626 !important;
}
.cid-tNga6yrWy6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/the-best-roofing-companies-options-1254x837.jpg");
}
.cid-tNga6yrWy6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tNga6yrWy6 .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNga6yrWy6 .col-text {
    padding: 30px;
  }
}
.cid-tNga6yrWy6 .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNga6yrWy6 .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNga6yrWy6 .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-tNga6yrWy6 .col-form {
    max-height: 440px;
  }
}
.cid-tNga6yrWy6 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tNga6yrWy6 .text-wrapper {
    text-align: center !important;
  }
}
.cid-tNga6yrWy6 .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tNga6yrWy6 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tNga6yrWy6 .mbr-text {
  letter-spacing: inherit;
  color: #222222;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tNga6yrWy6 .mbr-text {
    text-align: center !important;
  }
}
.cid-tNga6yrWy6 .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-tNga6yrWy6 .name-text {
  color: #222222;
  width: 100%;
}
.cid-tNga6yrWy6 .prof-text {
  color: #555555;
  width: 100%;
}
.cid-tNga6yrWy6 .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-tNga6yrWy6 .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-tNga6yrWy6 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tNga6yrWy6 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tNga6yrWy6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNga6yrWy6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNga6yrWy6 .mbr-section-title,
.cid-tNga6yrWy6 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tNga6yYT0u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ecf7fd;
}
.cid-tNga6yYT0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNga6yYT0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNga6yYT0u .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tNga6yYT0u .container {
    padding: 0 12px;
  }
}
.cid-tNga6yYT0u .row {
  justify-content: center;
}
.cid-tNga6yYT0u .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #ffffff;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-tNga6yYT0u .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-tNga6yYT0u .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tNga6yYT0u .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tNga6yYT0u .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tNga6yYT0u .card-wrapper .title-wrapper .mbr-text span {
  background-color: #ffffff;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-tNga6yYT0u .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-tNga6yYT0u .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-tNga6yYT0u .mbr-section-title {
  color: #222222;
}
.cid-tNga6yYT0u .mbr-text {
  color: #222222;
}
.cid-tNga6zuTOg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #c8eafb;
}
.cid-tNga6zuTOg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNga6zuTOg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNga6zuTOg .row {
  justify-content: space-between;
}
.cid-tNga6zuTOg .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tNga6zuTOg .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tNga6zuTOg .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tNga6zuTOg .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tNga6zuTOg .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #f32626;
}
.cid-tNga6zuTOg .list li {
  margin-bottom: 25px;
}
.cid-tNga6zuTOg .list li:last-child {
  margin-bottom: 0;
}
.cid-tNga6zuTOg .mbr-desc {
  margin-bottom: 8px;
}
.cid-tNga6zuTOg .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tNga6zuTOg .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tNga6zuTOg .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-tNga6zuTOg .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tNga6zuTOg .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-tNga6zuTOg .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tNga6zuTOg .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tNga6zuTOg .mbr-desc,
.cid-tNga6zuTOg .mbr-iconfont {
  color: #000000;
}
.cid-tNga6zuTOg .mbr-text,
.cid-tNga6zuTOg .mbr-section-btn {
  color: #f32626;
}
.cid-tNbIBF7gvH .navbar-dropdown {
  position: relative !important;
}
.cid-tNbIBF7gvH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNbIBF7gvH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNbIBF7gvH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNbIBF7gvH .dropdown-item:hover,
.cid-tNbIBF7gvH .dropdown-item:focus {
  background: #f32626 !important;
  color: white !important;
}
.cid-tNbIBF7gvH .dropdown-item:hover span {
  color: white;
}
.cid-tNbIBF7gvH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNbIBF7gvH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNbIBF7gvH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNbIBF7gvH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNbIBF7gvH .nav-link {
  position: relative;
}
.cid-tNbIBF7gvH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tNbIBF7gvH .container {
    flex-wrap: nowrap;
  }
}
.cid-tNbIBF7gvH .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNbIBF7gvH .dropdown-menu,
.cid-tNbIBF7gvH .navbar.opened {
  background: #ffffff !important;
}
.cid-tNbIBF7gvH .nav-item:focus,
.cid-tNbIBF7gvH .nav-link:focus {
  outline: none;
}
.cid-tNbIBF7gvH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNbIBF7gvH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNbIBF7gvH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNbIBF7gvH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNbIBF7gvH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNbIBF7gvH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNbIBF7gvH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tNbIBF7gvH .navbar.opened {
  transition: all 0.3s;
}
.cid-tNbIBF7gvH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNbIBF7gvH .navbar .navbar-logo img {
  width: auto;
}
.cid-tNbIBF7gvH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNbIBF7gvH .navbar.collapsed {
  justify-content: center;
}
.cid-tNbIBF7gvH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNbIBF7gvH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNbIBF7gvH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tNbIBF7gvH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNbIBF7gvH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNbIBF7gvH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tNbIBF7gvH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNbIBF7gvH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNbIBF7gvH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNbIBF7gvH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNbIBF7gvH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNbIBF7gvH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNbIBF7gvH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNbIBF7gvH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tNbIBF7gvH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNbIBF7gvH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNbIBF7gvH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNbIBF7gvH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNbIBF7gvH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNbIBF7gvH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNbIBF7gvH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNbIBF7gvH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNbIBF7gvH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNbIBF7gvH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNbIBF7gvH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNbIBF7gvH .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tNbIBF7gvH .navbar-brand {
    padding-right: 40px;
  }
}
.cid-tNbIBF7gvH .dropdown-item.active,
.cid-tNbIBF7gvH .dropdown-item:active {
  background-color: transparent;
}
.cid-tNbIBF7gvH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNbIBF7gvH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNbIBF7gvH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNbIBF7gvH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNbIBF7gvH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNbIBF7gvH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNbIBF7gvH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNbIBF7gvH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNbIBF7gvH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNbIBF7gvH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-tNbIBF7gvH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNbIBF7gvH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNbIBF7gvH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNbIBF7gvH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNbIBF7gvH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNbIBF7gvH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNbIBF7gvH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNbIBF7gvH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNbIBF7gvH .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tNbIBF7gvH .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-tNbIBF7gvH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNbIBF7gvH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNbIBF7gvH .navbar {
    height: 70px;
  }
  .cid-tNbIBF7gvH .navbar.opened {
    height: auto;
  }
  .cid-tNbIBF7gvH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNbIBF7gvH .container,
.cid-tNbIBF7gvH .container-fluid {
  flex-wrap: wrap;
}
.cid-tNbIBF7gvH .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-tNbIBF7gvH .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-tNbIBF7gvH .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-tNbIBF7gvH .contacts-menu {
    display: none;
  }
}
.cid-tNbIBF7gvH .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-tNbIBF7gvH .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #f32626;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-tNbIBF7gvH .icon-box:hover {
  transform: scale(1.1);
}
.cid-tNbIBF7gvH .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-tNbIBF7gvH .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-tNbIBF7gvH .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-tNbIBF7gvH .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-tNbIBF7gvH .navbar-collapse .mbr-section-btn .btn-black {
  color: #f32626 !important;
}
@media (max-width: 577px) {
  .cid-tNbIBF7gvH .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tNbIBF7gvH .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-tNbIBF7gvH .navbar-collapse .nav-link:hover {
  color: #f32626 !important;
}
.cid-tNbIBGiSk1 {
  background-image: url("../../../assets/images/hiram-roofing-1620x1080.jpg");
}
.cid-tNbIBGiSk1 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tNbIBGiSk1 .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tNbIBGiSk1 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbIBGiSk1 .label-text {
    text-align: center !important;
  }
}
.cid-tNbIBGiSk1 .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNbIBGiSk1 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tNbIBGiSk1 .mbr-section-title,
.cid-tNbIBGiSk1 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tNbIBHoxc8 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fdfcfa;
}
.cid-tNbIBHoxc8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbIBHoxc8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbIBHoxc8 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tNbIBHoxc8 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tNbIBHoxc8 .container {
    padding: 0;
  }
}
.cid-tNbIBHoxc8 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tNbIBHoxc8 .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tNbIBHoxc8 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tNbIBHoxc8 .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tNbIBHoxc8 .mbr-section-title {
  color: #263652;
}
.cid-tNbIBHoxc8 .mbr-text {
  color: #263652;
}
.cid-tNbIBItKBa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-tNbIBItKBa .image-wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-tNbIBItKBa .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNbIBItKBa .image-wrapper {
    padding: 30px;
  }
}
.cid-tNbIBItKBa .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-tNbIBItKBa .image-wrapper img {
  height: 200px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tNbIBItKBa .image-wrapper img {
    height: 277px;
  }
}
@media (max-width: 991px) {
  .cid-tNbIBItKBa .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNbIBItKBa .col-text {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tNbIBItKBa .col-text {
    text-align: center;
  }
}
.cid-tNbIBItKBa .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tNbIBItKBa .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #f32626;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbIBItKBa .label-text {
    text-align: center !important;
  }
}
.cid-tNbIBItKBa .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
  width: 100%;
}
.cid-tNbIBItKBa .mbr-text {
  color: #a06e2c;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-tNbIBItKBa .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-tNbIBItKBa .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tNbIBItKBa .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tNbIBItKBa .mbr-section-title,
.cid-tNbIBItKBa .mbr-section-btn {
  text-align: left;
}
.cid-tNbIBJrNA4 {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNbIBJrNA4 img {
  object-fit: cover;
}
.cid-tNbIBKvX4O {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #bfdeed;
}
.cid-tNbIBKvX4O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbIBKvX4O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbIBMzKdS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tNbIBMzKdS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbIBMzKdS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tNbIBMzKdS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tNbIBMzKdS .row {
  flex-direction: row-reverse;
}
.cid-tNbIBMzKdS img {
  width: 100%;
  border: 3px solid #f32626;
  border-radius: 2rem;
}
.cid-tNbIBMzKdS .mbr-text {
  color: #04492e;
}
.cid-tNbIBLAl0H {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #bfdeed;
}
.cid-tNbIBLAl0H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbIBLAl0H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNbIBLAl0H .container {
    padding: 0 30px;
  }
}
.cid-tNbIBLAl0H .row {
  position: relative;
}
.cid-tNbIBLAl0H .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tNbIBLAl0H .row img {
    top: auto;
    width: 100%;
  }
}
.cid-tNbIBLAl0H .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tNbIBLAl0H .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-tNbIBLAl0H .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tNbIBLAl0H .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tNbIBLAl0H .mbr-text {
  color: #212529;
}
.cid-tNbIBLAl0H .mbr-link,
.cid-tNbIBLAl0H .mbr-iconfont {
  color: #212529;
}
.cid-tNgmzG00rl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNgmzG00rl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNgmzG00rl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNgmzG00rl .row {
  margin: 0 !important;
}
.cid-tNgmzG00rl .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tNgmzG00rl .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tNgmzG00rl .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tNgmzG00rl .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tNgmzG00rl .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tNgmzG00rl .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tNgmzG00rl .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tNgmzG00rl .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tNgmzG00rl .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tNgmzG00rl .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tNgmzG00rl .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tNgmzG00rl .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tNgmzG00rl .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tNgmzG00rl .panel-group {
  border: none;
}
.cid-tNgmzG00rl .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tNgmzG00rl .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tNgmzG00rl .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tNgmzG00rl .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tNgmzG00rl .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tNgmzG00rl .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tNgmzG00rl .panel-title-edit {
  color: #131313;
}
.cid-tNgmzG00rl .panel-body {
  padding: 0 0 20px;
}
.cid-tNgmzG00rl .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tNbIBQwNiv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-tNbIBQwNiv .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tNbIBQwNiv .row {
    text-align: center !important;
  }
}
.cid-tNbIBQwNiv .col-text {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-tNbIBQwNiv .col-text {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.cid-tNbIBQwNiv .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tNbIBQwNiv .text-wrapper {
    text-align: center !important;
  }
}
.cid-tNbIBQwNiv .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbIBQwNiv .label-text {
    text-align: center !important;
  }
}
.cid-tNbIBQwNiv .mbr-section-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbIBQwNiv .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tNbIBQwNiv .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tNbIBQwNiv .mbr-text {
    text-align: center !important;
  }
}
.cid-tNbIBQwNiv .btn-container {
  width: 100%;
  margin-top: 16px;
}
.cid-tNbIBQwNiv .mbr-section-btn .btn {
  padding: 0;
}
.cid-tNbIBQwNiv .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-tNbIBQwNiv .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-tNbIBQwNiv .col-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 48px;
}
@media (max-width: 991px) {
  .cid-tNbIBQwNiv .col-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) {
  .cid-tNbIBQwNiv .col-cards {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.cid-tNbIBQwNiv .col-cards-second {
  padding-top: 48px;
  border-top: 1px solid #555555;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tNbIBQwNiv .card {
    margin-bottom: 1rem;
  }
}
.cid-tNbIBQwNiv .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-tNbIBQwNiv .card-title {
  color: #222222;
  margin-bottom: 8px;
}
.cid-tNbIBQwNiv .card-date {
  color: #999999;
  margin-bottom: 12px;
}
.cid-tNbIBQwNiv .card-text {
  color: #555555;
  margin-bottom: 0;
}
.cid-tNbIBQwNiv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbIBQwNiv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbIBS5B6w {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNbIBS5B6w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbIBS5B6w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNbIBS5B6w .container {
    padding: 0 16px;
  }
}
.cid-tNbIBS5B6w .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tNbIBS5B6w .card {
    margin-bottom: 60px;
  }
}
.cid-tNbIBS5B6w .card .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tNbIBS5B6w .card .icon-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tNbIBS5B6w .card .icon-wrapper .icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
}
.cid-tNbIBS5B6w .card .icon-wrapper .icon-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .6;
  border-radius: 100%;
}
.cid-tNbIBS5B6w .card .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: #ffffff;
  color: #08323c;
  border-radius: 100%;
  z-index: 1;
}
.cid-tNbIBS5B6w .card .content-wrapper .mbr-section-title {
  margin-bottom: 14px;
}
.cid-tNbIBS5B6w .card .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tNbIBS5B6w .mbr-section-title {
  color: #08323C;
}
.cid-tNbIBS5B6w .mbr-text {
  color: #08323C;
}
.cid-tNbIBNGfbQ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #bfdeed;
}
.cid-tNbIBNGfbQ .mbr-text {
  text-align: left;
  color: #151515;
}
.cid-tNbIBNGfbQ .mbr-section-subtitle {
  text-align: center;
}
.cid-tNbIBOTSDK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNbIBOTSDK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbIBOTSDK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbIBOTSDK .row {
  margin: 0 !important;
}
.cid-tNbIBOTSDK .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tNbIBOTSDK .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tNbIBOTSDK .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tNbIBOTSDK .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tNbIBOTSDK .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tNbIBOTSDK .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tNbIBOTSDK .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tNbIBOTSDK .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tNbIBOTSDK .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tNbIBOTSDK .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tNbIBOTSDK .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tNbIBOTSDK .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tNbIBOTSDK .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tNbIBOTSDK .panel-group {
  border: none;
}
.cid-tNbIBOTSDK .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tNbIBOTSDK .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tNbIBOTSDK .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tNbIBOTSDK .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tNbIBOTSDK .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tNbIBOTSDK .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tNbIBOTSDK .panel-title-edit {
  color: #131313;
}
.cid-tNbIBOTSDK .panel-body {
  padding: 0 0 20px;
}
.cid-tNbIBOTSDK .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tNgkSznqDH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tNgkSznqDH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNgkSznqDH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNgkSznqDH .google-map {
  height: 35rem;
  position: relative;
}
.cid-tNgkSznqDH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tNgkSznqDH .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tNgkSznqDH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tNgkSznqDH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tNgkSznqDH .mbr-section-title {
  color: #00004c;
}
.cid-tNbIBUIa3n {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #c8eafb;
}
.cid-tNbIBUIa3n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbIBUIa3n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbIBUIa3n .row {
  justify-content: space-between;
}
.cid-tNbIBUIa3n .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tNbIBUIa3n .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tNbIBUIa3n .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tNbIBUIa3n .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tNbIBUIa3n .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #f32626;
}
.cid-tNbIBUIa3n .list li {
  margin-bottom: 25px;
}
.cid-tNbIBUIa3n .list li:last-child {
  margin-bottom: 0;
}
.cid-tNbIBUIa3n .mbr-desc {
  margin-bottom: 8px;
}
.cid-tNbIBUIa3n .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tNbIBUIa3n .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tNbIBUIa3n .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-tNbIBUIa3n .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tNbIBUIa3n .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-tNbIBUIa3n .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tNbIBUIa3n .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tNbIBUIa3n .mbr-desc,
.cid-tNbIBUIa3n .mbr-iconfont {
  color: #000000;
}
.cid-tNbIBUIa3n .mbr-text,
.cid-tNbIBUIa3n .mbr-section-btn {
  color: #f32626;
}
.cid-tNbNf02qvt .navbar-dropdown {
  position: relative !important;
}
.cid-tNbNf02qvt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNbNf02qvt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNbNf02qvt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNbNf02qvt .dropdown-item:hover,
.cid-tNbNf02qvt .dropdown-item:focus {
  background: #f32626 !important;
  color: white !important;
}
.cid-tNbNf02qvt .dropdown-item:hover span {
  color: white;
}
.cid-tNbNf02qvt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNbNf02qvt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNbNf02qvt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNbNf02qvt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNbNf02qvt .nav-link {
  position: relative;
}
.cid-tNbNf02qvt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tNbNf02qvt .container {
    flex-wrap: nowrap;
  }
}
.cid-tNbNf02qvt .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNbNf02qvt .dropdown-menu,
.cid-tNbNf02qvt .navbar.opened {
  background: #ffffff !important;
}
.cid-tNbNf02qvt .nav-item:focus,
.cid-tNbNf02qvt .nav-link:focus {
  outline: none;
}
.cid-tNbNf02qvt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNbNf02qvt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNbNf02qvt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNbNf02qvt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNbNf02qvt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNbNf02qvt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNbNf02qvt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tNbNf02qvt .navbar.opened {
  transition: all 0.3s;
}
.cid-tNbNf02qvt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNbNf02qvt .navbar .navbar-logo img {
  width: auto;
}
.cid-tNbNf02qvt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNbNf02qvt .navbar.collapsed {
  justify-content: center;
}
.cid-tNbNf02qvt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNbNf02qvt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNbNf02qvt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tNbNf02qvt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNbNf02qvt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNbNf02qvt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tNbNf02qvt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNbNf02qvt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNbNf02qvt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNbNf02qvt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNbNf02qvt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNbNf02qvt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNbNf02qvt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNbNf02qvt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tNbNf02qvt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNbNf02qvt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNbNf02qvt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNbNf02qvt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNbNf02qvt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNbNf02qvt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNbNf02qvt .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNbNf02qvt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNbNf02qvt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNbNf02qvt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNbNf02qvt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNbNf02qvt .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tNbNf02qvt .navbar-brand {
    padding-right: 40px;
  }
}
.cid-tNbNf02qvt .dropdown-item.active,
.cid-tNbNf02qvt .dropdown-item:active {
  background-color: transparent;
}
.cid-tNbNf02qvt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNbNf02qvt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNbNf02qvt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNbNf02qvt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNbNf02qvt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNbNf02qvt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNbNf02qvt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNbNf02qvt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNbNf02qvt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNbNf02qvt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-tNbNf02qvt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNbNf02qvt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNbNf02qvt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNbNf02qvt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNbNf02qvt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNbNf02qvt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNbNf02qvt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNbNf02qvt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNbNf02qvt .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tNbNf02qvt .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-tNbNf02qvt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNbNf02qvt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNbNf02qvt .navbar {
    height: 70px;
  }
  .cid-tNbNf02qvt .navbar.opened {
    height: auto;
  }
  .cid-tNbNf02qvt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNbNf02qvt .container,
.cid-tNbNf02qvt .container-fluid {
  flex-wrap: wrap;
}
.cid-tNbNf02qvt .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-tNbNf02qvt .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-tNbNf02qvt .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-tNbNf02qvt .contacts-menu {
    display: none;
  }
}
.cid-tNbNf02qvt .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-tNbNf02qvt .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #f32626;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-tNbNf02qvt .icon-box:hover {
  transform: scale(1.1);
}
.cid-tNbNf02qvt .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-tNbNf02qvt .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-tNbNf02qvt .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-tNbNf02qvt .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-tNbNf02qvt .navbar-collapse .mbr-section-btn .btn-black {
  color: #f32626 !important;
}
@media (max-width: 577px) {
  .cid-tNbNf02qvt .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tNbNf02qvt .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-tNbNf02qvt .navbar-collapse .nav-link:hover {
  color: #f32626 !important;
}
.cid-tNbNf1jSvJ {
  background-image: url("../../../assets/images/gutter-maintenance-3-1100x733.jpg");
}
.cid-tNbNf1jSvJ .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tNbNf1jSvJ .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tNbNf1jSvJ .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbNf1jSvJ .label-text {
    text-align: center !important;
  }
}
.cid-tNbNf1jSvJ .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNbNf1jSvJ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tNbNf1jSvJ .mbr-section-title,
.cid-tNbNf1jSvJ .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tNbNf2PXWS {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fdfcfa;
}
.cid-tNbNf2PXWS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbNf2PXWS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbNf2PXWS .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tNbNf2PXWS .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tNbNf2PXWS .container {
    padding: 0;
  }
}
.cid-tNbNf2PXWS .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tNbNf2PXWS .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tNbNf2PXWS .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tNbNf2PXWS .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tNbNf2PXWS .mbr-section-title {
  color: #263652;
}
.cid-tNbNf2PXWS .mbr-text {
  color: #263652;
}
.cid-tNbNf3Ob2m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-tNbNf3Ob2m .image-wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-tNbNf3Ob2m .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNbNf3Ob2m .image-wrapper {
    padding: 30px;
  }
}
.cid-tNbNf3Ob2m .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-tNbNf3Ob2m .image-wrapper img {
  height: 200px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tNbNf3Ob2m .image-wrapper img {
    height: 277px;
  }
}
@media (max-width: 991px) {
  .cid-tNbNf3Ob2m .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNbNf3Ob2m .col-text {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tNbNf3Ob2m .col-text {
    text-align: center;
  }
}
.cid-tNbNf3Ob2m .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tNbNf3Ob2m .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #f32626;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbNf3Ob2m .label-text {
    text-align: center !important;
  }
}
.cid-tNbNf3Ob2m .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
  width: 100%;
}
.cid-tNbNf3Ob2m .mbr-text {
  color: #a06e2c;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-tNbNf3Ob2m .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-tNbNf3Ob2m .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tNbNf3Ob2m .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tNbNf3Ob2m .mbr-section-title,
.cid-tNbNf3Ob2m .mbr-section-btn {
  text-align: left;
}
.cid-tNbNf4Hl7C {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNbNf4Hl7C img {
  object-fit: cover;
}
.cid-tNbNf5BSu2 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #bfdeed;
}
.cid-tNbNf5BSu2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbNf5BSu2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbNf6wpha {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tNbNf6wpha .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbNf6wpha .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tNbNf6wpha .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tNbNf6wpha .row {
  flex-direction: row-reverse;
}
.cid-tNbNf6wpha img {
  width: 100%;
  border: 3px solid #f32626;
  border-radius: 2rem;
}
.cid-tNbNf6wpha .mbr-text {
  color: #04492e;
}
.cid-tNbNf7qu9x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #bfdeed;
}
.cid-tNbNf7qu9x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbNf7qu9x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNbNf7qu9x .container {
    padding: 0 30px;
  }
}
.cid-tNbNf7qu9x .row {
  position: relative;
}
.cid-tNbNf7qu9x .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tNbNf7qu9x .row img {
    top: auto;
    width: 100%;
  }
}
.cid-tNbNf7qu9x .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tNbNf7qu9x .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-tNbNf7qu9x .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tNbNf7qu9x .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tNbNf7qu9x .mbr-text {
  color: #212529;
}
.cid-tNbNf7qu9x .mbr-link,
.cid-tNbNf7qu9x .mbr-iconfont {
  color: #212529;
}
.cid-tNbNfbBkwr {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNbNfbBkwr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbNfbBkwr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNbNfbBkwr .container {
    padding: 0 16px;
  }
}
.cid-tNbNfbBkwr .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tNbNfbBkwr .card {
    margin-bottom: 60px;
  }
}
.cid-tNbNfbBkwr .card .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tNbNfbBkwr .card .icon-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tNbNfbBkwr .card .icon-wrapper .icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
}
.cid-tNbNfbBkwr .card .icon-wrapper .icon-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .6;
  border-radius: 100%;
}
.cid-tNbNfbBkwr .card .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: #ffffff;
  color: #08323c;
  border-radius: 100%;
  z-index: 1;
}
.cid-tNbNfbBkwr .card .content-wrapper .mbr-section-title {
  margin-bottom: 14px;
}
.cid-tNbNfbBkwr .card .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tNbNfbBkwr .mbr-section-title {
  color: #08323C;
}
.cid-tNbNfbBkwr .mbr-text {
  color: #08323C;
}
.cid-tNgpbb1kYa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-tNgpbb1kYa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNgpbb1kYa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNgpbb1kYa .row {
  margin: 0 !important;
  flex-direction: row-reverse;
}
.cid-tNgpbb1kYa .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tNgpbb1kYa .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tNgpbb1kYa .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tNgpbb1kYa .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tNgpbb1kYa .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tNgpbb1kYa .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tNgpbb1kYa .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tNgpbb1kYa .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tNgpbb1kYa .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
  padding: 0 100px 0 0  !important;
}
@media (max-width: 1024px) {
  .cid-tNgpbb1kYa .col-list {
    padding: 0 0 0 20px !important;
    padding: 0 20px 0 0  !important;
  }
}
@media (max-width: 991px) {
  .cid-tNgpbb1kYa .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tNgpbb1kYa .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tNgpbb1kYa .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tNgpbb1kYa .panel-group {
  border: none;
}
.cid-tNgpbb1kYa .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tNgpbb1kYa .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tNgpbb1kYa .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tNgpbb1kYa .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tNgpbb1kYa .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tNgpbb1kYa .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tNgpbb1kYa .panel-title-edit {
  color: #131313;
}
.cid-tNgpbb1kYa .panel-body {
  padding: 0 0 20px;
}
.cid-tNgpbb1kYa .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tNbNf8ix4l {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tNbNf8ix4l .mbr-text {
  text-align: left;
  color: #151515;
}
.cid-tNbNf8ix4l .mbr-section-subtitle {
  text-align: center;
}
.cid-tNbNf9gjM2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-tNbNf9gjM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbNf9gjM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbNf9gjM2 .row {
  margin: 0 !important;
}
.cid-tNbNf9gjM2 .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tNbNf9gjM2 .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tNbNf9gjM2 .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tNbNf9gjM2 .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tNbNf9gjM2 .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tNbNf9gjM2 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tNbNf9gjM2 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tNbNf9gjM2 .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tNbNf9gjM2 .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tNbNf9gjM2 .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tNbNf9gjM2 .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tNbNf9gjM2 .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tNbNf9gjM2 .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tNbNf9gjM2 .panel-group {
  border: none;
}
.cid-tNbNf9gjM2 .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tNbNf9gjM2 .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tNbNf9gjM2 .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tNbNf9gjM2 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tNbNf9gjM2 .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tNbNf9gjM2 .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tNbNf9gjM2 .panel-title-edit {
  color: #131313;
}
.cid-tNbNf9gjM2 .panel-body {
  padding: 0 0 20px;
}
.cid-tNbNf9gjM2 .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tNgtIsrA1M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-tNgtIsrA1M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNgtIsrA1M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNgtIsrA1M .container {
    padding: 0 20px;
  }
}
.cid-tNgtIsrA1M .row {
  margin: 0;
}
.cid-tNgtIsrA1M .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tNgtIsrA1M .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tNgtIsrA1M .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tNgtIsrA1M .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tNgtIsrA1M .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tNgtIsrA1M .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tNgtIsrA1M .mbr-section-title {
  color: #ffffff;
}
.cid-tNbNfalPi6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNbNfalPi6 .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tNbNfalPi6 .row {
    text-align: center !important;
  }
}
.cid-tNbNfalPi6 .col-text {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-tNbNfalPi6 .col-text {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.cid-tNbNfalPi6 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tNbNfalPi6 .text-wrapper {
    text-align: center !important;
  }
}
.cid-tNbNfalPi6 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbNfalPi6 .label-text {
    text-align: center !important;
  }
}
.cid-tNbNfalPi6 .mbr-section-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbNfalPi6 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tNbNfalPi6 .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tNbNfalPi6 .mbr-text {
    text-align: center !important;
  }
}
.cid-tNbNfalPi6 .btn-container {
  width: 100%;
  margin-top: 16px;
}
.cid-tNbNfalPi6 .mbr-section-btn .btn {
  padding: 0;
}
.cid-tNbNfalPi6 .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-tNbNfalPi6 .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-tNbNfalPi6 .col-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 48px;
}
@media (max-width: 991px) {
  .cid-tNbNfalPi6 .col-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) {
  .cid-tNbNfalPi6 .col-cards {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.cid-tNbNfalPi6 .col-cards-second {
  padding-top: 48px;
  border-top: 1px solid #555555;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tNbNfalPi6 .card {
    margin-bottom: 1rem;
  }
}
.cid-tNbNfalPi6 .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-tNbNfalPi6 .card-title {
  color: #222222;
  margin-bottom: 8px;
}
.cid-tNbNfalPi6 .card-date {
  color: #999999;
  margin-bottom: 12px;
}
.cid-tNbNfalPi6 .card-text {
  color: #555555;
  margin-bottom: 0;
}
.cid-tNbNfalPi6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbNfalPi6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNgZZHKau8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tNgZZHKau8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNgZZHKau8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNgZZHKau8 .google-map {
  height: 35rem;
  position: relative;
}
.cid-tNgZZHKau8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tNgZZHKau8 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tNgZZHKau8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tNgZZHKau8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tNgZZHKau8 .mbr-section-title {
  color: #00004c;
}
.cid-tNbNfdGMfO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #c8eafb;
}
.cid-tNbNfdGMfO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbNfdGMfO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbNfdGMfO .row {
  justify-content: space-between;
}
.cid-tNbNfdGMfO .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tNbNfdGMfO .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tNbNfdGMfO .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tNbNfdGMfO .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tNbNfdGMfO .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #f32626;
}
.cid-tNbNfdGMfO .list li {
  margin-bottom: 25px;
}
.cid-tNbNfdGMfO .list li:last-child {
  margin-bottom: 0;
}
.cid-tNbNfdGMfO .mbr-desc {
  margin-bottom: 8px;
}
.cid-tNbNfdGMfO .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tNbNfdGMfO .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tNbNfdGMfO .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-tNbNfdGMfO .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tNbNfdGMfO .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-tNbNfdGMfO .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tNbNfdGMfO .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tNbNfdGMfO .mbr-desc,
.cid-tNbNfdGMfO .mbr-iconfont {
  color: #000000;
}
.cid-tNbNfdGMfO .mbr-text,
.cid-tNbNfdGMfO .mbr-section-btn {
  color: #f32626;
}
.cid-tNbQvIftNt .navbar-dropdown {
  position: relative !important;
}
.cid-tNbQvIftNt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNbQvIftNt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNbQvIftNt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNbQvIftNt .dropdown-item:hover,
.cid-tNbQvIftNt .dropdown-item:focus {
  background: #f32626 !important;
  color: white !important;
}
.cid-tNbQvIftNt .dropdown-item:hover span {
  color: white;
}
.cid-tNbQvIftNt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNbQvIftNt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNbQvIftNt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNbQvIftNt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNbQvIftNt .nav-link {
  position: relative;
}
.cid-tNbQvIftNt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tNbQvIftNt .container {
    flex-wrap: nowrap;
  }
}
.cid-tNbQvIftNt .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNbQvIftNt .dropdown-menu,
.cid-tNbQvIftNt .navbar.opened {
  background: #ffffff !important;
}
.cid-tNbQvIftNt .nav-item:focus,
.cid-tNbQvIftNt .nav-link:focus {
  outline: none;
}
.cid-tNbQvIftNt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNbQvIftNt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNbQvIftNt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNbQvIftNt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNbQvIftNt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNbQvIftNt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNbQvIftNt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tNbQvIftNt .navbar.opened {
  transition: all 0.3s;
}
.cid-tNbQvIftNt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNbQvIftNt .navbar .navbar-logo img {
  width: auto;
}
.cid-tNbQvIftNt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNbQvIftNt .navbar.collapsed {
  justify-content: center;
}
.cid-tNbQvIftNt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNbQvIftNt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNbQvIftNt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tNbQvIftNt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNbQvIftNt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNbQvIftNt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tNbQvIftNt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNbQvIftNt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNbQvIftNt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNbQvIftNt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNbQvIftNt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNbQvIftNt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNbQvIftNt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNbQvIftNt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tNbQvIftNt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNbQvIftNt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNbQvIftNt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNbQvIftNt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNbQvIftNt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNbQvIftNt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNbQvIftNt .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNbQvIftNt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNbQvIftNt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNbQvIftNt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNbQvIftNt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNbQvIftNt .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tNbQvIftNt .navbar-brand {
    padding-right: 40px;
  }
}
.cid-tNbQvIftNt .dropdown-item.active,
.cid-tNbQvIftNt .dropdown-item:active {
  background-color: transparent;
}
.cid-tNbQvIftNt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNbQvIftNt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNbQvIftNt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNbQvIftNt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNbQvIftNt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNbQvIftNt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNbQvIftNt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNbQvIftNt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNbQvIftNt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNbQvIftNt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-tNbQvIftNt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNbQvIftNt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNbQvIftNt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNbQvIftNt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNbQvIftNt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNbQvIftNt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNbQvIftNt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNbQvIftNt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNbQvIftNt .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tNbQvIftNt .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-tNbQvIftNt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNbQvIftNt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNbQvIftNt .navbar {
    height: 70px;
  }
  .cid-tNbQvIftNt .navbar.opened {
    height: auto;
  }
  .cid-tNbQvIftNt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNbQvIftNt .container,
.cid-tNbQvIftNt .container-fluid {
  flex-wrap: wrap;
}
.cid-tNbQvIftNt .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-tNbQvIftNt .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-tNbQvIftNt .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-tNbQvIftNt .contacts-menu {
    display: none;
  }
}
.cid-tNbQvIftNt .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-tNbQvIftNt .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #f32626;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-tNbQvIftNt .icon-box:hover {
  transform: scale(1.1);
}
.cid-tNbQvIftNt .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-tNbQvIftNt .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-tNbQvIftNt .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-tNbQvIftNt .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-tNbQvIftNt .navbar-collapse .mbr-section-btn .btn-black {
  color: #f32626 !important;
}
@media (max-width: 577px) {
  .cid-tNbQvIftNt .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tNbQvIftNt .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-tNbQvIftNt .navbar-collapse .nav-link:hover {
  color: #f32626 !important;
}
.cid-tNbQvJbi8C {
  background-image: url("../../../assets/images/hiram-roofing-company-near-me-3-850x720.jpg");
}
.cid-tNbQvJbi8C .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tNbQvJbi8C .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tNbQvJbi8C .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbQvJbi8C .label-text {
    text-align: center !important;
  }
}
.cid-tNbQvJbi8C .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNbQvJbi8C .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tNbQvJbi8C .mbr-section-title,
.cid-tNbQvJbi8C .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tNbQvK5Qn7 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fdfcfa;
}
.cid-tNbQvK5Qn7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbQvK5Qn7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbQvK5Qn7 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tNbQvK5Qn7 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tNbQvK5Qn7 .container {
    padding: 0;
  }
}
.cid-tNbQvK5Qn7 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tNbQvK5Qn7 .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tNbQvK5Qn7 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tNbQvK5Qn7 .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tNbQvK5Qn7 .mbr-section-title {
  color: #263652;
}
.cid-tNbQvK5Qn7 .mbr-text {
  color: #263652;
}
.cid-tNbQvL0oxT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-tNbQvL0oxT .image-wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-tNbQvL0oxT .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNbQvL0oxT .image-wrapper {
    padding: 30px;
  }
}
.cid-tNbQvL0oxT .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-tNbQvL0oxT .image-wrapper img {
  height: 200px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tNbQvL0oxT .image-wrapper img {
    height: 277px;
  }
}
@media (max-width: 991px) {
  .cid-tNbQvL0oxT .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNbQvL0oxT .col-text {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tNbQvL0oxT .col-text {
    text-align: center;
  }
}
.cid-tNbQvL0oxT .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tNbQvL0oxT .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #f32626;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbQvL0oxT .label-text {
    text-align: center !important;
  }
}
.cid-tNbQvL0oxT .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
  width: 100%;
}
.cid-tNbQvL0oxT .mbr-text {
  color: #a06e2c;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-tNbQvL0oxT .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-tNbQvL0oxT .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tNbQvL0oxT .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tNbQvL0oxT .mbr-section-title,
.cid-tNbQvL0oxT .mbr-section-btn {
  text-align: left;
}
.cid-tNbQvLVgsC {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tNbQvLVgsC img {
  object-fit: cover;
}
.cid-tNgqLUaIe9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-tNgqLUaIe9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNgqLUaIe9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNgqLUaIe9 .row {
  margin: 0 !important;
}
.cid-tNgqLUaIe9 .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tNgqLUaIe9 .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tNgqLUaIe9 .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tNgqLUaIe9 .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tNgqLUaIe9 .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tNgqLUaIe9 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tNgqLUaIe9 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tNgqLUaIe9 .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tNgqLUaIe9 .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tNgqLUaIe9 .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tNgqLUaIe9 .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tNgqLUaIe9 .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tNgqLUaIe9 .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tNgqLUaIe9 .panel-group {
  border: none;
}
.cid-tNgqLUaIe9 .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tNgqLUaIe9 .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tNgqLUaIe9 .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tNgqLUaIe9 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tNgqLUaIe9 .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tNgqLUaIe9 .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tNgqLUaIe9 .panel-title-edit {
  color: #131313;
}
.cid-tNgqLUaIe9 .panel-body {
  padding: 0 0 20px;
}
.cid-tNgqLUaIe9 .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tNbQvMObL7 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tNbQvMObL7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbQvMObL7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbQvNK0BP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfdeed;
}
.cid-tNbQvNK0BP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbQvNK0BP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tNbQvNK0BP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tNbQvNK0BP .row {
  flex-direction: row-reverse;
}
.cid-tNbQvNK0BP img {
  width: 100%;
  border: 3px solid #f32626;
  border-radius: 2rem;
}
.cid-tNbQvNK0BP .mbr-text {
  color: #04492e;
}
.cid-tNbQvRt5Hp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNbQvRt5Hp .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tNbQvRt5Hp .row {
    text-align: center !important;
  }
}
.cid-tNbQvRt5Hp .col-text {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-tNbQvRt5Hp .col-text {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.cid-tNbQvRt5Hp .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tNbQvRt5Hp .text-wrapper {
    text-align: center !important;
  }
}
.cid-tNbQvRt5Hp .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbQvRt5Hp .label-text {
    text-align: center !important;
  }
}
.cid-tNbQvRt5Hp .mbr-section-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNbQvRt5Hp .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tNbQvRt5Hp .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tNbQvRt5Hp .mbr-text {
    text-align: center !important;
  }
}
.cid-tNbQvRt5Hp .btn-container {
  width: 100%;
  margin-top: 16px;
}
.cid-tNbQvRt5Hp .mbr-section-btn .btn {
  padding: 0;
}
.cid-tNbQvRt5Hp .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-tNbQvRt5Hp .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-tNbQvRt5Hp .col-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 48px;
}
@media (max-width: 991px) {
  .cid-tNbQvRt5Hp .col-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) {
  .cid-tNbQvRt5Hp .col-cards {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.cid-tNbQvRt5Hp .col-cards-second {
  padding-top: 48px;
  border-top: 1px solid #555555;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tNbQvRt5Hp .card {
    margin-bottom: 1rem;
  }
}
.cid-tNbQvRt5Hp .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-tNbQvRt5Hp .card-title {
  color: #222222;
  margin-bottom: 8px;
}
.cid-tNbQvRt5Hp .card-date {
  color: #999999;
  margin-bottom: 12px;
}
.cid-tNbQvRt5Hp .card-text {
  color: #555555;
  margin-bottom: 0;
}
.cid-tNbQvRt5Hp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbQvRt5Hp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbQvOCkHB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tNbQvOCkHB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbQvOCkHB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNbQvOCkHB .container {
    padding: 0 30px;
  }
}
.cid-tNbQvOCkHB .row {
  position: relative;
}
.cid-tNbQvOCkHB .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tNbQvOCkHB .row img {
    top: auto;
    width: 100%;
  }
}
.cid-tNbQvOCkHB .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tNbQvOCkHB .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-tNbQvOCkHB .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tNbQvOCkHB .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tNbQvOCkHB .mbr-text {
  color: #212529;
}
.cid-tNbQvOCkHB .mbr-link,
.cid-tNbQvOCkHB .mbr-iconfont {
  color: #212529;
}
.cid-tNbQvPzeim {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bfdeed;
}
.cid-tNbQvPzeim .mbr-text {
  text-align: left;
  color: #151515;
}
.cid-tNbQvPzeim .mbr-section-subtitle {
  text-align: center;
}
.cid-tNbQvTG2qU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNbQvTG2qU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbQvTG2qU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNbQvTG2qU .container {
    padding: 0 20px;
  }
}
.cid-tNbQvTG2qU .row {
  margin: 0;
}
.cid-tNbQvTG2qU .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tNbQvTG2qU .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tNbQvTG2qU .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tNbQvTG2qU .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tNbQvTG2qU .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tNbQvTG2qU .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tNbQvTG2qU .mbr-section-title {
  color: #000000;
}
.cid-tNbQvQss1g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNbQvQss1g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbQvQss1g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbQvQss1g .row {
  margin: 0 !important;
}
.cid-tNbQvQss1g .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tNbQvQss1g .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tNbQvQss1g .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tNbQvQss1g .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-tNbQvQss1g .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tNbQvQss1g .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tNbQvQss1g .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tNbQvQss1g .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tNbQvQss1g .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tNbQvQss1g .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tNbQvQss1g .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tNbQvQss1g .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tNbQvQss1g .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tNbQvQss1g .panel-group {
  border: none;
}
.cid-tNbQvQss1g .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tNbQvQss1g .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tNbQvQss1g .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tNbQvQss1g .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tNbQvQss1g .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tNbQvQss1g .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tNbQvQss1g .panel-title-edit {
  color: #131313;
}
.cid-tNbQvQss1g .panel-body {
  padding: 0 0 20px;
}
.cid-tNbQvQss1g .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tNbQvSBVhi {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #bfdeed;
}
.cid-tNbQvSBVhi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbQvSBVhi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNbQvSBVhi .container {
    padding: 0 16px;
  }
}
.cid-tNbQvSBVhi .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tNbQvSBVhi .card {
    margin-bottom: 60px;
  }
}
.cid-tNbQvSBVhi .card .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tNbQvSBVhi .card .icon-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tNbQvSBVhi .card .icon-wrapper .icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
}
.cid-tNbQvSBVhi .card .icon-wrapper .icon-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .6;
  border-radius: 100%;
}
.cid-tNbQvSBVhi .card .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: #ffffff;
  color: #08323c;
  border-radius: 100%;
  z-index: 1;
}
.cid-tNbQvSBVhi .card .content-wrapper .mbr-section-title {
  margin-bottom: 14px;
}
.cid-tNbQvSBVhi .card .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tNbQvSBVhi .mbr-section-title {
  color: #08323C;
}
.cid-tNbQvSBVhi .mbr-text {
  color: #08323C;
}
.cid-tNgsNmNj5z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tNgsNmNj5z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNgsNmNj5z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNgsNmNj5z .google-map {
  height: 35rem;
  position: relative;
}
.cid-tNgsNmNj5z .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tNgsNmNj5z .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tNgsNmNj5z .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tNgsNmNj5z .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tNgsNmNj5z .mbr-section-title {
  color: #00004c;
}
.cid-tNbQvUJ37t {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #c8eafb;
}
.cid-tNbQvUJ37t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbQvUJ37t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbQvUJ37t .row {
  justify-content: space-between;
}
.cid-tNbQvUJ37t .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tNbQvUJ37t .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tNbQvUJ37t .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tNbQvUJ37t .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-tNbQvUJ37t .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #f32626;
}
.cid-tNbQvUJ37t .list li {
  margin-bottom: 25px;
}
.cid-tNbQvUJ37t .list li:last-child {
  margin-bottom: 0;
}
.cid-tNbQvUJ37t .mbr-desc {
  margin-bottom: 8px;
}
.cid-tNbQvUJ37t .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tNbQvUJ37t .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-tNbQvUJ37t .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-tNbQvUJ37t .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-tNbQvUJ37t .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-tNbQvUJ37t .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-tNbQvUJ37t .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-tNbQvUJ37t .mbr-desc,
.cid-tNbQvUJ37t .mbr-iconfont {
  color: #000000;
}
.cid-tNbQvUJ37t .mbr-text,
.cid-tNbQvUJ37t .mbr-section-btn {
  color: #f32626;
}
