body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Quicksand', 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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #aaca01 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #aaca01 !important;
  border-color: #aaca01 !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: #617401 !important;
  border-color: #617401 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #617401 !important;
  border-color: #617401 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !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: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning: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-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.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-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !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: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !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: #aaca01;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #617401 !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: #aaca01 !important;
  border-color: #aaca01 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #909090 !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: #bbbbbb !important;
  border-color: #bbbbbb !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: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !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: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.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: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #aaca01 !important;
}
.text-secondary {
  color: #bbbbbb !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #556500 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #888888 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !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: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !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: #aaca01;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #aaca01;
  border-color: #aaca01;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #aaca01;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eefe99;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #aaca01 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #aaca01;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #aaca01;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #aaca01;
}
.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: #aaca01;
  border-bottom-color: #aaca01;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #aaca01 !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: #bbbbbb !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='%23aaca01' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-svfM5pNnVc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-svfM5pNnVc .nav-item:focus,
.cid-svfM5pNnVc .nav-link:focus {
  outline: none;
}
.cid-svfM5pNnVc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-svfM5pNnVc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svfM5pNnVc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-svfM5pNnVc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-svfM5pNnVc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-svfM5pNnVc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-svfM5pNnVc .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-svfM5pNnVc .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-svfM5pNnVc .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-svfM5pNnVc .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-svfM5pNnVc .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-svfM5pNnVc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-svfM5pNnVc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-svfM5pNnVc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-svfM5pNnVc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-svfM5pNnVc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-svfM5pNnVc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-svfM5pNnVc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-svfM5pNnVc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-svfM5pNnVc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-svfM5pNnVc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-svfM5pNnVc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svfM5pNnVc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svfM5pNnVc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svfM5pNnVc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svfM5pNnVc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svfM5pNnVc .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-svfM5pNnVc .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-svfM5pNnVc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svfM5pNnVc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svfM5pNnVc .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svfM5pNnVc .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svfM5pNnVc .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-svfM5pNnVc .navbar.navbar-short {
  min-height: 60px;
  opacity: 0.9;
}
.cid-svfM5pNnVc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-svfM5pNnVc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svfM5pNnVc .navbar-short {
  padding: 1rem 0 !important;
}
.cid-svfM5pNnVc .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svfM5pNnVc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svfM5pNnVc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svfM5pNnVc .dropdown-item.active,
.cid-svfM5pNnVc .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-svfM5pNnVc .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-svfM5pNnVc .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-svfM5pNnVc .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-svfM5pNnVc .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-svfM5pNnVc .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-svfM5pNnVc .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-svfM5pNnVc .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-svfM5pNnVc .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-svfM5pNnVc .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-svfM5pNnVc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svfM5pNnVc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svfM5pNnVc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svfM5pNnVc .navbar-buttons {
  text-align: center;
}
.cid-svfM5pNnVc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svfM5pNnVc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-svfM5pNnVc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svfM5pNnVc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svfM5pNnVc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svfM5pNnVc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svfM5pNnVc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svfM5pNnVc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svfM5pNnVc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svfM5pNnVc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svfM5pNnVc .navbar-dropdown {
  padding: 3rem 0rem;
}
.cid-svfM5pNnVc a.nav-link {
  font-weight: 300;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-svfM5pNnVc .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-svfM5pNnVc .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-svfM5pNnVc .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svfM5pNnVc .navbar {
    height: 77px;
  }
  .cid-svfM5pNnVc .navbar.opened {
    height: auto;
  }
  .cid-svfM5pNnVc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svfM5pNnVc a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-svfM5pNnVc a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #aaca01;
}
.cid-svfM5pNnVc .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-svfM5pNnVc .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-svfMd3Hg3j {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
@media (min-width: 768px) {
  .cid-svfMd3Hg3j {
    align-items: flex-end;
  }
  .cid-svfMd3Hg3j .row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-svfMd3Hg3j {
    align-items: center;
  }
  .cid-svfMd3Hg3j .row {
    justify-content: center;
  }
}
.cid-svfMd3Hg3j .mbr-section-title,
.cid-svfMd3Hg3j .card_topic {
  margin-bottom: 12px;
}
.cid-svfMd3Hg3j .item-wrapper {
  padding-bottom: 24px;
}
.cid-svfMd3Hg3j .item-wrapper:hover .mbr-section-title a {
  color: #bbbbbb !important;
}
.cid-svfMd3Hg3j .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-svfMd3Hg3j .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-svfMd3Hg3j .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-svfMd3Hg3j .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-svfMd3Hg3j .category_content,
.cid-svfMd3Hg3j .date,
.cid-svfMd3Hg3j .name_author {
  opacity: .8;
}
.cid-svfMd3Hg3j .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #bbbbbb;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-svfMd3Hg3j .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-svfMeUFIW5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #aaca01;
}
.cid-svfMeUFIW5 .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-svfMeUFIW5 .text-wrapper:hover .mbr-section-title a {
  color: #bbbbbb !important;
}
.cid-svfMeUFIW5 .image-wrapper,
.cid-svfMeUFIW5 img {
  width: 100%;
  object-fit: cover;
}
.cid-svfMeUFIW5 .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-svfMeUFIW5 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-svfMeUFIW5 .mbr-section-btn .btn-secondary-outline:hover,
.cid-svfMeUFIW5 .mbr-section-btn .btn-secondary-outline .active,
.cid-svfMeUFIW5 .mbr-section-btn .btn-secondary-outline:focus {
  color: #aaca01 !important;
}
@media (max-width: 991px) {
  .cid-svfMeUFIW5 {
    flex-direction: column;
  }
  .cid-svfMeUFIW5 .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-svfMeUFIW5 .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-svfMeUFIW5 .mbr-section-title {
  color: #ffffff;
}
.cid-svfMrjLRPe {
  padding-top: 225px;
  padding-bottom: 225px;
  background-color: #232323;
}
.cid-svfMrjLRPe .container-fluid {
  position: relative;
}
.cid-svfMrjLRPe .page-title-content .mbr-iconfont {
  font-size: 31px;
  margin-top: -10px;
  color: #ffd03a;
}
.cid-svfMrjLRPe .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-svfMrjLRPe .page-title-content p > span {
  font-size: 39px !important;
  color: #ffd03a;
  margin-left: 1rem !important;
}
@media (max-width: 576px) {
  .cid-svfMrjLRPe .page-title-content {
    text-align: center;
  }
}
.cid-svfMrjLRPe .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-svfMrjLRPe .mbr-section-btn {
  color: #ffffff;
  margin-left: 0;
  margin-right: 0;
}
.cid-svfMrjLRPe .mbr-section-btn .btn:hover {
  color: #ffffff !important;
}
.cid-svfMrjLRPe .mbr-section-btn a {
  display: inline-block;
  color: #f1a631;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-svfMrjLRPe .mbr-section-btn a:not(:first-child) {
  margin-left: 20px;
}
.cid-svfMrjLRPe .mbr-section-btn a:after {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-svfMrjLRPe .mbr-section-btn a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 9px;
}
.cid-svfMrjLRPe .mbr-section-btn a:hover:after,
.cid-svfMrjLRPe .mbr-section-btn a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-svfMrjLRPe .mbr-section-btn a:hover:before,
.cid-svfMrjLRPe .mbr-section-btn a:focus:before {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-svfMrjLRPe .text {
  margin: 0px;
  margin-top: 67px;
}
.cid-svfMrjLRPe .scroll-text {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.cid-svfMrjLRPe .scroll-text:hover {
  opacity: 0.5;
}
.cid-svfMrjLRPe .mbr-arrow {
  bottom: 0px;
  right: -100px;
  background-color: #232323;
}
.cid-svfMrjLRPe .mbr-arrow .mbr-iconfont {
  color: #ffd03a;
  font-size: 51px;
}
.cid-svfMrjLRPe .mbr-arrow > a > i {
  left: -27px;
  font-style: normal;
  line-height: 1;
}
.cid-svfMrjLRPe .down {
  margin-top: 126px;
}
@media (max-width: 768px) {
  .cid-svfMrjLRPe .down {
    display: none;
  }
}
.cid-svfMrjLRPe .social-links .mbr-iconfont {
  color: #ffd03a;
}
.cid-svfMrjLRPe .social-links .link {
  margin-left: 10px;
  margin-right: 10px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-svfMrjLRPe .social-links .link:hover {
  opacity: 0.5;
}
.cid-svfMrjLRPe .btn {
  padding: 0.7rem 2.2rem;
}
.cid-svfMrjLRPe a.text-white:hover,
.cid-svfMrjLRPe a.text-white:focus {
  color: #ffffff !important;
}
.cid-szKh4ys4A0 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-szKh4ys4A0 .image-block {
  margin: auto;
  height: 800px;
  overflow: hidden;
}
.cid-szKh4ys4A0 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-szKh4ys4A0 .image-block:hover:before {
  opacity: 0.4;
}
.cid-szKh4ys4A0 .image-block:hover .wrap {
  opacity: 1;
}
.cid-szKh4ys4A0 .image-block:hover img {
  transform: scale(1.05);
}
.cid-szKh4ys4A0 h4 {
  letter-spacing: 2px;
}
.cid-szKh4ys4A0 figcaption {
  position: relative;
}
.cid-szKh4ys4A0 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-szKh4ys4A0 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-szKh4ys4A0 .col-lg-6 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-szKh4ys4A0 .image-block {
    height: 400px;
  }
}
.cid-svfMuVhnP0 {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1356x904.jpg");
}
.cid-svfMuVhnP0 .row {
  position: relative;
}
.cid-svfMuVhnP0 .container {
  max-width: 1500px;
}
.cid-svfMuVhnP0 h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-svfMuVhnP0 .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-svfMuVhnP0 .container {
    padding: 0 4rem;
  }
}
.cid-svfMuVhnP0 H1 {
  color: #aaca01;
}
.cid-szKBocPjHj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-szKBocPjHj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-szKBocPjHj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szKBocPjHj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szKBocPjHj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-szKBocPjHj .row > .row {
  display: block;
}
.cid-szKBocPjHj .mbr-gallery-item {
  width: 100%;
}
.cid-szKBocPjHj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #aaca01;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-szKBocPjHj .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-szKBocPjHj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-szKBocPjHj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-szKBocPjHj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-szKBocPjHj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #aaca01 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-szKBocPjHj .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-szKBocPjHj .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-szKBocPjHj {
    padding-top: 10px;
    padding-bottom: 0px;
  }
  .cid-szKBocPjHj .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-szKDl0FAAL {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-svfMu9PQ1t {
  background-image: url("../../../assets/images/backgound-1920x1280.jpg");
}
.cid-svfMu9PQ1t h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-svfMu9PQ1t h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-svfMu9PQ1t h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-svfMu9PQ1t h3:before,
  .cid-svfMu9PQ1t h3:after {
    display: none;
  }
}
.cid-svfMu9PQ1t H3 {
  color: #aaca01;
}
.cid-szKiVzy9GS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #aaca01;
}
.cid-szKiVzy9GS .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
}
.cid-szKiVzy9GS .text-wrapper:hover .mbr-section-title a {
  color: #bbbbbb !important;
}
.cid-szKiVzy9GS .image-wrapper,
.cid-szKiVzy9GS img {
  width: 100%;
  object-fit: cover;
}
.cid-szKiVzy9GS .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-szKiVzy9GS .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-szKiVzy9GS .mbr-section-btn .btn-secondary-outline:hover,
.cid-szKiVzy9GS .mbr-section-btn .btn-secondary-outline .active,
.cid-szKiVzy9GS .mbr-section-btn .btn-secondary-outline:focus {
  color: #aaca01 !important;
}
@media (max-width: 991px) {
  .cid-szKiVzy9GS {
    flex-direction: column;
  }
  .cid-szKiVzy9GS .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-szKiVzy9GS .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-szKiVzy9GS .mbr-section-title {
  color: #ffffff;
}
.cid-svfMwN5LLG {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/torby2-1920x1836.jpg");
}
.cid-svfMwN5LLG .row {
  position: relative;
}
.cid-svfMwN5LLG .container {
  max-width: 1500px;
}
.cid-svfMwN5LLG .container {
  padding-right: 8rem !important;
}
.cid-svfMwN5LLG h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-svfMwN5LLG .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-svfMwN5LLG .container {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .cid-svfMwN5LLG .container {
    padding-right: 4rem !important;
  }
}
.cid-svfMwN5LLG H1 {
  color: #aaca01;
}
.cid-szKjV8JsJ2 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-szKjV8JsJ2 .image-block {
  margin: auto;
  height: 800px;
  overflow: hidden;
}
.cid-szKjV8JsJ2 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-szKjV8JsJ2 .image-block:hover:before {
  opacity: 0.4;
}
.cid-szKjV8JsJ2 .image-block:hover .wrap {
  opacity: 1;
}
.cid-szKjV8JsJ2 .image-block:hover img {
  transform: scale(1.05);
}
.cid-szKjV8JsJ2 h4 {
  letter-spacing: 2px;
}
.cid-szKjV8JsJ2 figcaption {
  position: relative;
}
.cid-szKjV8JsJ2 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-szKjV8JsJ2 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-szKjV8JsJ2 .col-lg-6 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-szKjV8JsJ2 .image-block {
    height: 400px;
  }
}
.cid-svfMP0W85S {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #232323;
}
.cid-svfMP0W85S .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #bbbbbb, #aaca01);
}
.cid-svfMP0W85S .btn-col {
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 767px) {
  .cid-svfMP0W85S .btn-col {
    justify-content: center;
  }
}
.cid-svfMP0W85S .mbr-text,
.cid-svfMP0W85S .mbr-section-btn {
  color: #aaca01;
}
.cid-svfMP0W85S p {
  margin: 0;
}
.cid-szKqe0TDcc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #232323;
}
.cid-szKqe0TDcc .image {
  position: relative;
  margin-bottom: 200px;
  height: 710px;
  background-image: url("../../../assets/images/design-1-1899x1252.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-szKqe0TDcc .form__wrap {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -160px;
  z-index: 5;
}
.cid-szKqe0TDcc .inner__wrap {
  padding: 70px 40px 60px 75px;
  border-bottom: 4px solid #aaca01;
  box-shadow: 0px 50px 100px 0px rgba(3, 3, 3, 0.02);
  background: #fafafa;
  border-radius: 30px;
}
.cid-szKqe0TDcc .mbr-form {
  width: 100%;
}
.cid-szKqe0TDcc .form-group {
  margin-bottom: 0;
}
.cid-szKqe0TDcc .dragArea .form-control {
  color: #64697a;
  font-size: 17px;
  background-color: #fafafa !important;
  border-radius: 30px;
  border: none;
  border-bottom: 1px solid #aaca01;
  margin-bottom: 30px;
  padding-bottom: 12px;
}
.cid-szKqe0TDcc .dragArea textarea {
  margin-bottom: 30px;
  height: 250px !important;
  max-height: 250px;
  resize: none;
  border: none;
  border-bottom: 1px solid #aaca01;
}
.cid-szKqe0TDcc .dragArea input::-webkit-input-placeholder {
  color: #64697a;
  opacity: 0.8;
}
.cid-szKqe0TDcc .dragArea input::-moz-placeholder {
  color: #64697a;
  opacity: 0.8;
}
.cid-szKqe0TDcc .dragArea textarea::-webkit-input-placeholder {
  color: #64697a;
  opacity: 0.8;
}
.cid-szKqe0TDcc .dragArea textarea::-moz-placeholder {
  color: #64697a;
  opacity: 0.8;
}
.cid-szKqe0TDcc .dragArea .input-group-btn .btn {
  min-width: 185px;
  border-radius: 0;
  line-height: 55px;
}
.cid-szKqe0TDcc .title__block {
  padding-left: 50px;
  padding-left: 15px;
  padding-right: 50px;
}
.cid-szKqe0TDcc .mbr-section-subtitle {
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  color: #232323;
}
.cid-szKqe0TDcc .mbr-section-title {
  color: #aaca01;
  margin-bottom: 15px;
}
.cid-szKqe0TDcc .mbr-text {
  margin-bottom: 10px;
}
.cid-szKqe0TDcc .phone {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-szKqe0TDcc .image {
    margin-bottom: 50px;
    height: auto;
    padding: 50px 0;
  }
  .cid-szKqe0TDcc .form__wrap {
    position: static;
  }
  .cid-szKqe0TDcc .title__block {
    padding: 0 15px 50px;
    order: -1;
  }
  .cid-szKqe0TDcc .subscribe__form {
    order: 1;
  }
  .cid-szKqe0TDcc .inner__wrap {
    padding: 70px 15px 60px;
  }
}
.cid-szKqe0TDcc H5 {
  color: #aaca01;
}
.cid-svfMZ8yi3I {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #232323;
}
.cid-svfMZ8yi3I .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-svfMZ8yi3I .copyright {
    margin-bottom: 1rem;
  }
}
.cid-svfMZ8yi3I .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-svfMZ8yi3I .text-wrap .icons-wrap .icon-wrapper {
  background: #232323;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #353535;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-svfMZ8yi3I .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #aaca01;
  border-color: #aaca01;
}
.cid-svfMZ8yi3I .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-svfMZ8yi3I .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #fafafa;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-svfMZ8yi3I .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-svfMZ8yi3I .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-svfMZ8yi3I .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-svfMZ8yi3I .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-szKFRLB60l .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-szKFRLB60l .nav-item:focus,
.cid-szKFRLB60l .nav-link:focus {
  outline: none;
}
.cid-szKFRLB60l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-szKFRLB60l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szKFRLB60l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-szKFRLB60l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-szKFRLB60l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szKFRLB60l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szKFRLB60l .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-szKFRLB60l .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-szKFRLB60l .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-szKFRLB60l .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-szKFRLB60l .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-szKFRLB60l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szKFRLB60l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szKFRLB60l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-szKFRLB60l .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-szKFRLB60l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szKFRLB60l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szKFRLB60l .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-szKFRLB60l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szKFRLB60l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szKFRLB60l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szKFRLB60l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szKFRLB60l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szKFRLB60l .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-szKFRLB60l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szKFRLB60l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szKFRLB60l .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-szKFRLB60l .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-szKFRLB60l .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szKFRLB60l .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szKFRLB60l .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-szKFRLB60l .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-szKFRLB60l .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szKFRLB60l .navbar.navbar-short {
  min-height: 60px;
  opacity: 0.9;
}
.cid-szKFRLB60l .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-szKFRLB60l .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-szKFRLB60l .navbar-short {
  padding: 1rem 0 !important;
}
.cid-szKFRLB60l .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szKFRLB60l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szKFRLB60l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szKFRLB60l .dropdown-item.active,
.cid-szKFRLB60l .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-szKFRLB60l .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-szKFRLB60l .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-szKFRLB60l .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-szKFRLB60l .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-szKFRLB60l .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-szKFRLB60l .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-szKFRLB60l .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-szKFRLB60l .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-szKFRLB60l .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-szKFRLB60l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szKFRLB60l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szKFRLB60l ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-szKFRLB60l .navbar-buttons {
  text-align: center;
}
.cid-szKFRLB60l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-szKFRLB60l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-szKFRLB60l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szKFRLB60l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szKFRLB60l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szKFRLB60l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szKFRLB60l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szKFRLB60l nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szKFRLB60l nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szKFRLB60l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szKFRLB60l .navbar-dropdown {
  padding: 3rem 0rem;
}
.cid-szKFRLB60l a.nav-link {
  font-weight: 300;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-szKFRLB60l .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-szKFRLB60l .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-szKFRLB60l .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szKFRLB60l .navbar {
    height: 77px;
  }
  .cid-szKFRLB60l .navbar.opened {
    height: auto;
  }
  .cid-szKFRLB60l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szKFRLB60l a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-szKFRLB60l a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #aaca01;
}
.cid-szKFRLB60l .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-szKFRLB60l .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-szKFRMqfn8 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
@media (min-width: 768px) {
  .cid-szKFRMqfn8 {
    align-items: flex-end;
  }
  .cid-szKFRMqfn8 .row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-szKFRMqfn8 {
    align-items: center;
  }
  .cid-szKFRMqfn8 .row {
    justify-content: center;
  }
}
.cid-szKFRMqfn8 .mbr-section-title,
.cid-szKFRMqfn8 .card_topic {
  margin-bottom: 12px;
}
.cid-szKFRMqfn8 .item-wrapper {
  padding-bottom: 24px;
}
.cid-szKFRMqfn8 .item-wrapper:hover .mbr-section-title a {
  color: #bbbbbb !important;
}
.cid-szKFRMqfn8 .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-szKFRMqfn8 .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-szKFRMqfn8 .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-szKFRMqfn8 .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-szKFRMqfn8 .category_content,
.cid-szKFRMqfn8 .date,
.cid-szKFRMqfn8 .name_author {
  opacity: .8;
}
.cid-szKFRMqfn8 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #bbbbbb;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-szKFRMqfn8 .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-szKFRNVdlZ {
  padding-top: 150px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/mbr-1356x904.jpg");
}
.cid-szKFRNVdlZ .row {
  position: relative;
}
.cid-szKFRNVdlZ .container {
  max-width: 1500px;
}
.cid-szKFRNVdlZ h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-szKFRNVdlZ .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-szKFRNVdlZ .container {
    padding: 0 4rem;
  }
}
.cid-szKFRNVdlZ H1 {
  color: #aaca01;
}
.cid-szKNXkZp34 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5a5a5a;
}
.cid-szKNXkZp34 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-szKNXkZp34 input,
.cid-szKNXkZp34 textarea {
  border-radius: 30px;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .cid-szKNXkZp34 .img-col {
    order: 2;
    text-align: center;
  }
  .cid-szKNXkZp34 img {
    max-width: 200px;
    margin: auto;
  }
  .cid-szKNXkZp34 .form-row {
    flex-direction: column;
  }
  .cid-szKNXkZp34 .btn {
    width: 100%;
  }
  .cid-szKNXkZp34 .form-group {
    margin-bottom: 2rem;
  }
}
.cid-szKNXkZp34 .btn {
  border-radius: 30px;
  margin: 0 !important;
  padding: 1rem 3.5rem !important;
}
.cid-szKNXkZp34 .form-control,
.cid-szKNXkZp34 .field-input {
  padding: 0.5rem;
  background-color: #c1f7d5;
  color: #808080;
  transition: 0.4s;
  min-height: 3rem;
  box-shadow: none;
  outline: none;
  border-radius: 0rem;
  border: none;
  border-bottom: 2px solid #b5e5c7;
}
.cid-szKNXkZp34 .form-control::-webkit-input-placeholder,
.cid-szKNXkZp34 .field-input::-webkit-input-placeholder,
.cid-szKNXkZp34 .form-control::-webkit-input-placeholder,
.cid-szKNXkZp34 .field-input::-webkit-input-placeholder {
  color: #808080;
}
.cid-szKNXkZp34 .form-control:-moz-placeholder,
.cid-szKNXkZp34 .field-input:-moz-placeholder,
.cid-szKNXkZp34 .form-control:-moz-placeholder,
.cid-szKNXkZp34 .field-input:-moz-placeholder {
  color: #808080;
}
.cid-szKNXkZp34 .form-control:hover,
.cid-szKNXkZp34 .field-input:hover,
.cid-szKNXkZp34 .form-control:focus,
.cid-szKNXkZp34 .field-input:focus {
  background-color: #c1f7d5;
  border-color: #b5e5c7 !important;
  color: #808080;
  box-shadow: none;
  outline: none;
}
.cid-szKNXkZp34 .form-control:hover::-webkit-input-placeholder,
.cid-szKNXkZp34 .field-input:hover::-webkit-input-placeholder,
.cid-szKNXkZp34 .form-control:focus::-webkit-input-placeholder,
.cid-szKNXkZp34 .field-input:focus::-webkit-input-placeholder,
.cid-szKNXkZp34 .form-control:hover::-webkit-input-placeholder,
.cid-szKNXkZp34 .field-input:hover::-webkit-input-placeholder,
.cid-szKNXkZp34 .form-control:focus::-webkit-input-placeholder,
.cid-szKNXkZp34 .field-input:focus::-webkit-input-placeholder {
  color: #808080;
}
.cid-szKNXkZp34 .form-control:hover:-moz-placeholder,
.cid-szKNXkZp34 .field-input:hover:-moz-placeholder,
.cid-szKNXkZp34 .form-control:focus:-moz-placeholder,
.cid-szKNXkZp34 .field-input:focus:-moz-placeholder,
.cid-szKNXkZp34 .form-control:hover:-moz-placeholder,
.cid-szKNXkZp34 .field-input:hover:-moz-placeholder,
.cid-szKNXkZp34 .form-control:focus:-moz-placeholder,
.cid-szKNXkZp34 .field-input:focus:-moz-placeholder {
  color: #808080;
}
.cid-szKNXkZp34 .jq-number__spin:hover,
.cid-szKNXkZp34 .jq-number__spin:focus {
  background-color: #c1f7d5;
  border-color: #b5e5c7 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-szKNXkZp34 .jq-number__spin {
  background-color: #c1f7d5;
  border-color: #b5e5c7;
  color: #808080;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-szKNXkZp34 .jq-selectbox li,
.cid-szKNXkZp34 .jq-selectbox li {
  background-color: #c1f7d5;
  color: #000000;
}
.cid-szKNXkZp34 .jq-selectbox li:hover,
.cid-szKNXkZp34 .jq-selectbox li.selected {
  background-color: #c1f7d5;
  color: #000000;
}
.cid-szKNXkZp34 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-szKNXkZp34 .jq-number__spin.minus:hover:after,
.cid-szKNXkZp34 .jq-number__spin.plus:hover:after {
  border-top-color: #c1f7d5;
  border-bottom-color: #c1f7d5;
}
.cid-szKNXkZp34 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-szKNXkZp34 .jq-number__spin.minus:after,
.cid-szKNXkZp34 .jq-number__spin.plus:after {
  border-top-color: #c1f7d5;
  border-bottom-color: #c1f7d5;
}
.cid-szKNXkZp34 input::-webkit-clear-button {
  display: none;
}
.cid-szKNXkZp34 input::-webkit-inner-spin-button {
  display: none;
}
.cid-szKNXkZp34 input::-webkit-outer-spin-button {
  display: none;
}
.cid-szKNXkZp34 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-szKNXkZp34 .mbr-text,
.cid-szKNXkZp34 .mbr-section-btn {
  color: #808080;
}
.cid-szKNXkZp34 .row {
  align-items: center;
}
.cid-szKNXkZp34 .btn:hover {
  transform: translate(0rem);
  box-shadow: none;
}
@media (min-width: 767px) {
  .cid-szKNXkZp34 .form-group {
    margin-bottom: 0rem;
  }
}
.cid-szKNXkZp34 H3 {
  color: #ffffff;
}
.cid-szKFROiTfD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-szKFROiTfD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-szKFROiTfD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szKFROiTfD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szKFROiTfD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-szKFROiTfD .row > .row {
  display: block;
}
.cid-szKFROiTfD .mbr-gallery-item {
  width: 100%;
}
.cid-szKFROiTfD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #aaca01;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-szKFROiTfD .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-szKFROiTfD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-szKFROiTfD .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-szKFROiTfD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-szKFROiTfD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #aaca01 !important;
  opacity: 0.3;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-szKFROiTfD .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-szKFROiTfD .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-szKFROiTfD {
    padding-top: 10px;
    padding-bottom: 0px;
  }
  .cid-szKFROiTfD .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-szKHu2iwok {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-szKHu2iwok .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-szKHu2iwok .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szKHu2iwok .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szKHu2iwok .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-szKHu2iwok .row > .row {
  display: block;
}
.cid-szKHu2iwok .mbr-gallery-item {
  width: 100%;
}
.cid-szKHu2iwok .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #aaca01;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-szKHu2iwok .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-szKHu2iwok .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-szKHu2iwok .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-szKHu2iwok .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-szKHu2iwok .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #aaca01 !important;
  opacity: 0.3;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-szKHu2iwok .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-szKHu2iwok .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-szKHu2iwok {
    padding-top: 0px;
    padding-bottom: 35px;
  }
  .cid-szKHu2iwok .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-szKR4xzRfC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #aaca01;
}
.cid-szKR4xzRfC .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-szKR4xzRfC input,
.cid-szKR4xzRfC textarea {
  border-radius: 30px;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .cid-szKR4xzRfC .img-col {
    order: 2;
    text-align: center;
  }
  .cid-szKR4xzRfC img {
    max-width: 200px;
    margin: auto;
  }
  .cid-szKR4xzRfC .form-row {
    flex-direction: column;
  }
  .cid-szKR4xzRfC .btn {
    width: 100%;
  }
  .cid-szKR4xzRfC .form-group {
    margin-bottom: 2rem;
  }
}
.cid-szKR4xzRfC .btn {
  border-radius: 30px;
  margin: 0 !important;
  padding: 1rem 3.5rem !important;
}
.cid-szKR4xzRfC .mbr-text,
.cid-szKR4xzRfC .mbr-section-btn {
  color: #808080;
}
.cid-szKR4xzRfC .row {
  align-items: center;
}
.cid-szKR4xzRfC .btn:hover {
  transform: translate(0rem);
  box-shadow: none;
}
@media (min-width: 767px) {
  .cid-szKR4xzRfC .form-group {
    margin-bottom: 0rem;
  }
}
.cid-szKMMMrvce {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-szKMMMrvce .list-group-item {
  padding: 0.75rem 3.25rem;
  background-color: transparent !important;
}
.cid-szKMMMrvce .mbr-section-subtitle {
  color: #aaca01;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.cid-szKMMMrvce .item-text {
  font-weight: 700;
}
.cid-szKMMMrvce .mbr-iconfont {
  color: #aaca01;
  font-size: 0.8rem;
}
.cid-szKMMMrvce .plan-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-szKMMMrvce .items-list {
  text-align: left;
}
.cid-szKMMMrvce .list-item {
  margin-bottom: 0.6rem;
}
.cid-szKMMMrvce .iconfont-wrapper {
  display: inline-block;
  margin-right: 0.8rem;
}
.cid-szKMMMrvce ul {
  list-style: none;
}
.cid-szKMMMrvce .plan {
  word-break: break-word;
  position: relative;
  color: #767676;
}
.cid-szKMMMrvce .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-szKMMMrvce .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-szKMMMrvce .plan-inner {
  padding: 4rem 0rem;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-szKMMMrvce .mbr-section-btn {
  margin-right: 0rem !important;
  margin-top: 1rem;
}
.cid-szKMMMrvce .price-figure {
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
}
.cid-szKMMMrvce .plan-title {
  margin-bottom: 2.3rem;
}
.cid-szKMMMrvce .price-value {
  font-weight: 700;
  vertical-align: baseline;
}
.cid-szKMMMrvce .plan-price {
  margin-bottom: 1.2rem;
}
.cid-szKMMMrvce .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 550px) {
  .cid-szKMMMrvce .price-figure {
    font-size: 4.25rem;
  }
}
@media (max-width: 767px) {
  .cid-szKMMMrvce .plan {
    margin-top: 1.5rem;
  }
  .cid-szKMMMrvce .container {
    padding: 0rem;
  }
  .cid-szKMMMrvce ul {
    padding: 0 3rem;
  }
  .cid-szKMMMrvce .mbr-section-btn {
    padding: 0 3rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-szKMMMrvce .plan {
    margin-top: 1.5rem;
  }
  .cid-szKMMMrvce ul {
    padding: 0 3rem;
  }
  .cid-szKMMMrvce .mbr-section-btn {
    padding: 0 3rem;
  }
}
@media (min-width: 767px) {
  .cid-szKMMMrvce .container {
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-szKMMMrvce ul {
    padding: 0 3rem;
  }
  .cid-szKMMMrvce .mbr-section-btn {
    padding: 0 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-szKMMMrvce ul {
    padding: 0 3rem;
  }
  .cid-szKMMMrvce .mbr-section-btn {
    padding: 0 3rem;
  }
}
.cid-szKMMMrvce .mbr-text,
.cid-szKMMMrvce .mbr-section-btn {
  color: #aaca01;
}
.cid-szKMMMrvce .plan-title,
.cid-szKMMMrvce .plan-price {
  color: #aaca01;
  text-align: center;
}
.cid-szKMMMrvce .list-item,
.cid-szKMMMrvce .item-text,
.cid-szKMMMrvce .mbr-section-btn {
  color: #5a5a5a;
  text-align: center;
}
.cid-szKQn5KrIk {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1152.jpg");
}
.cid-szKQn5KrIk .list-group-item {
  padding: 0.75rem 3.25rem;
  background-color: transparent !important;
}
.cid-szKQn5KrIk .mbr-section-subtitle {
  color: #aaca01;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.cid-szKQn5KrIk .item-text {
  font-weight: 700;
}
.cid-szKQn5KrIk .mbr-iconfont {
  color: #aaca01;
  font-size: 0.8rem;
}
.cid-szKQn5KrIk .plan-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-szKQn5KrIk .items-list {
  text-align: left;
}
.cid-szKQn5KrIk .list-item {
  margin-bottom: 0.3rem;
}
.cid-szKQn5KrIk .iconfont-wrapper {
  display: inline-block;
  margin-right: 0.8rem;
}
.cid-szKQn5KrIk ul {
  list-style: none;
}
.cid-szKQn5KrIk .plan {
  word-break: break-word;
  position: relative;
  color: #767676;
}
.cid-szKQn5KrIk .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-szKQn5KrIk .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-szKQn5KrIk .plan-inner {
  padding: 4rem 0rem;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-szKQn5KrIk .mbr-section-btn {
  margin-right: 0rem !important;
  margin-top: 1rem;
}
.cid-szKQn5KrIk .price-figure {
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  color: #aaca01;
}
.cid-szKQn5KrIk .plan-title {
  margin-bottom: 2.3rem;
}
.cid-szKQn5KrIk .price-value {
  font-weight: 700;
  vertical-align: baseline;
}
.cid-szKQn5KrIk .plan-price {
  margin-bottom: 1.2rem;
}
.cid-szKQn5KrIk .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 550px) {
  .cid-szKQn5KrIk .price-figure {
    font-size: 4.25rem;
  }
}
@media (max-width: 767px) {
  .cid-szKQn5KrIk .plan {
    margin-top: 1.5rem;
  }
  .cid-szKQn5KrIk .container {
    padding: 0rem;
  }
  .cid-szKQn5KrIk ul {
    padding: 0 3rem;
  }
  .cid-szKQn5KrIk .mbr-section-btn {
    padding: 0 3rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-szKQn5KrIk .plan {
    margin-top: 1.5rem;
  }
  .cid-szKQn5KrIk ul {
    padding: 0 3rem;
  }
  .cid-szKQn5KrIk .mbr-section-btn {
    padding: 0 3rem;
  }
}
@media (min-width: 767px) {
  .cid-szKQn5KrIk .container {
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-szKQn5KrIk ul {
    padding: 0 3rem;
  }
  .cid-szKQn5KrIk .mbr-section-btn {
    padding: 0 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-szKQn5KrIk ul {
    padding: 0 3rem;
  }
  .cid-szKQn5KrIk .mbr-section-btn {
    padding: 0 5rem;
  }
}
.cid-szKQn5KrIk .mbr-text,
.cid-szKQn5KrIk .mbr-section-btn {
  color: #aaca01;
}
.cid-szKQn5KrIk .list-item,
.cid-szKQn5KrIk .item-text,
.cid-szKQn5KrIk .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-szKQn5KrIk .plan-title,
.cid-szKQn5KrIk .plan-price {
  color: #aaca01;
}
.cid-szLIKmZqPj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-szLIKmZqPj .counter-container ol {
  margin-bottom: 0;
}
.cid-szLIKmZqPj .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-szLIKmZqPj .mbr-text {
  color: #ffffff;
}
.cid-szLIKmZqPj .mbr-section-title {
  color: #aaca01;
}
.cid-szKRBCz4Dt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #aaca01;
}
.cid-szKRBCz4Dt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-szKRBCz4Dt input,
.cid-szKRBCz4Dt textarea {
  border-radius: 30px;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .cid-szKRBCz4Dt .img-col {
    order: 2;
    text-align: center;
  }
  .cid-szKRBCz4Dt img {
    max-width: 200px;
    margin: auto;
  }
  .cid-szKRBCz4Dt .form-row {
    flex-direction: column;
  }
  .cid-szKRBCz4Dt .btn {
    width: 100%;
  }
  .cid-szKRBCz4Dt .form-group {
    margin-bottom: 2rem;
  }
}
.cid-szKRBCz4Dt .btn {
  border-radius: 30px;
  margin: 0 !important;
  padding: 1rem 3.5rem !important;
}
.cid-szKRBCz4Dt .mbr-text,
.cid-szKRBCz4Dt .mbr-section-btn {
  color: #808080;
}
.cid-szKRBCz4Dt .row {
  align-items: center;
}
.cid-szKRBCz4Dt .btn:hover {
  transform: translate(0rem);
  box-shadow: none;
}
@media (min-width: 767px) {
  .cid-szKRBCz4Dt .form-group {
    margin-bottom: 0rem;
  }
}
.cid-szKFRPDxp4 {
  padding-top: 165px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-szKFRPDxp4 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-szKFRPDxp4 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-szKFRPDxp4 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-szKFRPDxp4 h3:before,
  .cid-szKFRPDxp4 h3:after {
    display: none;
  }
}
.cid-szKFRPDxp4 H3 {
  color: #aaca01;
}
.cid-szKFRRTABl {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #232323;
}
.cid-szKFRRTABl .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-szKFRRTABl .copyright {
    margin-bottom: 1rem;
  }
}
.cid-szKFRRTABl .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-szKFRRTABl .text-wrap .icons-wrap .icon-wrapper {
  background: #232323;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #353535;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-szKFRRTABl .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #aaca01;
  border-color: #aaca01;
}
.cid-szKFRRTABl .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-szKFRRTABl .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #fafafa;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-szKFRRTABl .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-szKFRRTABl .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-szKFRRTABl .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-szKFRRTABl .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-szKJ3mzge4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-szKJ3mzge4 .nav-item:focus,
.cid-szKJ3mzge4 .nav-link:focus {
  outline: none;
}
.cid-szKJ3mzge4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-szKJ3mzge4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szKJ3mzge4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-szKJ3mzge4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-szKJ3mzge4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szKJ3mzge4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szKJ3mzge4 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-szKJ3mzge4 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-szKJ3mzge4 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-szKJ3mzge4 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-szKJ3mzge4 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-szKJ3mzge4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szKJ3mzge4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szKJ3mzge4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-szKJ3mzge4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-szKJ3mzge4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szKJ3mzge4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szKJ3mzge4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-szKJ3mzge4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szKJ3mzge4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szKJ3mzge4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szKJ3mzge4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szKJ3mzge4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szKJ3mzge4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-szKJ3mzge4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szKJ3mzge4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szKJ3mzge4 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-szKJ3mzge4 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-szKJ3mzge4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szKJ3mzge4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szKJ3mzge4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-szKJ3mzge4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-szKJ3mzge4 .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szKJ3mzge4 .navbar.navbar-short {
  min-height: 60px;
  opacity: 0.9;
}
.cid-szKJ3mzge4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-szKJ3mzge4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-szKJ3mzge4 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-szKJ3mzge4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szKJ3mzge4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szKJ3mzge4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szKJ3mzge4 .dropdown-item.active,
.cid-szKJ3mzge4 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-szKJ3mzge4 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-szKJ3mzge4 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-szKJ3mzge4 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-szKJ3mzge4 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-szKJ3mzge4 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-szKJ3mzge4 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-szKJ3mzge4 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-szKJ3mzge4 .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-szKJ3mzge4 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-szKJ3mzge4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szKJ3mzge4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szKJ3mzge4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-szKJ3mzge4 .navbar-buttons {
  text-align: center;
}
.cid-szKJ3mzge4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-szKJ3mzge4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-szKJ3mzge4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szKJ3mzge4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szKJ3mzge4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szKJ3mzge4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szKJ3mzge4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szKJ3mzge4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szKJ3mzge4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szKJ3mzge4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szKJ3mzge4 .navbar-dropdown {
  padding: 3rem 0rem;
}
.cid-szKJ3mzge4 a.nav-link {
  font-weight: 300;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-szKJ3mzge4 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-szKJ3mzge4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-szKJ3mzge4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szKJ3mzge4 .navbar {
    height: 77px;
  }
  .cid-szKJ3mzge4 .navbar.opened {
    height: auto;
  }
  .cid-szKJ3mzge4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szKJ3mzge4 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-szKJ3mzge4 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #aaca01;
}
.cid-szKJ3mzge4 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-szKJ3mzge4 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-szKJ3njUnn {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
@media (min-width: 768px) {
  .cid-szKJ3njUnn {
    align-items: flex-end;
  }
  .cid-szKJ3njUnn .row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-szKJ3njUnn {
    align-items: center;
  }
  .cid-szKJ3njUnn .row {
    justify-content: center;
  }
}
.cid-szKJ3njUnn .mbr-section-title,
.cid-szKJ3njUnn .card_topic {
  margin-bottom: 12px;
}
.cid-szKJ3njUnn .item-wrapper {
  padding-bottom: 24px;
}
.cid-szKJ3njUnn .item-wrapper:hover .mbr-section-title a {
  color: #bbbbbb !important;
}
.cid-szKJ3njUnn .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-szKJ3njUnn .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-szKJ3njUnn .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-szKJ3njUnn .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-szKJ3njUnn .category_content,
.cid-szKJ3njUnn .date,
.cid-szKJ3njUnn .name_author {
  opacity: .8;
}
.cid-szKJ3njUnn .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #bbbbbb;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-szKJ3njUnn .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-szKJ3njUnn .category_content,
.cid-szKJ3njUnn .card_topic {
  color: #fafafa;
}
.cid-szKJ3nPOSt {
  padding-top: 150px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1356x904.jpg");
}
.cid-szKJ3nPOSt .row {
  position: relative;
}
.cid-szKJ3nPOSt .container {
  max-width: 1500px;
}
.cid-szKJ3nPOSt h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-szKJ3nPOSt .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-szKJ3nPOSt .container {
    padding: 0 4rem;
  }
}
.cid-szKJ3nPOSt H1 {
  color: #aaca01;
}
.cid-szKTIxfx6J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5a5a5a;
}
.cid-szKTIxfx6J .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-szKTIxfx6J input,
.cid-szKTIxfx6J textarea {
  border-radius: 30px;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .cid-szKTIxfx6J .img-col {
    order: 2;
    text-align: center;
  }
  .cid-szKTIxfx6J img {
    max-width: 200px;
    margin: auto;
  }
  .cid-szKTIxfx6J .form-row {
    flex-direction: column;
  }
  .cid-szKTIxfx6J .btn {
    width: 100%;
  }
  .cid-szKTIxfx6J .form-group {
    margin-bottom: 2rem;
  }
}
.cid-szKTIxfx6J .btn {
  border-radius: 30px;
  margin: 0 !important;
  padding: 1rem 3.5rem !important;
}
.cid-szKTIxfx6J .form-control,
.cid-szKTIxfx6J .field-input {
  padding: 0.5rem;
  background-color: #c1f7d5;
  color: #808080;
  transition: 0.4s;
  min-height: 3rem;
  box-shadow: none;
  outline: none;
  border-radius: 0rem;
  border: none;
  border-bottom: 2px solid #b5e5c7;
}
.cid-szKTIxfx6J .form-control::-webkit-input-placeholder,
.cid-szKTIxfx6J .field-input::-webkit-input-placeholder,
.cid-szKTIxfx6J .form-control::-webkit-input-placeholder,
.cid-szKTIxfx6J .field-input::-webkit-input-placeholder {
  color: #808080;
}
.cid-szKTIxfx6J .form-control:-moz-placeholder,
.cid-szKTIxfx6J .field-input:-moz-placeholder,
.cid-szKTIxfx6J .form-control:-moz-placeholder,
.cid-szKTIxfx6J .field-input:-moz-placeholder {
  color: #808080;
}
.cid-szKTIxfx6J .form-control:hover,
.cid-szKTIxfx6J .field-input:hover,
.cid-szKTIxfx6J .form-control:focus,
.cid-szKTIxfx6J .field-input:focus {
  background-color: #c1f7d5;
  border-color: #b5e5c7 !important;
  color: #808080;
  box-shadow: none;
  outline: none;
}
.cid-szKTIxfx6J .form-control:hover::-webkit-input-placeholder,
.cid-szKTIxfx6J .field-input:hover::-webkit-input-placeholder,
.cid-szKTIxfx6J .form-control:focus::-webkit-input-placeholder,
.cid-szKTIxfx6J .field-input:focus::-webkit-input-placeholder,
.cid-szKTIxfx6J .form-control:hover::-webkit-input-placeholder,
.cid-szKTIxfx6J .field-input:hover::-webkit-input-placeholder,
.cid-szKTIxfx6J .form-control:focus::-webkit-input-placeholder,
.cid-szKTIxfx6J .field-input:focus::-webkit-input-placeholder {
  color: #808080;
}
.cid-szKTIxfx6J .form-control:hover:-moz-placeholder,
.cid-szKTIxfx6J .field-input:hover:-moz-placeholder,
.cid-szKTIxfx6J .form-control:focus:-moz-placeholder,
.cid-szKTIxfx6J .field-input:focus:-moz-placeholder,
.cid-szKTIxfx6J .form-control:hover:-moz-placeholder,
.cid-szKTIxfx6J .field-input:hover:-moz-placeholder,
.cid-szKTIxfx6J .form-control:focus:-moz-placeholder,
.cid-szKTIxfx6J .field-input:focus:-moz-placeholder {
  color: #808080;
}
.cid-szKTIxfx6J .jq-number__spin:hover,
.cid-szKTIxfx6J .jq-number__spin:focus {
  background-color: #c1f7d5;
  border-color: #b5e5c7 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-szKTIxfx6J .jq-number__spin {
  background-color: #c1f7d5;
  border-color: #b5e5c7;
  color: #808080;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-szKTIxfx6J .jq-selectbox li,
.cid-szKTIxfx6J .jq-selectbox li {
  background-color: #c1f7d5;
  color: #000000;
}
.cid-szKTIxfx6J .jq-selectbox li:hover,
.cid-szKTIxfx6J .jq-selectbox li.selected {
  background-color: #c1f7d5;
  color: #000000;
}
.cid-szKTIxfx6J .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-szKTIxfx6J .jq-number__spin.minus:hover:after,
.cid-szKTIxfx6J .jq-number__spin.plus:hover:after {
  border-top-color: #c1f7d5;
  border-bottom-color: #c1f7d5;
}
.cid-szKTIxfx6J .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-szKTIxfx6J .jq-number__spin.minus:after,
.cid-szKTIxfx6J .jq-number__spin.plus:after {
  border-top-color: #c1f7d5;
  border-bottom-color: #c1f7d5;
}
.cid-szKTIxfx6J input::-webkit-clear-button {
  display: none;
}
.cid-szKTIxfx6J input::-webkit-inner-spin-button {
  display: none;
}
.cid-szKTIxfx6J input::-webkit-outer-spin-button {
  display: none;
}
.cid-szKTIxfx6J input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-szKTIxfx6J .mbr-text,
.cid-szKTIxfx6J .mbr-section-btn {
  color: #808080;
}
.cid-szKTIxfx6J .row {
  align-items: center;
}
.cid-szKTIxfx6J .btn:hover {
  transform: translate(0rem);
  box-shadow: none;
}
@media (min-width: 767px) {
  .cid-szKTIxfx6J .form-group {
    margin-bottom: 0rem;
  }
}
.cid-szKTIxfx6J H3 {
  color: #ffffff;
}
.cid-szKJ3obO34 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-szKJ3obO34 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-szKJ3obO34 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szKJ3obO34 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szKJ3obO34 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-szKJ3obO34 .row > .row {
  display: block;
}
.cid-szKJ3obO34 .mbr-gallery-item {
  width: 100%;
}
.cid-szKJ3obO34 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #aaca01;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-szKJ3obO34 .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-szKJ3obO34 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-szKJ3obO34 .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-szKJ3obO34 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-szKJ3obO34 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #aaca01 !important;
  opacity: 0.3;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-szKJ3obO34 .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-szKJ3obO34 .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-szKJ3obO34 {
    padding-top: 10px;
    padding-bottom: 0px;
  }
  .cid-szKJ3obO34 .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-szKJ3pJcfz {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-szKJ3pJcfz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-szKJ3pJcfz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szKJ3pJcfz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szKJ3pJcfz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-szKJ3pJcfz .row > .row {
  display: block;
}
.cid-szKJ3pJcfz .mbr-gallery-item {
  width: 100%;
}
.cid-szKJ3pJcfz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #aaca01;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-szKJ3pJcfz .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-szKJ3pJcfz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-szKJ3pJcfz .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-szKJ3pJcfz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-szKJ3pJcfz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #aaca01 !important;
  opacity: 0.3;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-szKJ3pJcfz .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-szKJ3pJcfz .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-szKJ3pJcfz {
    padding-top: 0px;
    padding-bottom: 35px;
  }
  .cid-szKJ3pJcfz .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-sU1nq07o6Z {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
.cid-sU1nq07o6Z h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-sU1nq07o6Z h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sU1nq07o6Z h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-sU1nq07o6Z h3:before,
  .cid-sU1nq07o6Z h3:after {
    display: none;
  }
}
.cid-sU1nq07o6Z H3 {
  color: #aaca01;
}
.cid-szKThgTlEU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #aaca01;
}
.cid-szKThgTlEU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-szKThgTlEU input,
.cid-szKThgTlEU textarea {
  border-radius: 30px;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .cid-szKThgTlEU .img-col {
    order: 2;
    text-align: center;
  }
  .cid-szKThgTlEU img {
    max-width: 200px;
    margin: auto;
  }
  .cid-szKThgTlEU .form-row {
    flex-direction: column;
  }
  .cid-szKThgTlEU .btn {
    width: 100%;
  }
  .cid-szKThgTlEU .form-group {
    margin-bottom: 2rem;
  }
}
.cid-szKThgTlEU .btn {
  border-radius: 30px;
  margin: 0 !important;
  padding: 1rem 3.5rem !important;
}
.cid-szKThgTlEU .mbr-text,
.cid-szKThgTlEU .mbr-section-btn {
  color: #808080;
}
.cid-szKThgTlEU .row {
  align-items: center;
}
.cid-szKThgTlEU .btn:hover {
  transform: translate(0rem);
  box-shadow: none;
}
@media (min-width: 767px) {
  .cid-szKThgTlEU .form-group {
    margin-bottom: 0rem;
  }
}
.cid-szKJ3rTcAS {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #232323;
}
.cid-szKJ3rTcAS .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-szKJ3rTcAS .copyright {
    margin-bottom: 1rem;
  }
}
.cid-szKJ3rTcAS .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-szKJ3rTcAS .text-wrap .icons-wrap .icon-wrapper {
  background: #232323;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #353535;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-szKJ3rTcAS .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #aaca01;
  border-color: #aaca01;
}
.cid-szKJ3rTcAS .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-szKJ3rTcAS .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #fafafa;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-szKJ3rTcAS .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-szKJ3rTcAS .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-szKJ3rTcAS .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-szKJ3rTcAS .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-szKLRSK2Jz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-szKLRSK2Jz .nav-item:focus,
.cid-szKLRSK2Jz .nav-link:focus {
  outline: none;
}
.cid-szKLRSK2Jz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-szKLRSK2Jz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szKLRSK2Jz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-szKLRSK2Jz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-szKLRSK2Jz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szKLRSK2Jz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szKLRSK2Jz .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-szKLRSK2Jz .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-szKLRSK2Jz .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-szKLRSK2Jz .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-szKLRSK2Jz .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-szKLRSK2Jz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szKLRSK2Jz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szKLRSK2Jz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-szKLRSK2Jz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-szKLRSK2Jz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szKLRSK2Jz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szKLRSK2Jz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-szKLRSK2Jz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szKLRSK2Jz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szKLRSK2Jz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szKLRSK2Jz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szKLRSK2Jz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szKLRSK2Jz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-szKLRSK2Jz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szKLRSK2Jz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szKLRSK2Jz .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-szKLRSK2Jz .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-szKLRSK2Jz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szKLRSK2Jz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szKLRSK2Jz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-szKLRSK2Jz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-szKLRSK2Jz .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szKLRSK2Jz .navbar.navbar-short {
  min-height: 60px;
  opacity: 0.9;
}
.cid-szKLRSK2Jz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-szKLRSK2Jz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-szKLRSK2Jz .navbar-short {
  padding: 1rem 0 !important;
}
.cid-szKLRSK2Jz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szKLRSK2Jz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szKLRSK2Jz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szKLRSK2Jz .dropdown-item.active,
.cid-szKLRSK2Jz .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-szKLRSK2Jz .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-szKLRSK2Jz .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-szKLRSK2Jz .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-szKLRSK2Jz .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-szKLRSK2Jz .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-szKLRSK2Jz .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-szKLRSK2Jz .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-szKLRSK2Jz .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-szKLRSK2Jz .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-szKLRSK2Jz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szKLRSK2Jz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szKLRSK2Jz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-szKLRSK2Jz .navbar-buttons {
  text-align: center;
}
.cid-szKLRSK2Jz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-szKLRSK2Jz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-szKLRSK2Jz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szKLRSK2Jz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szKLRSK2Jz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szKLRSK2Jz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szKLRSK2Jz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szKLRSK2Jz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szKLRSK2Jz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szKLRSK2Jz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szKLRSK2Jz .navbar-dropdown {
  padding: 3rem 0rem;
}
.cid-szKLRSK2Jz a.nav-link {
  font-weight: 300;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-szKLRSK2Jz .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-szKLRSK2Jz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-szKLRSK2Jz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szKLRSK2Jz .navbar {
    height: 77px;
  }
  .cid-szKLRSK2Jz .navbar.opened {
    height: auto;
  }
  .cid-szKLRSK2Jz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szKLRSK2Jz a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-szKLRSK2Jz a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #aaca01;
}
.cid-szKLRSK2Jz .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-szKLRSK2Jz .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-szKLRTmg4Z {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
@media (min-width: 768px) {
  .cid-szKLRTmg4Z {
    align-items: flex-end;
  }
  .cid-szKLRTmg4Z .row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-szKLRTmg4Z {
    align-items: center;
  }
  .cid-szKLRTmg4Z .row {
    justify-content: center;
  }
}
.cid-szKLRTmg4Z .mbr-section-title,
.cid-szKLRTmg4Z .card_topic {
  margin-bottom: 12px;
}
.cid-szKLRTmg4Z .item-wrapper {
  padding-bottom: 24px;
}
.cid-szKLRTmg4Z .item-wrapper:hover .mbr-section-title a {
  color: #bbbbbb !important;
}
.cid-szKLRTmg4Z .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-szKLRTmg4Z .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-szKLRTmg4Z .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-szKLRTmg4Z .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-szKLRTmg4Z .category_content,
.cid-szKLRTmg4Z .date,
.cid-szKLRTmg4Z .name_author {
  opacity: .8;
}
.cid-szKLRTmg4Z .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #bbbbbb;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-szKLRTmg4Z .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-szKLRTQlMH {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1356x904.jpg");
}
.cid-szKLRTQlMH .row {
  position: relative;
}
.cid-szKLRTQlMH .container {
  max-width: 1500px;
}
.cid-szKLRTQlMH h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-szKLRTQlMH .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-szKLRTQlMH .container {
    padding: 0 4rem;
  }
}
.cid-szKLRTQlMH H1 {
  color: #aaca01;
}
.cid-szKLRWS0tt {
  background-image: url("../../../assets/images/backgound-1920x1280.jpg");
}
.cid-szKLRWS0tt h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-szKLRWS0tt h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-szKLRWS0tt h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-szKLRWS0tt h3:before,
  .cid-szKLRWS0tt h3:after {
    display: none;
  }
}
.cid-szKLRWS0tt H3 {
  color: #aaca01;
}
.cid-szKLRXfDzc {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #232323;
}
.cid-szKLRXfDzc .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #bbbbbb, #aaca01);
}
.cid-szKLRXfDzc .btn-col {
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 767px) {
  .cid-szKLRXfDzc .btn-col {
    justify-content: center;
  }
}
.cid-szKLRXfDzc .mbr-text,
.cid-szKLRXfDzc .mbr-section-btn {
  color: #aaca01;
}
.cid-szKLRXfDzc p {
  margin: 0;
}
.cid-szKLRXH2Fl {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #232323;
}
.cid-szKLRXH2Fl .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-szKLRXH2Fl .copyright {
    margin-bottom: 1rem;
  }
}
.cid-szKLRXH2Fl .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-szKLRXH2Fl .text-wrap .icons-wrap .icon-wrapper {
  background: #232323;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #353535;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-szKLRXH2Fl .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #aaca01;
  border-color: #aaca01;
}
.cid-szKLRXH2Fl .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-szKLRXH2Fl .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #fafafa;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-szKLRXH2Fl .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-szKLRXH2Fl .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-szKLRXH2Fl .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-szKLRXH2Fl .text-wrap .icons-wrap::after {
    display: none;
  }
}
