body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3.16rem;
  line-height: 120%;
  letter-spacing: 0.004rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.95rem;
}
.display-2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2.37rem;
  line-height: 120%;
}
.display-2 > .mbr-iconfont {
  font-size: 2.9625rem;
}
.display-4 {
  font-family: 'Rowdies', display;
  font-size: 1rem;
  line-height: 1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.77rem;
  line-height: 1.77em;
  letter-spacing: 0.016rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.2125rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.33rem;
  line-height: 140%;
  letter-spacing: 0.001rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6625rem;
}
/* ---- 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: 2.528rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.212rem;
    font-size: calc( 1.756rem + (3.16 - 1.756) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.756rem + (3.16 - 1.756) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.896rem;
    font-size: calc( 1.4795rem + (2.37 - 1.4795) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.4795rem + (2.37 - 1.4795) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.416rem;
    font-size: calc( 1.2694999999999999rem + (1.77 - 1.2694999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2694999999999999rem + (1.77 - 1.2694999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.064rem;
    font-size: calc( 1.1155rem + (1.33 - 1.1155) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.1155rem + (1.33 - 1.1155) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 3.125rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 3.125rem;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 3.125rem;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 3.125rem;
}
.bg-primary {
  background-color: #fa0303 !important;
}
.bg-success {
  background-color: #d7d7d7 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #f7e8d2 !important;
}
.bg-danger {
  background-color: #6e6979 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fa0303 !important;
  border-color: #fa0303 !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: #a40202 !important;
  border-color: #a40202 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a40202 !important;
  border-color: #a40202 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fcfbf5 !important;
  border-color: #fcfbf5 !important;
  color: #baa838 !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: #776c24 !important;
  background-color: #e8e0b2 !important;
  border-color: #e8e0b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #baa838 !important;
  background-color: #e8e0b2 !important;
  border-color: #e8e0b2 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #d7d7d7 !important;
  border-color: #d7d7d7 !important;
  color: #585858 !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: #acacac !important;
  border-color: #acacac !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #585858 !important;
  background-color: #acacac !important;
  border-color: #acacac !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f7e8d2 !important;
  border-color: #f7e8d2 !important;
  color: #ac721e !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #eac288 !important;
  border-color: #eac288 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ac721e !important;
  background-color: #eac288 !important;
  border-color: #eac288 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #6e6979 !important;
  border-color: #6e6979 !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: #44414b !important;
  border-color: #44414b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #44414b !important;
  border-color: #44414b !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: #fa0303;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a40202 !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: #fa0303 !important;
  border-color: #fa0303 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fcfbf5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e8e0b2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #baa838 !important;
  background-color: #fcfbf5 !important;
  border-color: #fcfbf5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d7d7d7;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #acacac !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #585858 !important;
  background-color: #d7d7d7 !important;
  border-color: #d7d7d7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f7e8d2;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #eac288 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ac721e !important;
  background-color: #f7e8d2 !important;
  border-color: #f7e8d2 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6e6979;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #44414b !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: #6e6979 !important;
  border-color: #6e6979 !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: #fa0303 !important;
}
.text-secondary {
  color: #fcfbf5 !important;
}
.text-success {
  color: #d7d7d7 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #f7e8d2 !important;
}
.text-danger {
  color: #6e6979 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #950202 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #e4dca7 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #a4a4a4 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #e8bc7b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #3c3a42 !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: #fa0303;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #f7e8d2;
}
.alert-danger {
  background-color: #6e6979;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fa0303;
  border-color: #fa0303;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fa0303;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fecbcb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #afabb6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rowdies', display;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #fa0303 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rowdies', display;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #fa0303;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fa0303;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fa0303;
}
.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: #fa0303;
  border-bottom-color: #fa0303;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #fa0303 !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: #fcfbf5 !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='%23fa0303' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  border: none;
  box-shadow: none;
  padding: 16px 40px;
  font-weight: 400;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont,
.mbr-section-btn .btn:focus .mbr-iconfont,
.mbr-section-btn-main .btn:focus .mbr-iconfont {
  transform: translate(0.5rem, 0);
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 8px;
  font-size: 16px;
  transition: all .3s ease;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover {
  border: none;
  box-shadow: none;
}
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info {
  color: #fa0303 !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-twFGb9Wfv6 .navbar-dropdown {
  background-color: #fcfbf5 !important;
  padding: 0;
}
.cid-twFGb9Wfv6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fcfbf5 !important;
  background: #fcfbf5;
}
.cid-twFGb9Wfv6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-twFGb9Wfv6 .menu_box .navbar.opened,
  .cid-twFGb9Wfv6 .menu_box .navbar-collapse {
    background-color: #fcfbf5 !important;
    transition: all 0s ease 0s;
  }
}
.cid-twFGb9Wfv6 .navbar-dropdown {
  position: relative !important;
}
.cid-twFGb9Wfv6 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-twFGb9Wfv6 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-twFGb9Wfv6 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-twFGb9Wfv6 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-twFGb9Wfv6 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-twFGb9Wfv6 .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #fcfbf5;
  }
  .cid-twFGb9Wfv6 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-twFGb9Wfv6 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-twFGb9Wfv6 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-twFGb9Wfv6 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-twFGb9Wfv6 .offcanvas-body .mbr-text,
  .cid-twFGb9Wfv6 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-twFGb9Wfv6 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-twFGb9Wfv6 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-twFGb9Wfv6 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1d;
  }
  .cid-twFGb9Wfv6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-twFGb9Wfv6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-twFGb9Wfv6 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-twFGb9Wfv6 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-twFGb9Wfv6 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-twFGb9Wfv6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-twFGb9Wfv6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-twFGb9Wfv6 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-twFGb9Wfv6 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-twFGb9Wfv6 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-twFGb9Wfv6 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-twFGb9Wfv6 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-twFGb9Wfv6 .nav-item {
    margin: 0 !important;
  }
}
.cid-twFGb9Wfv6 .nav-item .nav-link {
  position: relative;
}
.cid-twFGb9Wfv6 .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fa0303;
  transition: all 0.3s ease-out;
}
.cid-twFGb9Wfv6 .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-twFGb9Wfv6 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-twFGb9Wfv6 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-twFGb9Wfv6 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-twFGb9Wfv6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-twFGb9Wfv6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-twFGb9Wfv6 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-twFGb9Wfv6 .offcanvas_box {
    display: none;
  }
}
.cid-twFGb9Wfv6 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-twFGb9Wfv6 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-twFGb9Wfv6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-twFGb9Wfv6 .container {
  display: flex;
  margin: auto;
}
.cid-twFGb9Wfv6 .iconfont-wrapper {
  color: #1d1d1d;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-twFGb9Wfv6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-twFGb9Wfv6 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-twFGb9Wfv6 .navbar-caption {
  color: #1d1d1d;
}
.cid-twFGb9Wfv6 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-twFGb9Wfv6 .navbar-nav {
    margin: 0;
  }
}
.cid-twFGb9Wfv6 .dropdown-menu,
.cid-twFGb9Wfv6 .navbar.opened {
  background-color: false !important;
}
.cid-twFGb9Wfv6 .nav-item:focus,
.cid-twFGb9Wfv6 .nav-link:focus {
  outline: none;
}
.cid-twFGb9Wfv6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twFGb9Wfv6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twFGb9Wfv6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-twFGb9Wfv6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twFGb9Wfv6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twFGb9Wfv6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twFGb9Wfv6 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-twFGb9Wfv6 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-twFGb9Wfv6 .navbar.opened {
  transition: all 0.3s;
}
.cid-twFGb9Wfv6 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-twFGb9Wfv6 .navbar .navbar-logo img {
  object-fit: contain;
}
.cid-twFGb9Wfv6 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-twFGb9Wfv6 .navbar.collapsed {
  justify-content: center;
}
.cid-twFGb9Wfv6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twFGb9Wfv6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-twFGb9Wfv6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twFGb9Wfv6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twFGb9Wfv6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twFGb9Wfv6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-twFGb9Wfv6 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-twFGb9Wfv6 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-twFGb9Wfv6 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-twFGb9Wfv6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twFGb9Wfv6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twFGb9Wfv6 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-twFGb9Wfv6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twFGb9Wfv6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-twFGb9Wfv6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-twFGb9Wfv6 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-twFGb9Wfv6 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-twFGb9Wfv6 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-twFGb9Wfv6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-twFGb9Wfv6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-twFGb9Wfv6 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-twFGb9Wfv6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-twFGb9Wfv6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-twFGb9Wfv6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-twFGb9Wfv6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twFGb9Wfv6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-twFGb9Wfv6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twFGb9Wfv6 .dropdown-item.active,
.cid-twFGb9Wfv6 .dropdown-item:active {
  background-color: transparent;
}
.cid-twFGb9Wfv6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twFGb9Wfv6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twFGb9Wfv6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twFGb9Wfv6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twFGb9Wfv6 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-twFGb9Wfv6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-twFGb9Wfv6 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fcfbf5;
  background: #fcfbf5;
}
.cid-twFGb9Wfv6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1d;
}
.cid-twFGb9Wfv6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twFGb9Wfv6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twFGb9Wfv6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twFGb9Wfv6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twFGb9Wfv6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twFGb9Wfv6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twFGb9Wfv6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twFGb9Wfv6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twFGb9Wfv6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-twFGb9Wfv6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-twFGb9Wfv6 .navbar {
    height: 70px;
  }
  .cid-twFGb9Wfv6 .navbar.opened {
    height: auto;
  }
  .cid-twFGb9Wfv6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twFGb9Wfv6 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-twFGb9Wfv6 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-twFGb9Wfv6 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-twFGb9Wfv6 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-twFGb9Wfv6 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-twFGb9Wfv6 .navbar-caption:hover {
  color: #fa0303;
}
@media (min-width: 992px) {
  .cid-twFGb9Wfv6 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-twFGb9Wfv6 .text_widget {
  margin-bottom: 32px;
  color: #1d1d1d;
}
.cid-twFGb9Wfv6 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-twFGb9Wfv6 .text_widget a:hover {
  color: #fa0303 !important;
}
.cid-twFGb9Wfv6 .mbr-section-subtitle {
  color: #1d1d1d;
  text-align: left;
}
.cid-twFGb9Wfv6 .mbr-text {
  color: #1d1d1d;
  text-align: left;
}
.cid-twFGb9Wfv6 .mbr-section-subtitle,
.cid-twFGb9Wfv6 .text_widget,
.cid-twFGb9Wfv6 .mbr-section-btn {
  text-align: left;
}
.cid-twFGb9Wfv6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uSM0zELlqN {
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-uSM0zELlqN .carousel {
    overflow: hidden;
  }
  .cid-uSM0zELlqN .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-uSM0zELlqN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uSM0zELlqN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uSM0zELlqN .carousel,
.cid-uSM0zELlqN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uSM0zELlqN .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSM0zELlqN .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-uSM0zELlqN .item-wrapper {
    height: 215px;
  }
}
.cid-uSM0zELlqN .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uSM0zELlqN .carousel-caption {
  bottom: 40px;
}
.cid-uSM0zELlqN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uSM0zELlqN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uSM0zELlqN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uSM0zELlqN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uSM0zELlqN .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-uSM0zELlqN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSM0zELlqN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uSM0zELlqN .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-uSM0zELlqN .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-uSM0zELlqN .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-uSM0zELlqN .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-uSM0zELlqN .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uSM0zELlqN .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-uSM0zELlqN .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSM0zELlqN .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uSM0zELlqN .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uSM0zELlqN .soc-item::before,
.cid-uSM0zELlqN .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uSM0zELlqN .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uSM0zELlqN .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uSM0zELlqN .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uSM0zELlqN .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uSM0zELlqN .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-uSM0zELlqN .text {
  color: #ddc499;
}
.cid-uSM0zELlqN .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-uSM0zELlqN .mbr-section-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLXCIZt72 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSLXCIZt72 .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 0.9rem;
}
.cid-uSLXCIZt72 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uSLXCIZt72 .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-uSLXCIZt72 .mbr-text {
  color: #444;
}
.cid-uSLXCIZt72 h5 {
  margin-bottom: 0;
}
.cid-uSLXCIZt72 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSLXCIZt72 .socicon {
  color: #9e9e9e;
  font-size: 0.2rem;
}
.cid-uSLXCIZt72 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uSLXCIZt72 .social-list .soc-item {
  margin: 0 0.5rem;
  display: inline-block;
}
.cid-uSLXCIZt72 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uSLXCIZt72 .social-list a:hover {
  opacity: 0.4;
}
.cid-uSLXCIZt72 .media-container-row > div {
  padding: 0px;
}
.cid-uSLXCIZt72 .text2 {
  color: #000000;
  text-align: left;
}
.cid-uSLXCIZt72 .group-title {
  text-align: left;
}
.cid-uSLXCIZt72 .group-title SPAN {
  color: #656565;
}
.cid-uSLXCIZt72 .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-uSLXCIZt72 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uSLXCIZt72 h3 {
    margin-bottom: 10px;
  }
}
.cid-uSLXCIZt72 .links SPAN {
  color: #9e9e9e;
}
.cid-uSLXCIZt72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLXCIZt72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLXCIZt72 .links,
.cid-uSLXCIZt72 .navbar-brand {
  color: #000000;
}
.cid-uSJA3kF9ag .navbar-dropdown {
  background-color: #fcfbf5 !important;
  padding: 0;
}
.cid-uSJA3kF9ag .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fcfbf5 !important;
  background: #fcfbf5;
}
.cid-uSJA3kF9ag .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uSJA3kF9ag .menu_box .navbar.opened,
  .cid-uSJA3kF9ag .menu_box .navbar-collapse {
    background-color: #fcfbf5 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uSJA3kF9ag .navbar-dropdown {
  position: relative !important;
}
.cid-uSJA3kF9ag .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uSJA3kF9ag .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uSJA3kF9ag .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uSJA3kF9ag .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uSJA3kF9ag .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uSJA3kF9ag .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #fcfbf5;
  }
  .cid-uSJA3kF9ag .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uSJA3kF9ag .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uSJA3kF9ag .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uSJA3kF9ag .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uSJA3kF9ag .offcanvas-body .mbr-text,
  .cid-uSJA3kF9ag .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uSJA3kF9ag .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uSJA3kF9ag .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uSJA3kF9ag .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1d;
  }
  .cid-uSJA3kF9ag .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uSJA3kF9ag .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uSJA3kF9ag .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uSJA3kF9ag .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uSJA3kF9ag ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uSJA3kF9ag .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSJA3kF9ag .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uSJA3kF9ag .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uSJA3kF9ag li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uSJA3kF9ag .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uSJA3kF9ag .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uSJA3kF9ag .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uSJA3kF9ag .nav-item {
    margin: 0 !important;
  }
}
.cid-uSJA3kF9ag .nav-item .nav-link {
  position: relative;
}
.cid-uSJA3kF9ag .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fa0303;
  transition: all 0.3s ease-out;
}
.cid-uSJA3kF9ag .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uSJA3kF9ag .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uSJA3kF9ag .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uSJA3kF9ag .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uSJA3kF9ag .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSJA3kF9ag .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uSJA3kF9ag .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uSJA3kF9ag .offcanvas_box {
    display: none;
  }
}
.cid-uSJA3kF9ag .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uSJA3kF9ag .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uSJA3kF9ag .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uSJA3kF9ag .container {
  display: flex;
  margin: auto;
}
.cid-uSJA3kF9ag .iconfont-wrapper {
  color: #1d1d1d;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uSJA3kF9ag .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uSJA3kF9ag .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uSJA3kF9ag .navbar-caption {
  color: #1d1d1d;
}
.cid-uSJA3kF9ag .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uSJA3kF9ag .navbar-nav {
    margin: 0;
  }
}
.cid-uSJA3kF9ag .dropdown-menu,
.cid-uSJA3kF9ag .navbar.opened {
  background-color: false !important;
}
.cid-uSJA3kF9ag .nav-item:focus,
.cid-uSJA3kF9ag .nav-link:focus {
  outline: none;
}
.cid-uSJA3kF9ag .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSJA3kF9ag .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSJA3kF9ag .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSJA3kF9ag .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSJA3kF9ag .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSJA3kF9ag .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSJA3kF9ag .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uSJA3kF9ag .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uSJA3kF9ag .navbar.opened {
  transition: all 0.3s;
}
.cid-uSJA3kF9ag .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uSJA3kF9ag .navbar .navbar-logo img {
  object-fit: contain;
}
.cid-uSJA3kF9ag .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uSJA3kF9ag .navbar.collapsed {
  justify-content: center;
}
.cid-uSJA3kF9ag .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSJA3kF9ag .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSJA3kF9ag .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSJA3kF9ag .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSJA3kF9ag .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSJA3kF9ag .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uSJA3kF9ag .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSJA3kF9ag .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uSJA3kF9ag .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uSJA3kF9ag .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSJA3kF9ag .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSJA3kF9ag .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uSJA3kF9ag .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSJA3kF9ag .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uSJA3kF9ag .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSJA3kF9ag .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uSJA3kF9ag .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uSJA3kF9ag .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uSJA3kF9ag .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSJA3kF9ag .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSJA3kF9ag .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uSJA3kF9ag .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSJA3kF9ag .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSJA3kF9ag .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSJA3kF9ag .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSJA3kF9ag .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uSJA3kF9ag .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSJA3kF9ag .dropdown-item.active,
.cid-uSJA3kF9ag .dropdown-item:active {
  background-color: transparent;
}
.cid-uSJA3kF9ag .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSJA3kF9ag .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSJA3kF9ag .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSJA3kF9ag .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSJA3kF9ag ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uSJA3kF9ag .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSJA3kF9ag button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fcfbf5;
  background: #fcfbf5;
}
.cid-uSJA3kF9ag button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1d;
}
.cid-uSJA3kF9ag button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSJA3kF9ag button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSJA3kF9ag button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSJA3kF9ag button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSJA3kF9ag nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSJA3kF9ag nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSJA3kF9ag nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSJA3kF9ag nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSJA3kF9ag a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uSJA3kF9ag .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSJA3kF9ag .navbar {
    height: 70px;
  }
  .cid-uSJA3kF9ag .navbar.opened {
    height: auto;
  }
  .cid-uSJA3kF9ag .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSJA3kF9ag .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uSJA3kF9ag .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uSJA3kF9ag .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uSJA3kF9ag .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uSJA3kF9ag .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uSJA3kF9ag .navbar-caption:hover {
  color: #fa0303;
}
@media (min-width: 992px) {
  .cid-uSJA3kF9ag .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uSJA3kF9ag .text_widget {
  margin-bottom: 32px;
  color: #1d1d1d;
}
.cid-uSJA3kF9ag .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uSJA3kF9ag .text_widget a:hover {
  color: #fa0303 !important;
}
.cid-uSJA3kF9ag .mbr-section-subtitle {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSJA3kF9ag .mbr-text {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSJA3kF9ag .mbr-section-subtitle,
.cid-uSJA3kF9ag .text_widget,
.cid-uSJA3kF9ag .mbr-section-btn {
  text-align: left;
}
.cid-uSJA3kF9ag a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uSKJktCvGB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSKJktCvGB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSKJktCvGB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSKJktCvGB .section-border-item {
  background-color: #fcdb42;
}
.cid-uSKJktCvGB .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSKJktCvGB .card-wrap {
  width: 100%;
}
.cid-uSKJktCvGB .card-box {
  width: 100%;
}
.cid-uSKJktCvGB .card-title {
  color: #FFF;
}
.cid-uSKJktCvGB .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSKJktCvGB .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSJQYz0BTf {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/f-sa-631529139962-660x369.jpg");
}
.cid-uSJQYz0BTf .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uSJQYz0BTf .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uSJQYz0BTf .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSJQYz0BTf .label-text {
    text-align: center !important;
  }
}
.cid-uSJQYz0BTf .mbr-section-title {
  width: 100%;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSJQYz0BTf .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uSJQYz0BTf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSJQYz0BTf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSKVFJZ6Va {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSKVFJZ6Va .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSKVFJZ6Va .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSKVFJZ6Va .section-border-item {
  background-color: #fcdb42;
}
.cid-uSKVFJZ6Va .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSKVFJZ6Va .card-wrap {
  width: 100%;
}
.cid-uSKVFJZ6Va .card-box {
  width: 100%;
}
.cid-uSKVFJZ6Va .card-title {
  color: #FFF;
}
.cid-uSKVFJZ6Va .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSKVFJZ6Va .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSKVDSsR0H {
  background-color: #000000;
}
.cid-uSKVDSsR0H .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSKVDSsR0H .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSKVDSsR0H .content p {
  margin: 0;
}
.cid-uSKVDSsR0H .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLTrsUfqI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edefeb;
}
.cid-uSLTrsUfqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLTrsUfqI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLTrsUfqI .item-wrapper {
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uSLTrsUfqI .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSLTrsUfqI .text-wrapper {
  padding: 4rem 3rem 4rem 1rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSLTrsUfqI .text-wrapper {
    padding: 2.25rem;
  }
}
@media (max-width: 767px) {
  .cid-uSLTrsUfqI .text-wrapper {
    padding: 1.5rem;
  }
}
.cid-uSLTrsUfqI .row {
  flex-direction: row-reverse;
}
.cid-uSLTrsUfqI .text-wrapper {
  padding: 4rem 2rem 4rem 3rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSLTrsUfqI .text-wrapper {
    padding: 2.25rem;
  }
}
@media (max-width: 767px) {
  .cid-uSLTrsUfqI .text-wrapper {
    padding: 1.5rem;
  }
}
.cid-uSLTrsUfqI .row {
  align-items: center;
  margin-right: -1rem;
  margin-left: -1rem;
}
.cid-uSLTrsUfqI .image-wrapper {
  padding: 0 1rem;
}
.cid-uSLTrsUfqI img,
.cid-uSLTrsUfqI .image-wrapper {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uSLTrsUfqI img,
  .cid-uSLTrsUfqI .image-wrapper {
    max-height: 350px;
  }
}
.cid-uSLTrsUfqI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uSLTrsUfqI .mbr-text {
  color: #000000;
}
.cid-uSLTrsUfqI .mbr-text,
.cid-uSLTrsUfqI .mbr-section-btn {
  text-align: left;
}
.cid-uSLTrsUfqI .price {
  color: #232323;
  text-align: left;
}
.cid-uSLTrsUfqI .content-head {
  max-width: 800px;
}
.cid-uSLTrsUfqI .mbr-section-maintitle {
  text-align: center;
}
.cid-uSLTrsUfqI .mbr-section-mainsubtitle {
  text-align: center;
}
.cid-uSKPKFxYLw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSKPKFxYLw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSKPKFxYLw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSKPKFxYLw .section-border-item {
  background-color: #fcdb42;
}
.cid-uSKPKFxYLw .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSKPKFxYLw .card-wrap {
  width: 100%;
}
.cid-uSKPKFxYLw .card-box {
  width: 100%;
}
.cid-uSKPKFxYLw .card-title {
  color: #FFF;
}
.cid-uSKPKFxYLw .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSKPKFxYLw .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSKPIFXxfL {
  background-color: #000000;
}
.cid-uSKPIFXxfL .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSKPIFXxfL .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSKPIFXxfL .content p {
  margin: 0;
}
.cid-uSKPIFXxfL .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLQIzfxIm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uSLQIzfxIm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLQIzfxIm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLQIzfxIm .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uSLQIzfxIm .container-fluid {
    padding: 0 30px;
  }
}
.cid-uSLQIzfxIm .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSLQIzfxIm .container {
    padding: 0 30px;
  }
}
.cid-uSLQIzfxIm .row {
  position: relative;
}
.cid-uSLQIzfxIm .row::before {
  content: '';
  position: absolute;
  bottom: -16rem;
  left: -6rem;
  transform: rotate(-14deg);
  display: block;
  width: 649px;
  height: 400px;
  border-radius: 150px;
  border: 2px solid #ff6839;
}
@media (max-width: 992px) {
  .cid-uSLQIzfxIm .row::before {
    display: none;
  }
}
@media (max-width: 992px) {
  .cid-uSLQIzfxIm .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSLQIzfxIm .title-wrapper .mbr-section-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-uSLQIzfxIm .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-uSLQIzfxIm .card-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 85px 0;
  border-top: 1px solid #000000;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uSLQIzfxIm .card-wrapper {
    display: block;
  }
}
.cid-uSLQIzfxIm .card-wrapper .mbr-date {
  margin-bottom: 0;
  min-width: 106px;
}
@media (max-width: 992px) {
  .cid-uSLQIzfxIm .card-wrapper .mbr-date {
    margin-bottom: 32px;
  }
}
.cid-uSLQIzfxIm .card-wrapper .mbr-date span {
  display: block;
  font-size: 20%;
}
.cid-uSLQIzfxIm .card-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uSLQIzfxIm .card-wrapper .mbr-loc {
  margin-bottom: 0;
}
.cid-uSLQIzfxIm .card-wrapper .mbr-section-btn {
  min-width: 192px;
}
@media (max-width: 992px) {
  .cid-uSLQIzfxIm .card-wrapper .mbr-section-btn {
    margin-top: 72px;
  }
}
@media (max-width: 768px) {
  .cid-uSLQIzfxIm .card-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uSLQIzfxIm .mbr-section-title {
  color: #000000;
}
.cid-uSLQIzfxIm .mbr-date {
  color: #000000;
}
.cid-uSLQIzfxIm .mbr-card-title {
  color: #000000;
}
.cid-uSLQIzfxIm .mbr-loc {
  color: #a8a8a8;
}
.cid-uSLL8WiLxM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-uSLL8WiLxM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLL8WiLxM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLL8WiLxM .card {
  justify-content: flex-end;
}
.cid-uSLL8WiLxM .label-wrapper .mbr-label {
  margin-bottom: 22px;
}
.cid-uSLL8WiLxM .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uSLL8WiLxM .desc-wrapper .mbr-desc {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .desc-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uSLL8WiLxM .tabs-wrapper {
  border-bottom: none;
  margin-bottom: 32px;
}
.cid-uSLL8WiLxM .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uSLL8WiLxM .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0 42px 16px 0;
}
@media (max-width: 1440px) {
  .cid-uSLL8WiLxM .tabs-wrapper .nav.nav-tabs .nav-item {
    margin: 0 32px 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .tabs-wrapper .nav.nav-tabs .nav-item {
    margin: 0 22px 16px 0;
  }
}
.cid-uSLL8WiLxM .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #c10b02;
  transition: all 0.3s ease-in-out;
  opacity: .5;
  border: none !important;
  padding: 0;
  animation: none;
}
.cid-uSLL8WiLxM .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 1;
  background-color: transparent;
}
.cid-uSLL8WiLxM .tabs-wrapper .nav.nav-tabs .nav-item .nav-link:hover {
  opacity: 1;
  background-color: transparent;
}
.cid-uSLL8WiLxM .tab-content {
  padding: 54px;
  border: 3px dashed #c10b02;
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .tab-content {
    padding: 22px;
  }
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .tab-content .tab-pane .item-content {
    display: block;
  }
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper {
  width: 28%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper {
    padding-right: 0;
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper .desc-wrapper {
  margin-bottom: 32px;
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper .desc-wrapper .desc-wrap {
  display: flex;
  margin-bottom: 16px;
  padding-bottom: 22px;
  border-bottom: 3px dashed #c10b02;
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper .desc-wrapper .desc-wrap:last-child {
  margin-bottom: 0;
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper .desc-wrapper .desc-wrap .iconfont-wrapper {
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper .desc-wrapper .desc-wrap .iconfont-wrapper {
    padding-right: 16px;
  }
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper .desc-wrapper .desc-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-block;
  font-size: 26px;
  color: #c10b02;
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper .desc-wrapper .desc-wrap .item-desc {
  width: 100%;
  margin-bottom: 0;
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper .title-wrap .item-title {
  margin-bottom: 122px;
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper .title-wrap .item-title {
    margin-bottom: 22px;
  }
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .title-wrapper .title-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .text-wrapper {
  width: 28%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .tab-content .tab-pane .item-content .text-wrapper {
    padding-right: 0;
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .text-wrapper .image-wrap {
  margin-bottom: 32px;
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .text-wrapper .image-wrap img {
  height: 280px;
  width: 250px;
  object-fit: cover;
}
@media (max-width: 425px) {
  .cid-uSLL8WiLxM .tab-content .tab-pane .item-content .text-wrapper .image-wrap img {
    width: 100%;
  }
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .image-wrapper {
  width: 34%;
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .tab-content .tab-pane .item-content .image-wrapper {
    width: 100%;
  }
}
.cid-uSLL8WiLxM .tab-content .tab-pane .item-content .image-wrapper img {
  height: 770px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLL8WiLxM .tab-content .tab-pane .item-content .image-wrapper img {
    height: 350px;
  }
}
.cid-uSLL8WiLxM .mbr-label {
  color: #c10b02;
}
.cid-uSLL8WiLxM .mbr-section-title {
  color: #c10b02;
}
.cid-uSLL8WiLxM .mbr-desc {
  color: #4b4949;
  text-align: right;
}
.cid-uSLL8WiLxM .item-desc {
  color: #4b4949;
}
.cid-uSLL8WiLxM .item-title {
  color: #c10b02;
}
.cid-uSLL8WiLxM .item-text {
  color: #4b4949;
}
.cid-uSL0uaB8sK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSL0uaB8sK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSL0uaB8sK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSL0uaB8sK .section-border-item {
  background-color: #fcdb42;
}
.cid-uSL0uaB8sK .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSL0uaB8sK .card-wrap {
  width: 100%;
}
.cid-uSL0uaB8sK .card-box {
  width: 100%;
}
.cid-uSL0uaB8sK .card-title {
  color: #FFF;
}
.cid-uSL0uaB8sK .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSL0uaB8sK .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLXCIZt72 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSLXCIZt72 .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 0.9rem;
}
.cid-uSLXCIZt72 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uSLXCIZt72 .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-uSLXCIZt72 .mbr-text {
  color: #444;
}
.cid-uSLXCIZt72 h5 {
  margin-bottom: 0;
}
.cid-uSLXCIZt72 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSLXCIZt72 .socicon {
  color: #9e9e9e;
  font-size: 0.2rem;
}
.cid-uSLXCIZt72 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uSLXCIZt72 .social-list .soc-item {
  margin: 0 0.5rem;
  display: inline-block;
}
.cid-uSLXCIZt72 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uSLXCIZt72 .social-list a:hover {
  opacity: 0.4;
}
.cid-uSLXCIZt72 .media-container-row > div {
  padding: 0px;
}
.cid-uSLXCIZt72 .text2 {
  color: #000000;
  text-align: left;
}
.cid-uSLXCIZt72 .group-title {
  text-align: left;
}
.cid-uSLXCIZt72 .group-title SPAN {
  color: #656565;
}
.cid-uSLXCIZt72 .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-uSLXCIZt72 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uSLXCIZt72 h3 {
    margin-bottom: 10px;
  }
}
.cid-uSLXCIZt72 .links SPAN {
  color: #9e9e9e;
}
.cid-uSLXCIZt72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLXCIZt72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLXCIZt72 .links,
.cid-uSLXCIZt72 .navbar-brand {
  color: #000000;
}
.cid-uSLibOQ2Os .navbar-dropdown {
  background-color: #fcfbf5 !important;
  padding: 0;
}
.cid-uSLibOQ2Os .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fcfbf5 !important;
  background: #fcfbf5;
}
.cid-uSLibOQ2Os .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uSLibOQ2Os .menu_box .navbar.opened,
  .cid-uSLibOQ2Os .menu_box .navbar-collapse {
    background-color: #fcfbf5 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uSLibOQ2Os .navbar-dropdown {
  position: relative !important;
}
.cid-uSLibOQ2Os .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uSLibOQ2Os .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uSLibOQ2Os .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uSLibOQ2Os .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uSLibOQ2Os .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uSLibOQ2Os .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #fcfbf5;
  }
  .cid-uSLibOQ2Os .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uSLibOQ2Os .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uSLibOQ2Os .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uSLibOQ2Os .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uSLibOQ2Os .offcanvas-body .mbr-text,
  .cid-uSLibOQ2Os .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uSLibOQ2Os .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uSLibOQ2Os .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uSLibOQ2Os .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1d;
  }
  .cid-uSLibOQ2Os .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uSLibOQ2Os .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uSLibOQ2Os .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uSLibOQ2Os .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uSLibOQ2Os ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uSLibOQ2Os .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSLibOQ2Os .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uSLibOQ2Os .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uSLibOQ2Os li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uSLibOQ2Os .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uSLibOQ2Os .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uSLibOQ2Os .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uSLibOQ2Os .nav-item {
    margin: 0 !important;
  }
}
.cid-uSLibOQ2Os .nav-item .nav-link {
  position: relative;
}
.cid-uSLibOQ2Os .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fa0303;
  transition: all 0.3s ease-out;
}
.cid-uSLibOQ2Os .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uSLibOQ2Os .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uSLibOQ2Os .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uSLibOQ2Os .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uSLibOQ2Os .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSLibOQ2Os .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uSLibOQ2Os .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uSLibOQ2Os .offcanvas_box {
    display: none;
  }
}
.cid-uSLibOQ2Os .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uSLibOQ2Os .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uSLibOQ2Os .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uSLibOQ2Os .container {
  display: flex;
  margin: auto;
}
.cid-uSLibOQ2Os .iconfont-wrapper {
  color: #1d1d1d;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uSLibOQ2Os .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uSLibOQ2Os .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uSLibOQ2Os .navbar-caption {
  color: #1d1d1d;
}
.cid-uSLibOQ2Os .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uSLibOQ2Os .navbar-nav {
    margin: 0;
  }
}
.cid-uSLibOQ2Os .dropdown-menu,
.cid-uSLibOQ2Os .navbar.opened {
  background-color: false !important;
}
.cid-uSLibOQ2Os .nav-item:focus,
.cid-uSLibOQ2Os .nav-link:focus {
  outline: none;
}
.cid-uSLibOQ2Os .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSLibOQ2Os .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSLibOQ2Os .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSLibOQ2Os .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSLibOQ2Os .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSLibOQ2Os .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSLibOQ2Os .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uSLibOQ2Os .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uSLibOQ2Os .navbar.opened {
  transition: all 0.3s;
}
.cid-uSLibOQ2Os .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uSLibOQ2Os .navbar .navbar-logo img {
  object-fit: contain;
}
.cid-uSLibOQ2Os .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uSLibOQ2Os .navbar.collapsed {
  justify-content: center;
}
.cid-uSLibOQ2Os .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSLibOQ2Os .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSLibOQ2Os .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSLibOQ2Os .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSLibOQ2Os .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSLibOQ2Os .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uSLibOQ2Os .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSLibOQ2Os .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uSLibOQ2Os .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uSLibOQ2Os .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSLibOQ2Os .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSLibOQ2Os .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uSLibOQ2Os .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSLibOQ2Os .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uSLibOQ2Os .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSLibOQ2Os .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uSLibOQ2Os .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uSLibOQ2Os .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uSLibOQ2Os .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSLibOQ2Os .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSLibOQ2Os .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uSLibOQ2Os .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSLibOQ2Os .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSLibOQ2Os .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSLibOQ2Os .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSLibOQ2Os .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uSLibOQ2Os .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSLibOQ2Os .dropdown-item.active,
.cid-uSLibOQ2Os .dropdown-item:active {
  background-color: transparent;
}
.cid-uSLibOQ2Os .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSLibOQ2Os .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSLibOQ2Os .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSLibOQ2Os .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSLibOQ2Os ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uSLibOQ2Os .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSLibOQ2Os button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fcfbf5;
  background: #fcfbf5;
}
.cid-uSLibOQ2Os button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1d;
}
.cid-uSLibOQ2Os button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSLibOQ2Os button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSLibOQ2Os button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSLibOQ2Os button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSLibOQ2Os nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSLibOQ2Os nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSLibOQ2Os nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSLibOQ2Os nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSLibOQ2Os a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uSLibOQ2Os .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSLibOQ2Os .navbar {
    height: 70px;
  }
  .cid-uSLibOQ2Os .navbar.opened {
    height: auto;
  }
  .cid-uSLibOQ2Os .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSLibOQ2Os .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uSLibOQ2Os .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uSLibOQ2Os .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uSLibOQ2Os .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uSLibOQ2Os .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uSLibOQ2Os .navbar-caption:hover {
  color: #fa0303;
}
@media (min-width: 992px) {
  .cid-uSLibOQ2Os .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uSLibOQ2Os .text_widget {
  margin-bottom: 32px;
  color: #1d1d1d;
}
.cid-uSLibOQ2Os .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uSLibOQ2Os .text_widget a:hover {
  color: #fa0303 !important;
}
.cid-uSLibOQ2Os .mbr-section-subtitle {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSLibOQ2Os .mbr-text {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSLibOQ2Os .mbr-section-subtitle,
.cid-uSLibOQ2Os .text_widget,
.cid-uSLibOQ2Os .mbr-section-btn {
  text-align: left;
}
.cid-uSLibOQ2Os a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uSLibPMuds {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLibPMuds .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLibPMuds .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLibPMuds .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLibPMuds .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLibPMuds .card-wrap {
  width: 100%;
}
.cid-uSLibPMuds .card-box {
  width: 100%;
}
.cid-uSLibPMuds .card-title {
  color: #FFF;
}
.cid-uSLibPMuds .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLibPMuds .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLibQArSx {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/f-sa-631529139962-660x369.jpg");
}
.cid-uSLibQArSx .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uSLibQArSx .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uSLibQArSx .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSLibQArSx .label-text {
    text-align: center !important;
  }
}
.cid-uSLibQArSx .mbr-section-title {
  width: 100%;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSLibQArSx .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uSLibQArSx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLibQArSx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLibR82AO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLibR82AO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLibR82AO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLibR82AO .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLibR82AO .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLibR82AO .card-wrap {
  width: 100%;
}
.cid-uSLibR82AO .card-box {
  width: 100%;
}
.cid-uSLibR82AO .card-title {
  color: #FFF;
}
.cid-uSLibR82AO .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLibR82AO .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLibRPhXw {
  background-color: #000000;
}
.cid-uSLibRPhXw .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLibRPhXw .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLibRPhXw .content p {
  margin: 0;
}
.cid-uSLibRPhXw .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLiwksAHC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSLiwksAHC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLiwksAHC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLiwksAHC .container-fluid {
  padding: 0 10px;
}
@media (max-width: 992px) {
  .cid-uSLiwksAHC .container-fluid {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .cid-uSLiwksAHC .container {
    padding: 15px;
  }
}
.cid-uSLiwksAHC .row {
  margin: 0 -5px;
}
.cid-uSLiwksAHC .row .card {
  padding: 0 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-uSLiwksAHC .row .card {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.cid-uSLiwksAHC .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uSLiwksAHC .image-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uSLiwksAHC .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLiwksAHC .image-wrapper img {
    position: static;
    height: 350px;
  }
}
.cid-uSLiwksAHC .card-wrapper {
  padding: 200px 80px 80px;
  background-color: #f6f3ec;
}
@media (max-width: 1440px) {
  .cid-uSLiwksAHC .card-wrapper {
    padding: 200px 40px 80px;
  }
}
@media (max-width: 992px) {
  .cid-uSLiwksAHC .card-wrapper {
    padding: 30px;
  }
}
.cid-uSLiwksAHC .card-wrapper .card-wrap .title-wrapper .mbr-section-title {
  width: 80%;
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-uSLiwksAHC .card-wrapper .card-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uSLiwksAHC .card-wrapper .card-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uSLiwksAHC .card-wrapper .card-wrap .text-wrapper .mbr-text {
  width: 60%;
  display: inline-block;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uSLiwksAHC .card-wrapper .card-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uSLiwksAHC .card-wrapper .card-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-uSLiwksAHC .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uSLiwksAHC .card-wrapper .number-wrapper {
  margin-top: 200px;
}
@media (max-width: 992px) {
  .cid-uSLiwksAHC .card-wrapper .number-wrapper {
    margin-top: 30px;
  }
}
.cid-uSLiwksAHC .card-wrapper .number-wrapper .number-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uSLiwksAHC .card-wrapper .number-wrapper .number-wrap {
    display: block;
  }
}
.cid-uSLiwksAHC .card-wrapper .number-wrapper .number-wrap .mbr-number {
  margin-bottom: 0;
  padding-right: 20px;
}
.cid-uSLiwksAHC .card-wrapper .number-wrapper .number-wrap .mbr-desc {
  border-left: 1px solid #e0e0e0;
  padding: 10px 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSLiwksAHC .card-wrapper .number-wrapper .number-wrap .mbr-desc {
    padding: 0;
    border: none;
  }
}
.cid-uSLiwksAHC .mbr-section-title {
  color: #000000;
}
.cid-uSLiwksAHC .mbr-text,
.cid-uSLiwksAHC .text-wrapper {
  color: #8a8a8a;
}
.cid-uSLiwksAHC .mbr-number {
  color: #000000;
}
.cid-uSLiwksAHC .mbr-desc {
  color: #000000;
}
.cid-uSLibT5xlI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLibT5xlI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLibT5xlI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLibT5xlI .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLibT5xlI .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLibT5xlI .card-wrap {
  width: 100%;
}
.cid-uSLibT5xlI .card-box {
  width: 100%;
}
.cid-uSLibT5xlI .card-title {
  color: #FFF;
}
.cid-uSLibT5xlI .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLibT5xlI .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLibTKxEl {
  background-color: #000000;
}
.cid-uSLibTKxEl .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLibTKxEl .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLibTKxEl .content p {
  margin: 0;
}
.cid-uSLibTKxEl .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLjdg3Mx1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSLjdg3Mx1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLjdg3Mx1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLjdg3Mx1 .container-fluid {
  padding: 0 10px;
}
@media (max-width: 992px) {
  .cid-uSLjdg3Mx1 .container-fluid {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .cid-uSLjdg3Mx1 .container {
    padding: 15px;
  }
}
.cid-uSLjdg3Mx1 .row {
  margin: 0 -5px;
}
.cid-uSLjdg3Mx1 .row .card {
  padding: 0 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-uSLjdg3Mx1 .row .card {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.cid-uSLjdg3Mx1 .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uSLjdg3Mx1 .image-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uSLjdg3Mx1 .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLjdg3Mx1 .image-wrapper img {
    position: static;
    height: 350px;
  }
}
.cid-uSLjdg3Mx1 .card-wrapper {
  padding: 200px 80px 80px;
  background-color: #f6f3ec;
}
@media (max-width: 1440px) {
  .cid-uSLjdg3Mx1 .card-wrapper {
    padding: 200px 40px 80px;
  }
}
@media (max-width: 992px) {
  .cid-uSLjdg3Mx1 .card-wrapper {
    padding: 30px;
  }
}
.cid-uSLjdg3Mx1 .card-wrapper .card-wrap .title-wrapper .mbr-section-title {
  width: 80%;
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-uSLjdg3Mx1 .card-wrapper .card-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uSLjdg3Mx1 .card-wrapper .card-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uSLjdg3Mx1 .card-wrapper .card-wrap .text-wrapper .mbr-text {
  width: 60%;
  display: inline-block;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uSLjdg3Mx1 .card-wrapper .card-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uSLjdg3Mx1 .card-wrapper .card-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-uSLjdg3Mx1 .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uSLjdg3Mx1 .card-wrapper .number-wrapper {
  margin-top: 200px;
}
@media (max-width: 992px) {
  .cid-uSLjdg3Mx1 .card-wrapper .number-wrapper {
    margin-top: 30px;
  }
}
.cid-uSLjdg3Mx1 .card-wrapper .number-wrapper .number-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uSLjdg3Mx1 .card-wrapper .number-wrapper .number-wrap {
    display: block;
  }
}
.cid-uSLjdg3Mx1 .card-wrapper .number-wrapper .number-wrap .mbr-number {
  margin-bottom: 0;
  padding-right: 20px;
}
.cid-uSLjdg3Mx1 .card-wrapper .number-wrapper .number-wrap .mbr-desc {
  border-left: 1px solid #e0e0e0;
  padding: 10px 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSLjdg3Mx1 .card-wrapper .number-wrapper .number-wrap .mbr-desc {
    padding: 0;
    border: none;
  }
}
.cid-uSLjdg3Mx1 .mbr-section-title {
  color: #000000;
}
.cid-uSLjdg3Mx1 .mbr-text,
.cid-uSLjdg3Mx1 .text-wrapper {
  color: #8a8a8a;
}
.cid-uSLjdg3Mx1 .mbr-number {
  color: #000000;
}
.cid-uSLjdg3Mx1 .mbr-desc {
  color: #000000;
}
.cid-uSLibVPmNh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLibVPmNh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLibVPmNh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLibVPmNh .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLibVPmNh .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLibVPmNh .card-wrap {
  width: 100%;
}
.cid-uSLibVPmNh .card-box {
  width: 100%;
}
.cid-uSLibVPmNh .card-title {
  color: #FFF;
}
.cid-uSLibVPmNh .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLibVPmNh .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLibWzKjR {
  background-color: #000000;
}
.cid-uSLibWzKjR .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLibWzKjR .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLibWzKjR .content p {
  margin: 0;
}
.cid-uSLibWzKjR .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLjYfZLgG {
  display: flex;
  padding-top: 150px;
  padding-bottom: 300px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uSLjYfZLgG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLjYfZLgG img {
  width: 200px;
  height: 200px;
  filter: grayscale(1);
  object-fit: cover;
  border-radius: 4rem !important;
}
@media (max-width: 767px) {
  .cid-uSLjYfZLgG img {
    display: none;
  }
}
@media (min-width: 992px) {
  .cid-uSLjYfZLgG img {
    z-index: 10;
  }
}
.cid-uSLjYfZLgG .face1 {
  position: absolute;
  left: 7%;
  top: 10%;
  animation: circle1 6s linear infinite;
}
.cid-uSLjYfZLgG .face2 {
  position: absolute;
  right: 7%;
  top: 13%;
  animation: circle1 6s linear infinite;
}
.cid-uSLjYfZLgG .face3 {
  position: absolute;
  left: 12%;
  bottom: 30%;
  animation: circle2 6s linear infinite;
}
.cid-uSLjYfZLgG .face4 {
  position: absolute;
  right: 15%;
  bottom: 28%;
  animation: circle2 6s linear infinite;
}
@keyframes circle1 {
  0% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
}
@keyframes circle2 {
  0% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
  100% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
}
.cid-uSLjYfZLgG .mbr-tag {
  border: 1px solid currentColor;
  border-radius: 20px;
  padding: 5px 30px;
  text-align: center;
  display: inline-block;
  margin-bottom: 6px;
}
.cid-uSLjYfZLgG .round {
  position: absolute;
  bottom: -1430px;
  left: -20%;
  width: 140%;
  height: 1700px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background: #232323;
}
@media (max-width: 992px) {
  .cid-uSLjYfZLgG .round {
    bottom: -1300px;
    height: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uSLjYfZLgG .round {
    height: 600px;
    bottom: -500px;
  }
}
.cid-uSLjYfZLgG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLjYfZLgG .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uSLjYfZLgG .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uSLjYfZLgG {
    align-items: flex-start;
  }
  .cid-uSLjYfZLgG .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uSLjYfZLgG .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uSLjYfZLgG {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uSLjYfZLgG .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uSLjYfZLgG .content-wrap {
    width: 100%;
  }
}
.cid-uSLjYfZLgG .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-uSLjYfZLgG .mbr-text,
.cid-uSLjYfZLgG .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uSLjYfZLgG .mbr-tag,
.cid-uSLjYfZLgG .tags {
  text-align: center;
  color: #232323;
}
.cid-uSLjYfZLgG .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-uSLic3acZu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLic3acZu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLic3acZu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLic3acZu .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLic3acZu .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLic3acZu .card-wrap {
  width: 100%;
}
.cid-uSLic3acZu .card-box {
  width: 100%;
}
.cid-uSLic3acZu .card-title {
  color: #FFF;
}
.cid-uSLic3acZu .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLic3acZu .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLic8qCoM {
  background-image: url("../../../assets/images/rusya-turkiye-ticaret-640x359.jpg");
}
.cid-uSLic8qCoM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLic8qCoM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLic8qCoM .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uSLic8qCoM .container-fluid {
    padding: 0 20px;
  }
}
.cid-uSLic8qCoM .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSLic8qCoM .container {
    padding: 0 20px;
  }
}
.cid-uSLic8qCoM .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uSLic8qCoM .title-wrapper .mbr-desc {
  margin: 0;
}
.cid-uSLic8qCoM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uSLic8qCoM .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uSLXCIZt72 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSLXCIZt72 .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 0.9rem;
}
.cid-uSLXCIZt72 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uSLXCIZt72 .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-uSLXCIZt72 .mbr-text {
  color: #444;
}
.cid-uSLXCIZt72 h5 {
  margin-bottom: 0;
}
.cid-uSLXCIZt72 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSLXCIZt72 .socicon {
  color: #9e9e9e;
  font-size: 0.2rem;
}
.cid-uSLXCIZt72 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uSLXCIZt72 .social-list .soc-item {
  margin: 0 0.5rem;
  display: inline-block;
}
.cid-uSLXCIZt72 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uSLXCIZt72 .social-list a:hover {
  opacity: 0.4;
}
.cid-uSLXCIZt72 .media-container-row > div {
  padding: 0px;
}
.cid-uSLXCIZt72 .text2 {
  color: #000000;
  text-align: left;
}
.cid-uSLXCIZt72 .group-title {
  text-align: left;
}
.cid-uSLXCIZt72 .group-title SPAN {
  color: #656565;
}
.cid-uSLXCIZt72 .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-uSLXCIZt72 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uSLXCIZt72 h3 {
    margin-bottom: 10px;
  }
}
.cid-uSLXCIZt72 .links SPAN {
  color: #9e9e9e;
}
.cid-uSLXCIZt72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLXCIZt72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLXCIZt72 .links,
.cid-uSLXCIZt72 .navbar-brand {
  color: #000000;
}
.cid-uSLpOx1Y2T .navbar-dropdown {
  background-color: #fcfbf5 !important;
  padding: 0;
}
.cid-uSLpOx1Y2T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fcfbf5 !important;
  background: #fcfbf5;
}
.cid-uSLpOx1Y2T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uSLpOx1Y2T .menu_box .navbar.opened,
  .cid-uSLpOx1Y2T .menu_box .navbar-collapse {
    background-color: #fcfbf5 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uSLpOx1Y2T .navbar-dropdown {
  position: relative !important;
}
.cid-uSLpOx1Y2T .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uSLpOx1Y2T .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uSLpOx1Y2T .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uSLpOx1Y2T .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uSLpOx1Y2T .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uSLpOx1Y2T .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #fcfbf5;
  }
  .cid-uSLpOx1Y2T .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uSLpOx1Y2T .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uSLpOx1Y2T .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uSLpOx1Y2T .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uSLpOx1Y2T .offcanvas-body .mbr-text,
  .cid-uSLpOx1Y2T .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uSLpOx1Y2T .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uSLpOx1Y2T .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uSLpOx1Y2T .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1d;
  }
  .cid-uSLpOx1Y2T .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uSLpOx1Y2T .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uSLpOx1Y2T .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uSLpOx1Y2T .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uSLpOx1Y2T ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uSLpOx1Y2T .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSLpOx1Y2T .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uSLpOx1Y2T .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uSLpOx1Y2T li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uSLpOx1Y2T .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uSLpOx1Y2T .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uSLpOx1Y2T .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uSLpOx1Y2T .nav-item {
    margin: 0 !important;
  }
}
.cid-uSLpOx1Y2T .nav-item .nav-link {
  position: relative;
}
.cid-uSLpOx1Y2T .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fa0303;
  transition: all 0.3s ease-out;
}
.cid-uSLpOx1Y2T .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uSLpOx1Y2T .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uSLpOx1Y2T .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uSLpOx1Y2T .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uSLpOx1Y2T .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSLpOx1Y2T .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uSLpOx1Y2T .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uSLpOx1Y2T .offcanvas_box {
    display: none;
  }
}
.cid-uSLpOx1Y2T .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uSLpOx1Y2T .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uSLpOx1Y2T .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uSLpOx1Y2T .container {
  display: flex;
  margin: auto;
}
.cid-uSLpOx1Y2T .iconfont-wrapper {
  color: #1d1d1d;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uSLpOx1Y2T .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uSLpOx1Y2T .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uSLpOx1Y2T .navbar-caption {
  color: #1d1d1d;
}
.cid-uSLpOx1Y2T .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uSLpOx1Y2T .navbar-nav {
    margin: 0;
  }
}
.cid-uSLpOx1Y2T .dropdown-menu,
.cid-uSLpOx1Y2T .navbar.opened {
  background-color: false !important;
}
.cid-uSLpOx1Y2T .nav-item:focus,
.cid-uSLpOx1Y2T .nav-link:focus {
  outline: none;
}
.cid-uSLpOx1Y2T .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSLpOx1Y2T .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSLpOx1Y2T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSLpOx1Y2T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSLpOx1Y2T .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSLpOx1Y2T .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSLpOx1Y2T .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uSLpOx1Y2T .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uSLpOx1Y2T .navbar.opened {
  transition: all 0.3s;
}
.cid-uSLpOx1Y2T .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uSLpOx1Y2T .navbar .navbar-logo img {
  object-fit: contain;
}
.cid-uSLpOx1Y2T .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uSLpOx1Y2T .navbar.collapsed {
  justify-content: center;
}
.cid-uSLpOx1Y2T .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSLpOx1Y2T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSLpOx1Y2T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSLpOx1Y2T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSLpOx1Y2T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSLpOx1Y2T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uSLpOx1Y2T .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSLpOx1Y2T .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uSLpOx1Y2T .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uSLpOx1Y2T .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSLpOx1Y2T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSLpOx1Y2T .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uSLpOx1Y2T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSLpOx1Y2T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uSLpOx1Y2T .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSLpOx1Y2T .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uSLpOx1Y2T .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uSLpOx1Y2T .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uSLpOx1Y2T .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSLpOx1Y2T .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSLpOx1Y2T .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uSLpOx1Y2T .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSLpOx1Y2T .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSLpOx1Y2T .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSLpOx1Y2T .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSLpOx1Y2T .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uSLpOx1Y2T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSLpOx1Y2T .dropdown-item.active,
.cid-uSLpOx1Y2T .dropdown-item:active {
  background-color: transparent;
}
.cid-uSLpOx1Y2T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSLpOx1Y2T .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSLpOx1Y2T .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSLpOx1Y2T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSLpOx1Y2T ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uSLpOx1Y2T .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSLpOx1Y2T button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fcfbf5;
  background: #fcfbf5;
}
.cid-uSLpOx1Y2T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1d;
}
.cid-uSLpOx1Y2T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSLpOx1Y2T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSLpOx1Y2T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSLpOx1Y2T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSLpOx1Y2T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSLpOx1Y2T nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSLpOx1Y2T nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSLpOx1Y2T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSLpOx1Y2T a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uSLpOx1Y2T .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSLpOx1Y2T .navbar {
    height: 70px;
  }
  .cid-uSLpOx1Y2T .navbar.opened {
    height: auto;
  }
  .cid-uSLpOx1Y2T .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSLpOx1Y2T .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uSLpOx1Y2T .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uSLpOx1Y2T .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uSLpOx1Y2T .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uSLpOx1Y2T .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uSLpOx1Y2T .navbar-caption:hover {
  color: #fa0303;
}
@media (min-width: 992px) {
  .cid-uSLpOx1Y2T .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uSLpOx1Y2T .text_widget {
  margin-bottom: 32px;
  color: #1d1d1d;
}
.cid-uSLpOx1Y2T .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uSLpOx1Y2T .text_widget a:hover {
  color: #fa0303 !important;
}
.cid-uSLpOx1Y2T .mbr-section-subtitle {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSLpOx1Y2T .mbr-text {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSLpOx1Y2T .mbr-section-subtitle,
.cid-uSLpOx1Y2T .text_widget,
.cid-uSLpOx1Y2T .mbr-section-btn {
  text-align: left;
}
.cid-uSLpOx1Y2T a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uSLpOznZni {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLpOznZni .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLpOznZni .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLpOznZni .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLpOznZni .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLpOznZni .card-wrap {
  width: 100%;
}
.cid-uSLpOznZni .card-box {
  width: 100%;
}
.cid-uSLpOznZni .card-title {
  color: #FFF;
}
.cid-uSLpOznZni .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLpOznZni .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLpOA1vZ3 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/f-sa-631529139962-660x369.jpg");
}
.cid-uSLpOA1vZ3 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uSLpOA1vZ3 .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uSLpOA1vZ3 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSLpOA1vZ3 .label-text {
    text-align: center !important;
  }
}
.cid-uSLpOA1vZ3 .mbr-section-title {
  width: 100%;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSLpOA1vZ3 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uSLpOA1vZ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLpOA1vZ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLpOAzPmG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLpOAzPmG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLpOAzPmG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLpOAzPmG .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLpOAzPmG .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLpOAzPmG .card-wrap {
  width: 100%;
}
.cid-uSLpOAzPmG .card-box {
  width: 100%;
}
.cid-uSLpOAzPmG .card-title {
  color: #FFF;
}
.cid-uSLpOAzPmG .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLpOAzPmG .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLpOB5zaH {
  background-color: #000000;
}
.cid-uSLpOB5zaH .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLpOB5zaH .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLpOB5zaH .content p {
  margin: 0;
}
.cid-uSLpOB5zaH .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLqKteze8 {
  display: flex;
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/c4b0c59f20ortaklarc4b1mc4b1z-2000x2000.png");
}
.cid-uSLqKteze8 .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
.cid-uSLqKteze8 .row {
  justify-content: flex-start;
  align-items: flex-end;
  min-height: calc((50vh + 50vw) / 2);
}
.cid-uSLqKteze8 .content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSLqKteze8 .content-wrap {
    flex-wrap: wrap;
    width: 100%;
  }
}
.cid-uSLqKteze8 .mbr-section-title {
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-uSLqKteze8 .text-wrap {
  width: max-content;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uSLqKteze8 .text-wrap {
    width: 100%;
    padding-top: 36px;
  }
}
.cid-uSLqKteze8 .mbr-text {
  margin-top: 5px;
}
.cid-uSLqNOcV3N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/turkiye-rusya-c4b0s-c4b0nsanlari-yuksek-c4b0stisare-kurulu2038-1360x412.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 390px;
}
.cid-uSLqNOcV3N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLqNOcV3N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSLqNOcV3N .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uSLqNOcV3N .content-container {
  padding: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uSLqNOcV3N .content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
.cid-uSLqNOcV3N .mbr-section-title {
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-uSLqNOcV3N .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
  margin-bottom: 0;
  width: 100%;
}
.cid-uSLqNOcV3N .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0.9rem;
  margin-top: 20px;
  width: 100%;
}
.cid-uSLqNOcV3N .mbr-section-btn {
  margin-top: 10px;
}
.cid-uSLpOFI0eS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLpOFI0eS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLpOFI0eS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLpOFI0eS .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLpOFI0eS .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLpOFI0eS .card-wrap {
  width: 100%;
}
.cid-uSLpOFI0eS .card-box {
  width: 100%;
}
.cid-uSLpOFI0eS .card-title {
  color: #FFF;
}
.cid-uSLpOFI0eS .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLpOFI0eS .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLXCIZt72 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSLXCIZt72 .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 0.9rem;
}
.cid-uSLXCIZt72 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uSLXCIZt72 .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-uSLXCIZt72 .mbr-text {
  color: #444;
}
.cid-uSLXCIZt72 h5 {
  margin-bottom: 0;
}
.cid-uSLXCIZt72 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSLXCIZt72 .socicon {
  color: #9e9e9e;
  font-size: 0.2rem;
}
.cid-uSLXCIZt72 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uSLXCIZt72 .social-list .soc-item {
  margin: 0 0.5rem;
  display: inline-block;
}
.cid-uSLXCIZt72 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uSLXCIZt72 .social-list a:hover {
  opacity: 0.4;
}
.cid-uSLXCIZt72 .media-container-row > div {
  padding: 0px;
}
.cid-uSLXCIZt72 .text2 {
  color: #000000;
  text-align: left;
}
.cid-uSLXCIZt72 .group-title {
  text-align: left;
}
.cid-uSLXCIZt72 .group-title SPAN {
  color: #656565;
}
.cid-uSLXCIZt72 .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-uSLXCIZt72 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uSLXCIZt72 h3 {
    margin-bottom: 10px;
  }
}
.cid-uSLXCIZt72 .links SPAN {
  color: #9e9e9e;
}
.cid-uSLXCIZt72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLXCIZt72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLXCIZt72 .links,
.cid-uSLXCIZt72 .navbar-brand {
  color: #000000;
}
.cid-uSLscr1UaA .navbar-dropdown {
  background-color: #fcfbf5 !important;
  padding: 0;
}
.cid-uSLscr1UaA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fcfbf5 !important;
  background: #fcfbf5;
}
.cid-uSLscr1UaA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uSLscr1UaA .menu_box .navbar.opened,
  .cid-uSLscr1UaA .menu_box .navbar-collapse {
    background-color: #fcfbf5 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uSLscr1UaA .navbar-dropdown {
  position: relative !important;
}
.cid-uSLscr1UaA .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uSLscr1UaA .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uSLscr1UaA .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uSLscr1UaA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uSLscr1UaA .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uSLscr1UaA .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #fcfbf5;
  }
  .cid-uSLscr1UaA .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uSLscr1UaA .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uSLscr1UaA .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uSLscr1UaA .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uSLscr1UaA .offcanvas-body .mbr-text,
  .cid-uSLscr1UaA .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uSLscr1UaA .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uSLscr1UaA .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uSLscr1UaA .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1d;
  }
  .cid-uSLscr1UaA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uSLscr1UaA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uSLscr1UaA .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uSLscr1UaA .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uSLscr1UaA ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uSLscr1UaA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSLscr1UaA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uSLscr1UaA .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uSLscr1UaA li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uSLscr1UaA .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uSLscr1UaA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uSLscr1UaA .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uSLscr1UaA .nav-item {
    margin: 0 !important;
  }
}
.cid-uSLscr1UaA .nav-item .nav-link {
  position: relative;
}
.cid-uSLscr1UaA .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fa0303;
  transition: all 0.3s ease-out;
}
.cid-uSLscr1UaA .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uSLscr1UaA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uSLscr1UaA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uSLscr1UaA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uSLscr1UaA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSLscr1UaA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uSLscr1UaA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uSLscr1UaA .offcanvas_box {
    display: none;
  }
}
.cid-uSLscr1UaA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uSLscr1UaA .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uSLscr1UaA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uSLscr1UaA .container {
  display: flex;
  margin: auto;
}
.cid-uSLscr1UaA .iconfont-wrapper {
  color: #1d1d1d;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uSLscr1UaA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uSLscr1UaA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uSLscr1UaA .navbar-caption {
  color: #1d1d1d;
}
.cid-uSLscr1UaA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uSLscr1UaA .navbar-nav {
    margin: 0;
  }
}
.cid-uSLscr1UaA .dropdown-menu,
.cid-uSLscr1UaA .navbar.opened {
  background-color: false !important;
}
.cid-uSLscr1UaA .nav-item:focus,
.cid-uSLscr1UaA .nav-link:focus {
  outline: none;
}
.cid-uSLscr1UaA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSLscr1UaA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSLscr1UaA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSLscr1UaA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSLscr1UaA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSLscr1UaA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSLscr1UaA .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uSLscr1UaA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uSLscr1UaA .navbar.opened {
  transition: all 0.3s;
}
.cid-uSLscr1UaA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uSLscr1UaA .navbar .navbar-logo img {
  object-fit: contain;
}
.cid-uSLscr1UaA .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uSLscr1UaA .navbar.collapsed {
  justify-content: center;
}
.cid-uSLscr1UaA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSLscr1UaA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSLscr1UaA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSLscr1UaA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSLscr1UaA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSLscr1UaA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uSLscr1UaA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSLscr1UaA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uSLscr1UaA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uSLscr1UaA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSLscr1UaA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSLscr1UaA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uSLscr1UaA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSLscr1UaA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uSLscr1UaA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSLscr1UaA .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uSLscr1UaA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uSLscr1UaA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uSLscr1UaA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSLscr1UaA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSLscr1UaA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uSLscr1UaA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSLscr1UaA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSLscr1UaA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSLscr1UaA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSLscr1UaA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uSLscr1UaA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSLscr1UaA .dropdown-item.active,
.cid-uSLscr1UaA .dropdown-item:active {
  background-color: transparent;
}
.cid-uSLscr1UaA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSLscr1UaA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSLscr1UaA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSLscr1UaA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSLscr1UaA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uSLscr1UaA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSLscr1UaA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fcfbf5;
  background: #fcfbf5;
}
.cid-uSLscr1UaA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1d;
}
.cid-uSLscr1UaA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSLscr1UaA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSLscr1UaA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSLscr1UaA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSLscr1UaA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSLscr1UaA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSLscr1UaA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSLscr1UaA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSLscr1UaA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uSLscr1UaA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSLscr1UaA .navbar {
    height: 70px;
  }
  .cid-uSLscr1UaA .navbar.opened {
    height: auto;
  }
  .cid-uSLscr1UaA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSLscr1UaA .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uSLscr1UaA .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uSLscr1UaA .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uSLscr1UaA .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uSLscr1UaA .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uSLscr1UaA .navbar-caption:hover {
  color: #fa0303;
}
@media (min-width: 992px) {
  .cid-uSLscr1UaA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uSLscr1UaA .text_widget {
  margin-bottom: 32px;
  color: #1d1d1d;
}
.cid-uSLscr1UaA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uSLscr1UaA .text_widget a:hover {
  color: #fa0303 !important;
}
.cid-uSLscr1UaA .mbr-section-subtitle {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSLscr1UaA .mbr-text {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSLscr1UaA .mbr-section-subtitle,
.cid-uSLscr1UaA .text_widget,
.cid-uSLscr1UaA .mbr-section-btn {
  text-align: left;
}
.cid-uSLscr1UaA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uSLscsHOdh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLscsHOdh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLscsHOdh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLscsHOdh .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLscsHOdh .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLscsHOdh .card-wrap {
  width: 100%;
}
.cid-uSLscsHOdh .card-box {
  width: 100%;
}
.cid-uSLscsHOdh .card-title {
  color: #FFF;
}
.cid-uSLscsHOdh .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLscsHOdh .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLsctgNjh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/f-sa-631529139962-660x369.jpg");
}
.cid-uSLsctgNjh .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uSLsctgNjh .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uSLsctgNjh .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSLsctgNjh .label-text {
    text-align: center !important;
  }
}
.cid-uSLsctgNjh .mbr-section-title {
  width: 100%;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSLsctgNjh .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uSLsctgNjh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLsctgNjh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLsctSSzC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLsctSSzC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLsctSSzC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLsctSSzC .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLsctSSzC .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLsctSSzC .card-wrap {
  width: 100%;
}
.cid-uSLsctSSzC .card-box {
  width: 100%;
}
.cid-uSLsctSSzC .card-title {
  color: #FFF;
}
.cid-uSLsctSSzC .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLsctSSzC .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLscuKmUd {
  background-color: #000000;
}
.cid-uSLscuKmUd .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLscuKmUd .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLscuKmUd .content p {
  margin: 0;
}
.cid-uSLscuKmUd .mbr-text {
  color: #ffffff;
  text-align: justify;
}
#custom-html-58 {
  /* Type valid CSS here */
}
#custom-html-58 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-58 p {
  font-size: 60px;
  color: #777;
}
.cid-uSLwmg9yPZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
}
.cid-uSLwmg9yPZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLwmg9yPZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLwmg9yPZ .text-container {
  background-color: #101511;
  border-radius: 100px;
  padding: 16px;
  min-height: 67px;
  margin: 0 20%;
}
@media (max-width: 768px) {
  .cid-uSLwmg9yPZ .text-container {
    margin: 0 5%;
  }
}
.cid-uSLwmg9yPZ .text-container .text-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}
.cid-uSLwmg9yPZ .text-container .text-wrapper .mbr-text {
  margin: 0 16px 0 0;
}
.cid-uSLwmg9yPZ .text-container .text-wrapper .mbr-desc {
  margin: 0;
}
.cid-uSLwmg9yPZ .text-container .text-wrapper .mbr-desc .mbr-iconfont {
  font-size: 20px;
}
.cid-uSLwmg9yPZ .mbr-text {
  color: #e8e8e8;
}
.cid-uSLwmg9yPZ .mbr-desc,
.cid-uSLwmg9yPZ .mbr-iconfont {
  color: #e8e8e8;
}
.cid-uSLwmg9yPZ .mbr-text,
.cid-uSLwmg9yPZ .text-container {
  text-align: center;
}
.cid-uSLscvLxK0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLscvLxK0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLscvLxK0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLscvLxK0 .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLscvLxK0 .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLscvLxK0 .card-wrap {
  width: 100%;
}
.cid-uSLscvLxK0 .card-box {
  width: 100%;
}
.cid-uSLscvLxK0 .card-title {
  color: #FFF;
}
.cid-uSLscvLxK0 .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLscvLxK0 .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLyIqo9WY {
  background-image: url("../../../assets/images/turkiye-rusya-c4b0s-c4b0nsanlari-yuksek-c4b0stisare-kurulu....-1870x861.png");
}
.cid-uSLyIqo9WY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLyIqo9WY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLyIqo9WY .image-wrapper {
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLyIqo9WY .image-wrapper {
    height: 350px;
  }
}
.cid-uSLzyLXYep {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
}
.cid-uSLzyLXYep .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLzyLXYep .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLzyLXYep .text-container {
  background-color: #101511;
  border-radius: 100px;
  padding: 16px;
  min-height: 67px;
  margin: 0 20%;
}
@media (max-width: 768px) {
  .cid-uSLzyLXYep .text-container {
    margin: 0 5%;
  }
}
.cid-uSLzyLXYep .text-container .text-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}
.cid-uSLzyLXYep .text-container .text-wrapper .mbr-text {
  margin: 0 16px 0 0;
}
.cid-uSLzyLXYep .text-container .text-wrapper .mbr-desc {
  margin: 0;
}
.cid-uSLzyLXYep .text-container .text-wrapper .mbr-desc .mbr-iconfont {
  font-size: 20px;
}
.cid-uSLzyLXYep .mbr-text {
  color: #e8e8e8;
}
.cid-uSLzyLXYep .mbr-desc,
.cid-uSLzyLXYep .mbr-iconfont {
  color: #e8e8e8;
}
.cid-uSLzyLXYep .mbr-text,
.cid-uSLzyLXYep .text-container {
  text-align: center;
}
.cid-uSLA3L9qFE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLA3L9qFE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLA3L9qFE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLA3L9qFE .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLA3L9qFE .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLA3L9qFE .card-wrap {
  width: 100%;
}
.cid-uSLA3L9qFE .card-box {
  width: 100%;
}
.cid-uSLA3L9qFE .card-title {
  color: #FFF;
}
.cid-uSLA3L9qFE .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLA3L9qFE .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLA5Gq7aj {
  background-image: url("../../../assets/images/turkiye-rusya-c4b0s-c4b0nsanlari-yuksek-c4b0stisare-kurulu................-1774x872.png");
}
.cid-uSLA5Gq7aj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLA5Gq7aj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLA5Gq7aj .image-wrapper {
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLA5Gq7aj .image-wrapper {
    height: 350px;
  }
}
.cid-uSLA7HmxC8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
}
.cid-uSLA7HmxC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLA7HmxC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLA7HmxC8 .text-container {
  background-color: #101511;
  border-radius: 100px;
  padding: 16px;
  min-height: 67px;
  margin: 0 20%;
}
@media (max-width: 768px) {
  .cid-uSLA7HmxC8 .text-container {
    margin: 0 5%;
  }
}
.cid-uSLA7HmxC8 .text-container .text-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}
.cid-uSLA7HmxC8 .text-container .text-wrapper .mbr-text {
  margin: 0 16px 0 0;
}
.cid-uSLA7HmxC8 .text-container .text-wrapper .mbr-desc {
  margin: 0;
}
.cid-uSLA7HmxC8 .text-container .text-wrapper .mbr-desc .mbr-iconfont {
  font-size: 20px;
}
.cid-uSLA7HmxC8 .mbr-text {
  color: #e8e8e8;
}
.cid-uSLA7HmxC8 .mbr-desc,
.cid-uSLA7HmxC8 .mbr-iconfont {
  color: #e8e8e8;
}
.cid-uSLA7HmxC8 .mbr-text,
.cid-uSLA7HmxC8 .text-container {
  text-align: center;
}
.cid-uSLBCamOwO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLBCamOwO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLBCamOwO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLBCamOwO .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLBCamOwO .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLBCamOwO .card-wrap {
  width: 100%;
}
.cid-uSLBCamOwO .card-box {
  width: 100%;
}
.cid-uSLBCamOwO .card-title {
  color: #FFF;
}
.cid-uSLBCamOwO .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLBCamOwO .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLBEm8iMP {
  background-image: url("../../../assets/images/turkiye-rusya-c4b0s-c4b0nsanlari-yuksek-c4b0stisare-kurulu.......12-1884x826.png");
}
.cid-uSLBEm8iMP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLBEm8iMP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLBEm8iMP .image-wrapper {
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLBEm8iMP .image-wrapper {
    height: 350px;
  }
}
.cid-uSLBGaK1ZS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
}
.cid-uSLBGaK1ZS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLBGaK1ZS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLBGaK1ZS .text-container {
  background-color: #101511;
  border-radius: 100px;
  padding: 16px;
  min-height: 67px;
  margin: 0 20%;
}
@media (max-width: 768px) {
  .cid-uSLBGaK1ZS .text-container {
    margin: 0 5%;
  }
}
.cid-uSLBGaK1ZS .text-container .text-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}
.cid-uSLBGaK1ZS .text-container .text-wrapper .mbr-text {
  margin: 0 16px 0 0;
}
.cid-uSLBGaK1ZS .text-container .text-wrapper .mbr-desc {
  margin: 0;
}
.cid-uSLBGaK1ZS .text-container .text-wrapper .mbr-desc .mbr-iconfont {
  font-size: 20px;
}
.cid-uSLBGaK1ZS .mbr-text {
  color: #e8e8e8;
}
.cid-uSLBGaK1ZS .mbr-desc,
.cid-uSLBGaK1ZS .mbr-iconfont {
  color: #e8e8e8;
}
.cid-uSLBGaK1ZS .mbr-text,
.cid-uSLBGaK1ZS .text-container {
  text-align: center;
}
.cid-uSLscyWTPi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLscyWTPi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLscyWTPi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLscyWTPi .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLscyWTPi .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLscyWTPi .card-wrap {
  width: 100%;
}
.cid-uSLscyWTPi .card-box {
  width: 100%;
}
.cid-uSLscyWTPi .card-title {
  color: #FFF;
}
.cid-uSLscyWTPi .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLscyWTPi .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLXCIZt72 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSLXCIZt72 .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 0.9rem;
}
.cid-uSLXCIZt72 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uSLXCIZt72 .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-uSLXCIZt72 .mbr-text {
  color: #444;
}
.cid-uSLXCIZt72 h5 {
  margin-bottom: 0;
}
.cid-uSLXCIZt72 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSLXCIZt72 .socicon {
  color: #9e9e9e;
  font-size: 0.2rem;
}
.cid-uSLXCIZt72 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uSLXCIZt72 .social-list .soc-item {
  margin: 0 0.5rem;
  display: inline-block;
}
.cid-uSLXCIZt72 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uSLXCIZt72 .social-list a:hover {
  opacity: 0.4;
}
.cid-uSLXCIZt72 .media-container-row > div {
  padding: 0px;
}
.cid-uSLXCIZt72 .text2 {
  color: #000000;
  text-align: left;
}
.cid-uSLXCIZt72 .group-title {
  text-align: left;
}
.cid-uSLXCIZt72 .group-title SPAN {
  color: #656565;
}
.cid-uSLXCIZt72 .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-uSLXCIZt72 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uSLXCIZt72 h3 {
    margin-bottom: 10px;
  }
}
.cid-uSLXCIZt72 .links SPAN {
  color: #9e9e9e;
}
.cid-uSLXCIZt72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLXCIZt72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLXCIZt72 .links,
.cid-uSLXCIZt72 .navbar-brand {
  color: #000000;
}
.cid-uSLCqBoqGH .navbar-dropdown {
  background-color: #fcfbf5 !important;
  padding: 0;
}
.cid-uSLCqBoqGH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fcfbf5 !important;
  background: #fcfbf5;
}
.cid-uSLCqBoqGH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uSLCqBoqGH .menu_box .navbar.opened,
  .cid-uSLCqBoqGH .menu_box .navbar-collapse {
    background-color: #fcfbf5 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uSLCqBoqGH .navbar-dropdown {
  position: relative !important;
}
.cid-uSLCqBoqGH .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uSLCqBoqGH .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uSLCqBoqGH .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uSLCqBoqGH .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uSLCqBoqGH .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uSLCqBoqGH .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #fcfbf5;
  }
  .cid-uSLCqBoqGH .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uSLCqBoqGH .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uSLCqBoqGH .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uSLCqBoqGH .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uSLCqBoqGH .offcanvas-body .mbr-text,
  .cid-uSLCqBoqGH .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uSLCqBoqGH .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uSLCqBoqGH .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uSLCqBoqGH .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1d;
  }
  .cid-uSLCqBoqGH .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uSLCqBoqGH .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uSLCqBoqGH .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uSLCqBoqGH .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uSLCqBoqGH ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uSLCqBoqGH .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSLCqBoqGH .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uSLCqBoqGH .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uSLCqBoqGH li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uSLCqBoqGH .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uSLCqBoqGH .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uSLCqBoqGH .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uSLCqBoqGH .nav-item {
    margin: 0 !important;
  }
}
.cid-uSLCqBoqGH .nav-item .nav-link {
  position: relative;
}
.cid-uSLCqBoqGH .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fa0303;
  transition: all 0.3s ease-out;
}
.cid-uSLCqBoqGH .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uSLCqBoqGH .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uSLCqBoqGH .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uSLCqBoqGH .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uSLCqBoqGH .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSLCqBoqGH .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uSLCqBoqGH .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uSLCqBoqGH .offcanvas_box {
    display: none;
  }
}
.cid-uSLCqBoqGH .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uSLCqBoqGH .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uSLCqBoqGH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uSLCqBoqGH .container {
  display: flex;
  margin: auto;
}
.cid-uSLCqBoqGH .iconfont-wrapper {
  color: #1d1d1d;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uSLCqBoqGH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uSLCqBoqGH .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uSLCqBoqGH .navbar-caption {
  color: #1d1d1d;
}
.cid-uSLCqBoqGH .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uSLCqBoqGH .navbar-nav {
    margin: 0;
  }
}
.cid-uSLCqBoqGH .dropdown-menu,
.cid-uSLCqBoqGH .navbar.opened {
  background-color: false !important;
}
.cid-uSLCqBoqGH .nav-item:focus,
.cid-uSLCqBoqGH .nav-link:focus {
  outline: none;
}
.cid-uSLCqBoqGH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSLCqBoqGH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSLCqBoqGH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSLCqBoqGH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSLCqBoqGH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSLCqBoqGH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSLCqBoqGH .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uSLCqBoqGH .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uSLCqBoqGH .navbar.opened {
  transition: all 0.3s;
}
.cid-uSLCqBoqGH .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uSLCqBoqGH .navbar .navbar-logo img {
  object-fit: contain;
}
.cid-uSLCqBoqGH .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uSLCqBoqGH .navbar.collapsed {
  justify-content: center;
}
.cid-uSLCqBoqGH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSLCqBoqGH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSLCqBoqGH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSLCqBoqGH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSLCqBoqGH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSLCqBoqGH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uSLCqBoqGH .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSLCqBoqGH .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uSLCqBoqGH .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uSLCqBoqGH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSLCqBoqGH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSLCqBoqGH .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uSLCqBoqGH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSLCqBoqGH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uSLCqBoqGH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSLCqBoqGH .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uSLCqBoqGH .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uSLCqBoqGH .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uSLCqBoqGH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSLCqBoqGH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSLCqBoqGH .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uSLCqBoqGH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSLCqBoqGH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSLCqBoqGH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSLCqBoqGH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSLCqBoqGH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uSLCqBoqGH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSLCqBoqGH .dropdown-item.active,
.cid-uSLCqBoqGH .dropdown-item:active {
  background-color: transparent;
}
.cid-uSLCqBoqGH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSLCqBoqGH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSLCqBoqGH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSLCqBoqGH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSLCqBoqGH ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uSLCqBoqGH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSLCqBoqGH button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fcfbf5;
  background: #fcfbf5;
}
.cid-uSLCqBoqGH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1d;
}
.cid-uSLCqBoqGH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSLCqBoqGH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSLCqBoqGH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSLCqBoqGH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSLCqBoqGH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSLCqBoqGH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSLCqBoqGH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSLCqBoqGH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSLCqBoqGH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uSLCqBoqGH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSLCqBoqGH .navbar {
    height: 70px;
  }
  .cid-uSLCqBoqGH .navbar.opened {
    height: auto;
  }
  .cid-uSLCqBoqGH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSLCqBoqGH .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uSLCqBoqGH .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uSLCqBoqGH .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uSLCqBoqGH .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uSLCqBoqGH .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uSLCqBoqGH .navbar-caption:hover {
  color: #fa0303;
}
@media (min-width: 992px) {
  .cid-uSLCqBoqGH .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uSLCqBoqGH .text_widget {
  margin-bottom: 32px;
  color: #1d1d1d;
}
.cid-uSLCqBoqGH .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uSLCqBoqGH .text_widget a:hover {
  color: #fa0303 !important;
}
.cid-uSLCqBoqGH .mbr-section-subtitle {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSLCqBoqGH .mbr-text {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSLCqBoqGH .mbr-section-subtitle,
.cid-uSLCqBoqGH .text_widget,
.cid-uSLCqBoqGH .mbr-section-btn {
  text-align: left;
}
.cid-uSLCqBoqGH a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uSLCqBM3yn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLCqBM3yn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLCqBM3yn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLCqBM3yn .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLCqBM3yn .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLCqBM3yn .card-wrap {
  width: 100%;
}
.cid-uSLCqBM3yn .card-box {
  width: 100%;
}
.cid-uSLCqBM3yn .card-title {
  color: #FFF;
}
.cid-uSLCqBM3yn .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLCqBM3yn .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLCqC1MOo {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/f-sa-631529139962-660x369.jpg");
}
.cid-uSLCqC1MOo .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uSLCqC1MOo .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uSLCqC1MOo .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSLCqC1MOo .label-text {
    text-align: center !important;
  }
}
.cid-uSLCqC1MOo .mbr-section-title {
  width: 100%;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSLCqC1MOo .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uSLCqC1MOo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLCqC1MOo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLCqCfVq7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLCqCfVq7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLCqCfVq7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLCqCfVq7 .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLCqCfVq7 .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLCqCfVq7 .card-wrap {
  width: 100%;
}
.cid-uSLCqCfVq7 .card-box {
  width: 100%;
}
.cid-uSLCqCfVq7 .card-title {
  color: #FFF;
}
.cid-uSLCqCfVq7 .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLCqCfVq7 .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLGlkrUYe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcfbf5;
}
.cid-uSLGlkrUYe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLGlkrUYe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLGlkrUYe .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uSLGlkrUYe .container-fluid {
    padding: 0 12px;
  }
}
.cid-uSLGlkrUYe .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSLGlkrUYe .container {
    padding: 0 20px;
  }
}
.cid-uSLGlkrUYe .card {
  padding: 0;
}
.cid-uSLGlkrUYe .image-wrapper {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
}
.cid-uSLGlkrUYe .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSLGlkrUYe .image-wrapper .text-wrapper {
  position: relative;
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-uSLGlkrUYe .image-wrapper .text-wrapper {
    padding: 50px 20px;
  }
}
.cid-uSLGlkrUYe .image-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uSLGlkrUYe .image-wrapper .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
.cid-uSLGlkrUYe .image-wrapper .text-wrapper .mbr-section-btn .btn {
  color: #fa0303 !important;
}
.cid-uSLGlkrUYe .image-wrap {
  position: relative;
  height: 100%;
}
.cid-uSLGlkrUYe .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSLGlkrUYe .mbr-section-title {
  color: #ffffff;
}
.cid-uSLGlkrUYe .mbr-text {
  color: #000000;
}
.cid-uSLGlkrUYe .mbr-section-title,
.cid-uSLGlkrUYe .mbr-section-btn {
  color: #000000;
}
.cid-uSLFmQkJcN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fffff5;
}
.cid-uSLFmQkJcN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLFmQkJcN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLFmQkJcN .card-wrapper {
  background-color: #000000;
  padding: 1rem 2rem;
}
.cid-uSLFmQkJcN .google-map {
  height: 35rem;
  position: relative;
}
.cid-uSLFmQkJcN .google-map iframe {
  height: 100%;
  width: 100%;
  background-color: #000000;
  padding: 4px;
}
.cid-uSLFmQkJcN .google-map [data-state-details] {
  color: #b4b4b4;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uSLFmQkJcN .google-map[data-state] {
  background: #fffff5;
}
.cid-uSLFmQkJcN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uSLFmQkJcN .content-head {
  max-width: 800px;
}
.cid-uSLFmQkJcN .card-title,
.cid-uSLFmQkJcN .iconfont-wrapper {
  color: #fdfde1;
}
.cid-uSLFmQkJcN .card-text,
.cid-uSLFmQkJcN .mbr-section-btn {
  color: #fdfde1;
}
.cid-uSLFmQkJcN .mbr-desc,
.cid-uSLFmQkJcN .desc-wrapper {
  color: #fdfde1;
}
.cid-uSLCqCvG3B {
  background-color: #000000;
}
.cid-uSLCqCvG3B .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLCqCvG3B .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLCqCvG3B .content p {
  margin: 0;
}
.cid-uSLCqCvG3B .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLCOQnUGW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
}
.cid-uSLCOQnUGW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLCOQnUGW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLCOQnUGW .row {
  justify-content: center;
}
.cid-uSLCOQnUGW .mbr-form {
  padding: 40px 45px;
}
@media (max-width: 992px) {
  .cid-uSLCOQnUGW .mbr-form {
    padding: 32px 24px;
  }
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .mbr-section-title {
  margin-bottom: 11px;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .mbr-text {
  margin-bottom: 22px;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .form-group {
  margin-bottom: 25px !important;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .form-group .form-control-label {
  width: 100%;
  padding: 0 10px 5px 0;
  margin: 0;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .form-group .form-control {
  padding: 0 20px;
  background-color: #ffffff;
  min-height: 60px;
  border-radius: 100px;
  box-shadow: none;
  border: none !important;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .form-group .form-control::placeholder {
  color: #6e716f;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .form-group .form-control:hover,
.cid-uSLCOQnUGW .mbr-form .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin: 0;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .form-group .form-check .form-check-input {
  border-radius: 0;
  border: 2px solid #6e716f;
  background-color: transparent;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .form-group .form-check .form-check-label {
  width: 100%;
  padding-top: 4px;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .form-group textarea {
  padding: 10px 20px 0;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .mbr-section-btn {
  width: 100% !important;
}
.cid-uSLCOQnUGW .mbr-form .dragArea.row .mbr-section-btn .btn {
  min-height: 54px;
}
.cid-uSLCOQnUGW .mbr-section-title {
  color: #101511;
  text-align: center;
}
.cid-uSLCOQnUGW .mbr-text {
  color: #6e716f;
  text-align: center;
}
.cid-uSLCOQnUGW LABEL {
  color: #101511;
}
.cid-uSLCqD61zV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLCqD61zV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLCqD61zV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLCqD61zV .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLCqD61zV .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLCqD61zV .card-wrap {
  width: 100%;
}
.cid-uSLCqD61zV .card-box {
  width: 100%;
}
.cid-uSLCqD61zV .card-title {
  color: #FFF;
}
.cid-uSLCqD61zV .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLCqD61zV .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLXCIZt72 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSLXCIZt72 .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 0.9rem;
}
.cid-uSLXCIZt72 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uSLXCIZt72 .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-uSLXCIZt72 .mbr-text {
  color: #444;
}
.cid-uSLXCIZt72 h5 {
  margin-bottom: 0;
}
.cid-uSLXCIZt72 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSLXCIZt72 .socicon {
  color: #9e9e9e;
  font-size: 0.2rem;
}
.cid-uSLXCIZt72 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uSLXCIZt72 .social-list .soc-item {
  margin: 0 0.5rem;
  display: inline-block;
}
.cid-uSLXCIZt72 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uSLXCIZt72 .social-list a:hover {
  opacity: 0.4;
}
.cid-uSLXCIZt72 .media-container-row > div {
  padding: 0px;
}
.cid-uSLXCIZt72 .text2 {
  color: #000000;
  text-align: left;
}
.cid-uSLXCIZt72 .group-title {
  text-align: left;
}
.cid-uSLXCIZt72 .group-title SPAN {
  color: #656565;
}
.cid-uSLXCIZt72 .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-uSLXCIZt72 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uSLXCIZt72 h3 {
    margin-bottom: 10px;
  }
}
.cid-uSLXCIZt72 .links SPAN {
  color: #9e9e9e;
}
.cid-uSLXCIZt72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLXCIZt72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLXCIZt72 .links,
.cid-uSLXCIZt72 .navbar-brand {
  color: #000000;
}
.cid-uSLhtTT5KB .navbar-dropdown {
  background-color: #fcfbf5 !important;
  padding: 0;
}
.cid-uSLhtTT5KB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fcfbf5 !important;
  background: #fcfbf5;
}
.cid-uSLhtTT5KB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uSLhtTT5KB .menu_box .navbar.opened,
  .cid-uSLhtTT5KB .menu_box .navbar-collapse {
    background-color: #fcfbf5 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uSLhtTT5KB .navbar-dropdown {
  position: relative !important;
}
.cid-uSLhtTT5KB .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uSLhtTT5KB .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uSLhtTT5KB .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uSLhtTT5KB .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uSLhtTT5KB .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uSLhtTT5KB .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #fcfbf5;
  }
  .cid-uSLhtTT5KB .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uSLhtTT5KB .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uSLhtTT5KB .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uSLhtTT5KB .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uSLhtTT5KB .offcanvas-body .mbr-text,
  .cid-uSLhtTT5KB .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uSLhtTT5KB .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uSLhtTT5KB .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uSLhtTT5KB .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1d1d1d;
  }
  .cid-uSLhtTT5KB .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uSLhtTT5KB .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uSLhtTT5KB .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uSLhtTT5KB .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uSLhtTT5KB ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uSLhtTT5KB .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSLhtTT5KB .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uSLhtTT5KB .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uSLhtTT5KB li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uSLhtTT5KB .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uSLhtTT5KB .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uSLhtTT5KB .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uSLhtTT5KB .nav-item {
    margin: 0 !important;
  }
}
.cid-uSLhtTT5KB .nav-item .nav-link {
  position: relative;
}
.cid-uSLhtTT5KB .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fa0303;
  transition: all 0.3s ease-out;
}
.cid-uSLhtTT5KB .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uSLhtTT5KB .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uSLhtTT5KB .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uSLhtTT5KB .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uSLhtTT5KB .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSLhtTT5KB .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uSLhtTT5KB .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uSLhtTT5KB .offcanvas_box {
    display: none;
  }
}
.cid-uSLhtTT5KB .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uSLhtTT5KB .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uSLhtTT5KB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uSLhtTT5KB .container {
  display: flex;
  margin: auto;
}
.cid-uSLhtTT5KB .iconfont-wrapper {
  color: #1d1d1d;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uSLhtTT5KB .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uSLhtTT5KB .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uSLhtTT5KB .navbar-caption {
  color: #1d1d1d;
}
.cid-uSLhtTT5KB .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uSLhtTT5KB .navbar-nav {
    margin: 0;
  }
}
.cid-uSLhtTT5KB .dropdown-menu,
.cid-uSLhtTT5KB .navbar.opened {
  background-color: false !important;
}
.cid-uSLhtTT5KB .nav-item:focus,
.cid-uSLhtTT5KB .nav-link:focus {
  outline: none;
}
.cid-uSLhtTT5KB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSLhtTT5KB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSLhtTT5KB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSLhtTT5KB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSLhtTT5KB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSLhtTT5KB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSLhtTT5KB .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uSLhtTT5KB .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uSLhtTT5KB .navbar.opened {
  transition: all 0.3s;
}
.cid-uSLhtTT5KB .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uSLhtTT5KB .navbar .navbar-logo img {
  object-fit: contain;
}
.cid-uSLhtTT5KB .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uSLhtTT5KB .navbar.collapsed {
  justify-content: center;
}
.cid-uSLhtTT5KB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSLhtTT5KB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSLhtTT5KB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSLhtTT5KB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSLhtTT5KB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSLhtTT5KB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uSLhtTT5KB .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSLhtTT5KB .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uSLhtTT5KB .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uSLhtTT5KB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSLhtTT5KB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSLhtTT5KB .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uSLhtTT5KB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSLhtTT5KB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uSLhtTT5KB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSLhtTT5KB .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uSLhtTT5KB .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uSLhtTT5KB .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uSLhtTT5KB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSLhtTT5KB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSLhtTT5KB .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uSLhtTT5KB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSLhtTT5KB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSLhtTT5KB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSLhtTT5KB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSLhtTT5KB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uSLhtTT5KB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSLhtTT5KB .dropdown-item.active,
.cid-uSLhtTT5KB .dropdown-item:active {
  background-color: transparent;
}
.cid-uSLhtTT5KB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSLhtTT5KB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSLhtTT5KB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSLhtTT5KB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSLhtTT5KB ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uSLhtTT5KB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSLhtTT5KB button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fcfbf5;
  background: #fcfbf5;
}
.cid-uSLhtTT5KB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1d1d1d;
}
.cid-uSLhtTT5KB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSLhtTT5KB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSLhtTT5KB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSLhtTT5KB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSLhtTT5KB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSLhtTT5KB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSLhtTT5KB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSLhtTT5KB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSLhtTT5KB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uSLhtTT5KB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSLhtTT5KB .navbar {
    height: 70px;
  }
  .cid-uSLhtTT5KB .navbar.opened {
    height: auto;
  }
  .cid-uSLhtTT5KB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSLhtTT5KB .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uSLhtTT5KB .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uSLhtTT5KB .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uSLhtTT5KB .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uSLhtTT5KB .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uSLhtTT5KB .navbar-caption:hover {
  color: #fa0303;
}
@media (min-width: 992px) {
  .cid-uSLhtTT5KB .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uSLhtTT5KB .text_widget {
  margin-bottom: 32px;
  color: #1d1d1d;
}
.cid-uSLhtTT5KB .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uSLhtTT5KB .text_widget a:hover {
  color: #fa0303 !important;
}
.cid-uSLhtTT5KB .mbr-section-subtitle {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSLhtTT5KB .mbr-text {
  color: #1d1d1d;
  text-align: left;
}
.cid-uSLhtTT5KB .mbr-section-subtitle,
.cid-uSLhtTT5KB .text_widget,
.cid-uSLhtTT5KB .mbr-section-btn {
  text-align: left;
}
.cid-uSLhtTT5KB a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uSLhtVgK3L {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLhtVgK3L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhtVgK3L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhtVgK3L .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLhtVgK3L .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLhtVgK3L .card-wrap {
  width: 100%;
}
.cid-uSLhtVgK3L .card-box {
  width: 100%;
}
.cid-uSLhtVgK3L .card-title {
  color: #FFF;
}
.cid-uSLhtVgK3L .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLhtVgK3L .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLhtVZFHw {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/f-sa-631529139962-660x369.jpg");
}
.cid-uSLhtVZFHw .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uSLhtVZFHw .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uSLhtVZFHw .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSLhtVZFHw .label-text {
    text-align: center !important;
  }
}
.cid-uSLhtVZFHw .mbr-section-title {
  width: 100%;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSLhtVZFHw .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uSLhtVZFHw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhtVZFHw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhtWITmw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLhtWITmw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhtWITmw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhtWITmw .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLhtWITmw .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLhtWITmw .card-wrap {
  width: 100%;
}
.cid-uSLhtWITmw .card-box {
  width: 100%;
}
.cid-uSLhtWITmw .card-title {
  color: #FFF;
}
.cid-uSLhtWITmw .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLhtWITmw .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLhtXuUqC {
  background-color: #000000;
}
.cid-uSLhtXuUqC .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLhtXuUqC .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLhtXuUqC .content p {
  margin: 0;
}
.cid-uSLhtXuUqC .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLhtY7Dte {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uSLhtY7Dte .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSLhtY7Dte .image-wrapper {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uSLhtY7Dte .image-wrapper {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSLhtY7Dte .text-wrapper {
    padding: 0 2rem 0 6.2rem;
  }
}
.cid-uSLhtY7Dte .under-image {
  width: 100%;
  height: 30%;
  text-align: center;
  padding: 3rem  1rem;
  margin-top: 0.65rem;
  background: #f7e8d2;
}
.cid-uSLhtY7Dte .mbr-section-title {
  color: #090f10;
  text-align: left;
}
.cid-uSLhtY7Dte .under-img {
  text-align: center;
  color: #090f10;
  margin: 0 !important;
}
.cid-uSLhtY7Dte .mbr-text,
.cid-uSLhtY7Dte .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uSLhtY7Dte .mbr-text {
  line-height: 1.4;
}
.cid-uSLhtY7Dte .mbr-section-btn {
  margin-top: 2.9rem !important;
}
.cid-uSLhtY7Dte .mbr-section-title P {
  text-align: left;
}
.cid-uSLhtY7Dte .sub-title P {
  text-align: left;
}
.cid-uSLhtY7Dte .sub-title {
  color: #24158e;
  text-align: left;
}
.cid-uSLhtY7Dte .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhtY7Dte .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhtYS70K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLhtYS70K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhtYS70K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhtYS70K .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLhtYS70K .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLhtYS70K .card-wrap {
  width: 100%;
}
.cid-uSLhtYS70K .card-box {
  width: 100%;
}
.cid-uSLhtYS70K .card-title {
  color: #FFF;
}
.cid-uSLhtYS70K .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLhtYS70K .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLhtZCZD8 {
  background-color: #000000;
}
.cid-uSLhtZCZD8 .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLhtZCZD8 .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLhtZCZD8 .content p {
  margin: 0;
}
.cid-uSLhtZCZD8 .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLhu0irO3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-uSLhu0irO3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhu0irO3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhu0irO3 .row {
  flex-direction: row-reverse;
}
.cid-uSLhu0irO3 .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uSLhu0irO3 .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uSLhu0irO3 .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uSLhu0irO3 .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uSLhu0irO3 .col-text {
    order: 2;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uSLhu0irO3 .col-text {
    margin-top: 20px;
  }
}
.cid-uSLhu0irO3 .text-wrapper {
  width: 100%;
}
.cid-uSLhu0irO3 .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uSLhu0irO3 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 22px;
}
.cid-uSLhu0irO3 .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uSLhu0irO3 .mbr-text {
  color: #C4CFDE;
  padding-right: 16%;
  opacity: 0.9;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cid-uSLhu0irO3 .mbr-text {
    padding-right: 0;
  }
}
.cid-uSLhu0irO3 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uSLhu0irO3 .social-container {
  width: 100%;
  padding-top: 125px;
}
@media (max-width: 991px) {
  .cid-uSLhu0irO3 .social-container {
    padding-top: 40px;
  }
}
.cid-uSLhu0irO3 .social-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uSLhu0irO3 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.cid-uSLhu0irO3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uSLhu0irO3 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uSLhu0irO3 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uSLhu0irO3 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uSLhu0irO3 .soc-item:hover:before {
  opacity: 1;
}
.cid-uSLhu0irO3 .soc-item a {
  animation: none;
}
.cid-uSLhu0irO3 .col-img {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uSLhu0irO3 .col-img {
    order: 1;
  }
}
.cid-uSLhu0irO3 .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-uSLhu0irO3 .image-wrapper img {
  position: relative;
  z-index: 5;
  object-fit: cover;
  width: 100%;
}
.cid-uSLhu0irO3 .img-bg {
  content: "";
  position: absolute;
  z-index: 4;
  width: 100%;
  height: calc(100% - 130px);
  left: 0;
  bottom: 0;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border-radius: 6px;
}
.cid-uSLhu1dvv0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uSLhu1dvv0 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #103178;
  margin-bottom: 2rem;
}
.cid-uSLhu1dvv0 .card-wrapper {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cid-uSLhu1dvv0 .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-uSLhu1dvv0 .card {
    max-width: 14.2%;
  }
}
.cid-uSLhu1dvv0 .card-title,
.cid-uSLhu1dvv0 .iconfont-wrapper {
  color: #103178;
}
.cid-uSLhu1dvv0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhu1dvv0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhu2aS1h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLhu2aS1h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhu2aS1h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhu2aS1h .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLhu2aS1h .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLhu2aS1h .card-wrap {
  width: 100%;
}
.cid-uSLhu2aS1h .card-box {
  width: 100%;
}
.cid-uSLhu2aS1h .card-title {
  color: #FFF;
}
.cid-uSLhu2aS1h .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLhu2aS1h .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLhu2Rzqk {
  background-color: #000000;
}
.cid-uSLhu2Rzqk .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLhu2Rzqk .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLhu2Rzqk .content p {
  margin: 0;
}
.cid-uSLhu2Rzqk .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLhu3zNN2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uSLhu3zNN2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhu3zNN2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhu3zNN2 .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSLhu3zNN2 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSLhu3zNN2 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSLhu3zNN2 .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uSLhu3zNN2 .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uSLhu3zNN2 .item {
    margin-bottom: 16px;
  }
}
.cid-uSLhu3zNN2 .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLhu3zNN2 .item .item-wrapper {
    height: 350px;
  }
}
.cid-uSLhu3zNN2 .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uSLhu3zNN2 .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSLhu3zNN2 .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLhu3zNN2 .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uSLhu3zNN2 .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uSLhu3zNN2 .item .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uSLhu3zNN2 .item .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uSLhu3zNN2 .item .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uSLhu3zNN2 .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uSLhu3zNN2 .item-tag {
  color: #ffffff;
}
.cid-uSLhu3zNN2 .item-name {
  color: #ffffff;
}
.cid-uSLhu4gFiO {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uSLhu4gFiO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhu4gFiO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhu4gFiO .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSLhu4gFiO .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSLhu4gFiO .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSLhu4gFiO .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uSLhu4gFiO .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uSLhu4gFiO .item {
    margin-bottom: 16px;
  }
}
.cid-uSLhu4gFiO .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLhu4gFiO .item .item-wrapper {
    height: 350px;
  }
}
.cid-uSLhu4gFiO .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uSLhu4gFiO .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSLhu4gFiO .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLhu4gFiO .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uSLhu4gFiO .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uSLhu4gFiO .item .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uSLhu4gFiO .item .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uSLhu4gFiO .item .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uSLhu4gFiO .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uSLhu4gFiO .item-tag {
  color: #ffffff;
}
.cid-uSLhu4gFiO .item-name {
  color: #ffffff;
}
.cid-uSLhu596Bl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uSLhu596Bl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhu596Bl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhu596Bl .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSLhu596Bl .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSLhu596Bl .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSLhu596Bl .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uSLhu596Bl .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uSLhu596Bl .item {
    margin-bottom: 16px;
  }
}
.cid-uSLhu596Bl .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLhu596Bl .item .item-wrapper {
    height: 350px;
  }
}
.cid-uSLhu596Bl .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uSLhu596Bl .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSLhu596Bl .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLhu596Bl .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uSLhu596Bl .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uSLhu596Bl .item .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uSLhu596Bl .item .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uSLhu596Bl .item .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uSLhu596Bl .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uSLhu596Bl .item-tag {
  color: #ffffff;
}
.cid-uSLhu596Bl .item-name {
  color: #ffffff;
}
.cid-uSLhu5XuAG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uSLhu5XuAG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhu5XuAG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhu5XuAG .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSLhu5XuAG .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSLhu5XuAG .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSLhu5XuAG .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uSLhu5XuAG .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uSLhu5XuAG .item {
    margin-bottom: 16px;
  }
}
.cid-uSLhu5XuAG .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLhu5XuAG .item .item-wrapper {
    height: 350px;
  }
}
.cid-uSLhu5XuAG .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uSLhu5XuAG .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSLhu5XuAG .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLhu5XuAG .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uSLhu5XuAG .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uSLhu5XuAG .item .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uSLhu5XuAG .item .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uSLhu5XuAG .item .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uSLhu5XuAG .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uSLhu5XuAG .item-tag {
  color: #ffffff;
}
.cid-uSLhu5XuAG .item-name {
  color: #ffffff;
}
.cid-uSLhu6ONAw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uSLhu6ONAw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhu6ONAw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhu6ONAw .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSLhu6ONAw .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSLhu6ONAw .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSLhu6ONAw .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uSLhu6ONAw .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uSLhu6ONAw .item {
    margin-bottom: 16px;
  }
}
.cid-uSLhu6ONAw .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLhu6ONAw .item .item-wrapper {
    height: 350px;
  }
}
.cid-uSLhu6ONAw .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uSLhu6ONAw .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSLhu6ONAw .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLhu6ONAw .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uSLhu6ONAw .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uSLhu6ONAw .item .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uSLhu6ONAw .item .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uSLhu6ONAw .item .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uSLhu6ONAw .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uSLhu6ONAw .item-tag {
  color: #ffffff;
}
.cid-uSLhu6ONAw .item-name {
  color: #ffffff;
}
.cid-uSLhu7CAje {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uSLhu7CAje .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhu7CAje .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhu7CAje .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSLhu7CAje .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSLhu7CAje .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSLhu7CAje .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uSLhu7CAje .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uSLhu7CAje .item {
    margin-bottom: 16px;
  }
}
.cid-uSLhu7CAje .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLhu7CAje .item .item-wrapper {
    height: 350px;
  }
}
.cid-uSLhu7CAje .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uSLhu7CAje .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSLhu7CAje .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLhu7CAje .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uSLhu7CAje .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uSLhu7CAje .item .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uSLhu7CAje .item .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uSLhu7CAje .item .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uSLhu7CAje .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uSLhu7CAje .item-tag {
  color: #ffffff;
}
.cid-uSLhu7CAje .item-name {
  color: #ffffff;
}
.cid-uSLhu8w6C5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uSLhu8w6C5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhu8w6C5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhu8w6C5 .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSLhu8w6C5 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSLhu8w6C5 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSLhu8w6C5 .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uSLhu8w6C5 .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uSLhu8w6C5 .item {
    margin-bottom: 16px;
  }
}
.cid-uSLhu8w6C5 .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLhu8w6C5 .item .item-wrapper {
    height: 350px;
  }
}
.cid-uSLhu8w6C5 .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uSLhu8w6C5 .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSLhu8w6C5 .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLhu8w6C5 .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uSLhu8w6C5 .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uSLhu8w6C5 .item .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uSLhu8w6C5 .item .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uSLhu8w6C5 .item .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uSLhu8w6C5 .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uSLhu8w6C5 .item-tag {
  color: #ffffff;
}
.cid-uSLhu8w6C5 .item-name {
  color: #ffffff;
}
.cid-uSLhuaGYyI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uSLhuaGYyI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhuaGYyI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhuaGYyI .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSLhuaGYyI .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSLhuaGYyI .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSLhuaGYyI .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uSLhuaGYyI .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uSLhuaGYyI .item {
    margin-bottom: 16px;
  }
}
.cid-uSLhuaGYyI .item .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uSLhuaGYyI .item .item-wrapper {
    height: 350px;
  }
}
.cid-uSLhuaGYyI .item .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uSLhuaGYyI .item .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSLhuaGYyI .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSLhuaGYyI .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uSLhuaGYyI .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uSLhuaGYyI .item .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uSLhuaGYyI .item .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uSLhuaGYyI .item .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uSLhuaGYyI .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uSLhuaGYyI .item-tag {
  color: #ffffff;
}
.cid-uSLhuaGYyI .item-name {
  color: #ffffff;
}
.cid-uSLhucgRzE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLhucgRzE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhucgRzE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhucgRzE .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLhucgRzE .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLhucgRzE .card-wrap {
  width: 100%;
}
.cid-uSLhucgRzE .card-box {
  width: 100%;
}
.cid-uSLhucgRzE .card-title {
  color: #FFF;
}
.cid-uSLhucgRzE .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLhucgRzE .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLhudu8Nr {
  background-color: #000000;
}
.cid-uSLhudu8Nr .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLhudu8Nr .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLhudu8Nr .content p {
  margin: 0;
}
.cid-uSLhudu8Nr .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uSLhueLwDN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcfbf5;
  border-top: 2px solid #d7d7d7;
  border-bottom: 2px solid #d7d7d7;
  margin-top: -2px;
}
.cid-uSLhueLwDN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhueLwDN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhueLwDN .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uSLhueLwDN .container-fluid {
    padding: 0 20px;
  }
}
.cid-uSLhueLwDN .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSLhueLwDN .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uSLhueLwDN .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uSLhueLwDN .row.cards .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uSLhueLwDN .row.cards .item {
    margin-bottom: 50px;
  }
}
.cid-uSLhueLwDN .row.cards .item .item-wrapper a:hover .item-img img {
  transform: scale(1.05);
}
.cid-uSLhueLwDN .row.cards .item .item-wrapper a .item-img {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}
.cid-uSLhueLwDN .row.cards .item .item-wrapper a .item-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-uSLhueLwDN .row.cards .item .item-wrapper a .item-img .mbr-iconfont {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 16px;
  background-color: #ffffff;
  color: #1d1d1d;
  border-radius: 100%;
}
.cid-uSLhueLwDN .row.cards .item .item-wrapper .item-content .item-title {
  margin-bottom: 8px;
}
.cid-uSLhueLwDN .row.cards .item .item-wrapper .item-content .item-title .item-title-wrap {
  display: inline-flex;
}
.cid-uSLhueLwDN .row.cards .item .item-wrapper .item-content .item-title .item-title-wrap .mbr-card-title {
  margin: 0 8px 0 0;
}
.cid-uSLhueLwDN .row.cards .item .item-wrapper .item-content .item-title .item-title-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uSLhueLwDN .row.cards .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 8px;
}
.cid-uSLhueLwDN .row.cards .item .item-wrapper .item-content .mbr-loc {
  margin-bottom: 0;
}
.cid-uSLhueLwDN .mbr-section-title {
  color: #1d1d1d;
}
.cid-uSLhueLwDN .mbr-card-title {
  color: #1d1d1d;
}
.cid-uSLhueLwDN .mbr-desc {
  color: #989898;
}
.cid-uSLhueLwDN .mbr-text {
  color: #1d1d1d;
}
.cid-uSLhueLwDN .mbr-loc {
  color: #989898;
}
.cid-uSLhugg0XQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uSLhugg0XQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhugg0XQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhugg0XQ .section-border-item {
  background-color: #fcdb42;
}
.cid-uSLhugg0XQ .main-container {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.cid-uSLhugg0XQ .card-wrap {
  width: 100%;
}
.cid-uSLhugg0XQ .card-box {
  width: 100%;
}
.cid-uSLhugg0XQ .card-title {
  color: #FFF;
}
.cid-uSLhugg0XQ .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uSLhugg0XQ .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uSLhuh26fn {
  background-color: #000000;
}
.cid-uSLhuh26fn .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-uSLhuh26fn .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-uSLhuh26fn .content p {
  margin: 0;
}
.cid-uSLhuh26fn .mbr-text {
  color: #ffffff;
}
.cid-uSLhuhCnlk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcfbf5;
}
.cid-uSLhuhCnlk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhuhCnlk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhuhCnlk .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uSLhuhCnlk .container-fluid {
    padding: 0 20px;
  }
}
.cid-uSLhuhCnlk .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSLhuhCnlk .container {
    padding: 0 20px;
  }
}
.cid-uSLhuhCnlk .nav {
  display: block;
}
.cid-uSLhuhCnlk .tabs-wrap,
.cid-uSLhuhCnlk .tab-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uSLhuhCnlk .nav.nav-tabs {
  display: block;
  border: none;
}
.cid-uSLhuhCnlk .nav.nav-tabs .nav-item .nav-link {
  border-radius: 0;
  padding: 32px 0;
  border: none;
  transition: all 0.3s ease-out;
  border-bottom: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-uSLhuhCnlk .nav.nav-tabs .nav-item .nav-link {
    padding: 16px 0;
  }
}
.cid-uSLhuhCnlk .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  color: #d7d7d7;
}
.cid-uSLhuhCnlk .nav.nav-tabs .nav-item:hover {
  border: none;
  color: #d7d7d7;
}
.cid-uSLhuhCnlk .tab-content {
  padding: 64px 100px;
}
@media (max-width: 1200px) {
  .cid-uSLhuhCnlk .tab-content {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uSLhuhCnlk .tab-content {
    padding: 50px 0;
  }
}
.cid-uSLhuhCnlk .tab-content .tab-pane img {
  height: 650px;
  object-fit: cover;
  margin-bottom: 32px;
  border-bottom-right-radius: 100%;
}
@media (max-width: 768px) {
  .cid-uSLhuhCnlk .tab-content .tab-pane img {
    height: 500px;
  }
}
.cid-uSLhuhCnlk .tab-content .tab-pane .mbr-text {
  margin-bottom: 0;
}
.cid-uSLhuhCnlk .mbr-text {
  color: #1d1d1d;
}
.cid-uSLhuil51J {
  background-image: url("../../../assets/images/rusya-turkiye-ticaret-640x359.jpg");
}
.cid-uSLhuil51J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhuil51J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhuil51J .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uSLhuil51J .container-fluid {
    padding: 0 20px;
  }
}
.cid-uSLhuil51J .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSLhuil51J .container {
    padding: 0 20px;
  }
}
.cid-uSLhuil51J .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uSLhuil51J .title-wrapper .mbr-desc {
  margin: 0;
}
.cid-uSLhuil51J .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uSLhuil51J .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uSLhujDnJu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcfbf5;
}
.cid-uSLhujDnJu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLhujDnJu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLhujDnJu .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uSLhujDnJu .container-fluid {
    padding: 0 20px;
  }
}
.cid-uSLhujDnJu .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSLhujDnJu .container {
    padding: 0 20px;
  }
}
.cid-uSLhujDnJu .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSLhujDnJu .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uSLhujDnJu .card-wrap .panel-group {
  padding: 64px;
  border-radius: 0;
  border: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-uSLhujDnJu .card-wrap .panel-group {
    padding: 50px 20px;
  }
}
.cid-uSLhujDnJu .card-wrap .panel-group .card {
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
}
.cid-uSLhujDnJu .card-wrap .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .cid-uSLhujDnJu .card-wrap .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-uSLhujDnJu .card-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uSLhujDnJu .card-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
  background-color: #d7d7d7;
}
.cid-uSLhujDnJu .card-wrap .panel-group .card .card-header .panel-title:hover .mbr-iconfont,
.cid-uSLhujDnJu .card-wrap .panel-group .card .card-header .panel-title:focus .mbr-iconfont {
  background-color: #d7d7d7;
}
.cid-uSLhujDnJu .card-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-uSLhujDnJu .card-wrap .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 100%;
  font-size: 16px;
  color: #1d1d1d;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}
.cid-uSLhujDnJu .card-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-uSLhujDnJu .mbr-section-title {
  color: #1d1d1d;
}
.cid-uSLhujDnJu .panel-title-edit {
  color: #1d1d1d;
}
.cid-uSLhujDnJu .panel-text {
  color: #1d1d1d;
}
.cid-uSLXCIZt72 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uSLXCIZt72 .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 0.9rem;
}
.cid-uSLXCIZt72 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uSLXCIZt72 .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-uSLXCIZt72 .mbr-text {
  color: #444;
}
.cid-uSLXCIZt72 h5 {
  margin-bottom: 0;
}
.cid-uSLXCIZt72 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSLXCIZt72 .socicon {
  color: #9e9e9e;
  font-size: 0.2rem;
}
.cid-uSLXCIZt72 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uSLXCIZt72 .social-list .soc-item {
  margin: 0 0.5rem;
  display: inline-block;
}
.cid-uSLXCIZt72 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uSLXCIZt72 .social-list a:hover {
  opacity: 0.4;
}
.cid-uSLXCIZt72 .media-container-row > div {
  padding: 0px;
}
.cid-uSLXCIZt72 .text2 {
  color: #000000;
  text-align: left;
}
.cid-uSLXCIZt72 .group-title {
  text-align: left;
}
.cid-uSLXCIZt72 .group-title SPAN {
  color: #656565;
}
.cid-uSLXCIZt72 .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-uSLXCIZt72 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uSLXCIZt72 h3 {
    margin-bottom: 10px;
  }
}
.cid-uSLXCIZt72 .links SPAN {
  color: #9e9e9e;
}
.cid-uSLXCIZt72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLXCIZt72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLXCIZt72 .links,
.cid-uSLXCIZt72 .navbar-brand {
  color: #000000;
}
