.btn {
  border-width: 2px;
}
body {
  font-family: Outfit;
}
.display-1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3rem;
  line-height: 0.9;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8vw;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #fafafa !important;
}
.bg-info {
  background-color: #353535 !important;
}
.bg-warning {
  background-color: #232323 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-info,
.btn-info:active {
  background-color: #353535 !important;
  border-color: #353535 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-success,
.btn-success:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.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: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #353535;
  color: #353535;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0a0a0a !important;
  background-color: transparent!important;
  border-color: #0a0a0a !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #353535 !important;
  border-color: #353535 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #ffffff !important;
}
.text-secondary {
  color: #bbbbbb !important;
}
.text-success {
  color: #fafafa !important;
}
.text-info {
  color: #353535 !important;
}
.text-warning {
  color: #232323 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ffffff !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #888888 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c7c7c7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #020202 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: none;
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #353535;
}
.alert-warning {
  background-color: #232323;
}
.alert-danger {
  background-color: #000000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #a8a8a8;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #bbbbbb !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  position: relative !important;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  position: absolute !important;
}
.cid-t0pQmq4nMM .show .link,
.cid-t0pQmq4nMM .show .mbr-iconfont,
.cid-t0pQmq4nMM .show .phone {
  color: #000000 !important;
}
.cid-t0pQmq4nMM .opened .navbar-caption {
  color: #000000 !important;
}
.cid-t0pQmq4nMM .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-t0pQmq4nMM .phone {
  padding-left: 4rem;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-t0pQmq4nMM .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-t0pQmq4nMM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .dropdown-menu {
  padding: 1rem 0;
}
.cid-t0pQmq4nMM .dropdown-item {
  color: #000000 !important;
}
.cid-t0pQmq4nMM .dropdown-item span {
  color: #000000 !important;
}
.cid-t0pQmq4nMM .dropdown-item:hover,
.cid-t0pQmq4nMM .dropdown-item:focus {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0pQmq4nMM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0pQmq4nMM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0pQmq4nMM .nav-link {
  position: relative;
}
.cid-t0pQmq4nMM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .container {
    flex-wrap: nowrap;
  }
}
.cid-t0pQmq4nMM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown-menu,
.cid-t0pQmq4nMM .navbar.opened {
  background: #ffffff !important;
}
.cid-t0pQmq4nMM .nav-item:focus,
.cid-t0pQmq4nMM .nav-link:focus {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0pQmq4nMM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0pQmq4nMM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-t0pQmq4nMM .navbar.opened {
  transition: all 0.3s;
}
.cid-t0pQmq4nMM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0pQmq4nMM .navbar .navbar-logo img {
  width: auto;
}
.cid-t0pQmq4nMM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0pQmq4nMM .navbar.collapsed {
  justify-content: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0pQmq4nMM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t0pQmq4nMM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0pQmq4nMM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0pQmq4nMM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t0pQmq4nMM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0pQmq4nMM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0pQmq4nMM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0pQmq4nMM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0pQmq4nMM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0pQmq4nMM .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0pQmq4nMM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown-item.active,
.cid-t0pQmq4nMM .dropdown-item:active {
  background-color: transparent;
}
.cid-t0pQmq4nMM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0pQmq4nMM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0pQmq4nMM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0pQmq4nMM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0pQmq4nMM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-t0pQmq4nMM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0pQmq4nMM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0pQmq4nMM .navbar {
    height: 70px;
  }
  .cid-t0pQmq4nMM .navbar.opened {
    height: auto;
  }
  .cid-t0pQmq4nMM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

.homeImage{
  background-image: url("../../../assets/images/newImages/home.jpg");
}

.cid-t9yQn1Sxwo h1 {
  line-height: 1.3;
}
.cid-t9L14Pej70 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
  overflow: hidden;
  position: relative;
}
.cid-t9L14Pej70 .container,
.cid-t9L14Pej70 .container-fluid {
  position: static;
}
.cid-t9L14Pej70 .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 20px;
}
.cid-t9L14Pej70 .label-text span {
  padding: 8px 18px;
  background-color: #f0e4ff;
  border-radius: 0px;
  color: inherit;
}
.cid-t9L14Pej70 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 15px;
}
.cid-t9L14Pej70 .colored-text {
  color: #ffffff;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 4px;
}
.cid-t9L14Pej70 .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 40px;
}
@media (min-width: 1400px) {
  .cid-t9L14Pej70 .mbr-text {
    padding-right: 48px;
  }
}
.cid-t9L14Pej70 .cards-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-t9L14Pej70 .card {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin-top: 30px;
  padding: 25px 25px 25px 95px;
  padding: 25px 25px 25px 25px;
}
.cid-t9L14Pej70 .card:hover .card-number {
  background: #fa4529;
  border-color: #fa4529;
  color: #fa4529;
}
.cid-t9L14Pej70 .card-number {
  width: 33px;
  height: 33px;
  border: 1px solid #000;
  background: #000;
  border-radius: 50%;
  line-height: 43px;
  text-align: center;
  font-size: 18px;
  color: #000;
  position: absolute;
  top: 27px;
  left: 25px;
  transition: all 0.3s ease-in-out;
}
.cid-t9L14Pej70 .card-title {
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-t9L14Pej70 .card-text {
  color: #ffffff;
  opacity: 0.8;
}
.cid-t9L14Pej70 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-t9L14Pej70 .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-t9L14Pej70 .mbr-section-btn .btn:before {
  display: none;
}
.cid-t9L14Pej70 .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-t9L14Pej70 .image-wrapper {
  max-height: 100%;
  position: relative;
  z-index: 2;
}
.cid-t9L14Pej70 .image-wrapper img {
  max-width: 100%;
  margin-left: auto!important;
}
@media (min-width: 768px) {
  .cid-t9L14Pej70 .image-wrapper {
    position: absolute;
    z-index: 2;
    top: 24%;
    width: 38.65%;
    right: 6%;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-t9L14Pej70 .image-wrapper {
    top: 37%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t9L14Pej70 .image-wrapper {
    top: 31%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t9L14Pej70 .image-wrapper {
    top: 42%;
    right: 1%;
  }
}
@media (max-width: 767px) {
  .cid-t9L14Pej70 .image-wrapper {
    max-width: 474px !important;
    margin: 80px auto 0;
  }
}
.cid-t9L14Pej70 .bg-round {
  position: absolute;
  top: -14%;
  padding: 0;
}
.cid-t9L14Pej70 .bg-round svg {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-t9L14Pej70 .bg-round {
    width: 56%;
    right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .cid-t9L14Pej70 .bg-round {
    width: 56%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t9L14Pej70 .bg-round {
    width: 68%;
  }
}
@media (max-width: 767px) {
  .cid-t9L14Pej70 .bg-round {
    top: auto;
    bottom: -10%;
  }
  .cid-t9L14Pej70 .bg-round svg {
    height: 100%;
  }
}
.cid-t9L14Pej70 .col-text {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .cid-t9L14Pej70 .col-text {
    margin-right: auto;
  }
}
.cid-t9M96YX12h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
  overflow: hidden;
}
.cid-t9M96YX12h .text-wrapper {
  padding: 2rem;
  /* max-width: 650px; */
}
@media (max-width: 991px) {
  .cid-t9M96YX12h .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t9M96YX12h img {
  width: 102.2%;
}
@media (max-width: 1400px) {
  .cid-t9M96YX12h img {
    width: 102.2%;
  }
}
@media (max-width: 992px) {
  .cid-t9M96YX12h img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-t9M96YX12h .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9M96YX12h .mbr-section-subtitle {
  color: #fa4529;
  margin-bottom: 16px;
}
.cid-t9M96YX12h .mbr-text {
  color: #ffffff;
}

@media (min-width: 768px) {
  .cid-t9M96YX12h .mbr-text  {
    color: #ffffff;
    text-align: left;
  }
}

.cid-t9M96YX12h .mbr-section-title {
  color: #ffffff;
  margin-bottom: 24px;
}
.cid-t9M96YX12h P {
  text-align: center;
  color: #353535;
}
.cid-t9LkLxaMh2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #353535;
}
.cid-t9LkLxaMh2 .row {
  flex-direction: row-reverse;
}
.cid-t9LkLxaMh2 .row {
  align-items: center;
}
.cid-t9LkLxaMh2 .img-position-container {
  position: absolute;
  z-index: 5;
  top: 0rem;
}
@media (min-width: 768px) {
  .cid-t9LkLxaMh2 .img-position-container {
    bottom: 0rem;
    width: 50%;
    right: 0;
  }
}
@media (max-width: 767px) {
  .cid-t9LkLxaMh2 .img-position-container {
    height: 218px;
    width: 100%;
  }
}
.cid-t9LkLxaMh2 .img-position-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-t9LkLxaMh2 .image-wrapper {
    min-height: 666px;
  }
}
@media (min-width: 768px) {
  .cid-t9LkLxaMh2 .col-text {
    padding: 48px 30px;
  }
}
@media (min-width: 992px) {
  .cid-t9LkLxaMh2 .col-text {
    padding-right: 64px;
  }
}
@media (max-width: 767px) {
  .cid-t9LkLxaMh2 .col-text {
    text-align: center;
    padding-bottom: 48px;
    padding-top: 48px;
    margin-top: 218px;
  }
}
.cid-t9LkLxaMh2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t9LkLxaMh2 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #fa4529;
}
@media (max-width: 767px) {
  .cid-t9LkLxaMh2 .label-text {
    text-align: center !important;
  }
}
.cid-t9LkLxaMh2 .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
  width: 100%;
}
.cid-t9LkLxaMh2 .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-t9LkLxaMh2 .lists-container {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t9LkLxaMh2 .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t9LkLxaMh2 .lists-container {
    justify-content: center;
  }
}
.cid-t9LkLxaMh2 .list {
  display: flex;
  flex-direction: column;
  color: #555555;
  padding: 0 8px 0 0;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cid-t9LkLxaMh2 .list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-t9LkLxaMh2 .list {
    align-items: center;
  }
}
.cid-t9LkLxaMh2 .list-item {
  display: flex;
  align-items: center;
}
.cid-t9LkLxaMh2 .icon-wrapper {
  margin-right: 5px;
}
.cid-t9LkLxaMh2 .icon-wrapper span {
  color: #c69453;
  font-size: 21px;
}
.cid-t9LkLxaMh2 .list-item-text {
  flex-grow: 1;
}
.cid-t9LkLxaMh2 .btn-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t9LkLxaMh2 .btn-container {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .cid-t9LkLxaMh2 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9LkLxaMh2 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9LkLxaMh2 .mbr-section-title,
.cid-t9LkLxaMh2 .mbr-section-btn {
  color: #ffffff;
}
.cid-t9M9LdaOOB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #353535;
}
.cid-t9M9LdaOOB .row {
  align-items: center;
}
.cid-t9M9LdaOOB .img-position-container {
  position: absolute;
  z-index: 5;
  top: 0rem;
}
@media (min-width: 768px) {
  .cid-t9M9LdaOOB .img-position-container {
    bottom: 0rem;
    width: 50%;
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-t9M9LdaOOB .img-position-container {
    height: 218px;
    width: 100%;
  }
}
.cid-t9M9LdaOOB .img-position-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-t9M9LdaOOB .image-wrapper {
    min-height: 666px;
  }
}
@media (min-width: 768px) {
  .cid-t9M9LdaOOB .col-text {
    padding: 48px 30px;
  }
}
@media (min-width: 992px) {
  .cid-t9M9LdaOOB .col-text {
    padding-left: 64px;
  }
}
@media (max-width: 767px) {
  .cid-t9M9LdaOOB .col-text {
    text-align: center;
    padding-bottom: 48px;
    padding-top: 48px;
    margin-top: 218px;
  }
}
.cid-t9M9LdaOOB .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t9M9LdaOOB .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #fa4529;
}
@media (max-width: 767px) {
  .cid-t9M9LdaOOB .label-text {
    text-align: center !important;
  }
}
.cid-t9M9LdaOOB .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
  width: 100%;
}
.cid-t9M9LdaOOB .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-t9M9LdaOOB .lists-container {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t9M9LdaOOB .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t9M9LdaOOB .lists-container {
    justify-content: center;
  }
}
.cid-t9M9LdaOOB .list {
  display: flex;
  flex-direction: column;
  color: #555555;
  padding: 0 8px 0 0;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cid-t9M9LdaOOB .list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-t9M9LdaOOB .list {
    align-items: center;
  }
}
.cid-t9M9LdaOOB .list-item {
  display: flex;
  align-items: center;
}
.cid-t9M9LdaOOB .icon-wrapper {
  margin-right: 5px;
}
.cid-t9M9LdaOOB .icon-wrapper span {
  color: #c69453;
  font-size: 21px;
}
.cid-t9M9LdaOOB .list-item-text {
  flex-grow: 1;
}
.cid-t9M9LdaOOB .btn-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t9M9LdaOOB .btn-container {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .cid-t9M9LdaOOB .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9M9LdaOOB .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9M9LdaOOB .mbr-section-title,
.cid-t9M9LdaOOB .mbr-section-btn {
  color: #ffffff;
}
.cid-t0pW33hUBo {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #353535;
}
.cid-t0pW33hUBo .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t0pW33hUBo .mbr-form {
  background: #fafafa;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-t0pW33hUBo .mbr-form {
    padding: 1rem 0;
  }
}
.cid-t0pW33hUBo .row {
  padding-right: 1rem;
}
@media (max-width: 992px) {
  .cid-t0pW33hUBo .row {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t0pW33hUBo .row {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t0pW33hUBo .col-auto {
    margin: auto;
  }
}
.cid-t0pW33hUBo textarea {
  min-height: 170px;
}
.cid-t0pW33hUBo .form-group {
  padding: 1rem;
}
.cid-t0pW33hUBo .btn {
  padding: 1rem 2rem;
}
.cid-t0pW33hUBo .btn span {
  padding-left: 2rem;
}
.cid-t0pW33hUBo .form-control,
.cid-t0pW33hUBo .field-input {
  padding: 0rem;
  background-color: #fafafa;
  border: none!important;
  border-radius: 0;
  border-bottom: 1px solid #000000 !important;
  border-color: #000000 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t0pW33hUBo .form-control::-webkit-input-placeholder,
.cid-t0pW33hUBo .field-input::-webkit-input-placeholder,
.cid-t0pW33hUBo .form-control::-webkit-input-placeholder,
.cid-t0pW33hUBo .field-input::-webkit-input-placeholder {
  color: #232323;
}
.cid-t0pW33hUBo .form-control:-moz-placeholder,
.cid-t0pW33hUBo .field-input:-moz-placeholder,
.cid-t0pW33hUBo .form-control:-moz-placeholder,
.cid-t0pW33hUBo .field-input:-moz-placeholder {
  color: #232323;
}
.cid-t0pW33hUBo .form-control:hover,
.cid-t0pW33hUBo .field-input:hover,
.cid-t0pW33hUBo .form-control:focus,
.cid-t0pW33hUBo .field-input:focus {
  background-color: #eaeaea;
  border-color: #000000 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-t0pW33hUBo .form-control:hover::-webkit-input-placeholder,
.cid-t0pW33hUBo .field-input:hover::-webkit-input-placeholder,
.cid-t0pW33hUBo .form-control:focus::-webkit-input-placeholder,
.cid-t0pW33hUBo .field-input:focus::-webkit-input-placeholder,
.cid-t0pW33hUBo .form-control:hover::-webkit-input-placeholder,
.cid-t0pW33hUBo .field-input:hover::-webkit-input-placeholder,
.cid-t0pW33hUBo .form-control:focus::-webkit-input-placeholder,
.cid-t0pW33hUBo .field-input:focus::-webkit-input-placeholder {
  color: #232323;
}
.cid-t0pW33hUBo .form-control:hover:-moz-placeholder,
.cid-t0pW33hUBo .field-input:hover:-moz-placeholder,
.cid-t0pW33hUBo .form-control:focus:-moz-placeholder,
.cid-t0pW33hUBo .field-input:focus:-moz-placeholder,
.cid-t0pW33hUBo .form-control:hover:-moz-placeholder,
.cid-t0pW33hUBo .field-input:hover:-moz-placeholder,
.cid-t0pW33hUBo .form-control:focus:-moz-placeholder,
.cid-t0pW33hUBo .field-input:focus:-moz-placeholder {
  color: #232323;
}
.cid-t0pW33hUBo .jq-number__spin:hover,
.cid-t0pW33hUBo .jq-number__spin:focus {
  background-color: #eaeaea;
  border-color: #000000 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-t0pW33hUBo .jq-number__spin {
  background-color: #fafafa;
  border-color: #000000 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t0pW33hUBo .jq-selectbox li,
.cid-t0pW33hUBo .jq-selectbox li {
  background-color: #fafafa;
  color: #000000;
}
.cid-t0pW33hUBo .jq-selectbox li:hover,
.cid-t0pW33hUBo .jq-selectbox li.selected {
  background-color: #eaeaea;
  color: #000000;
}
.cid-t0pW33hUBo .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-t0pW33hUBo .jq-number__spin.minus:hover:after,
.cid-t0pW33hUBo .jq-number__spin.plus:hover:after {
  border-top-color: #fafafa;
  border-bottom-color: #fafafa;
}
.cid-t0pW33hUBo .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-t0pW33hUBo .jq-number__spin.minus:after,
.cid-t0pW33hUBo .jq-number__spin.plus:after {
  border-top-color: #eaeaea;
  border-bottom-color: #eaeaea;
}
.cid-t0pW33hUBo .contacts {
  color: #ffffff;
}
.cid-t0pW33hUBo .mbr-text {
  color: #ffffff;
}
.cid-t0pW33hUBo .mbr-section-title {
  color: #ffffff;
}
.cid-t9WfJC8ssD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-t9WfJC8ssD .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-t9WfJC8ssD .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-t9WfJC8ssD .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-t9WfJC8ssD .row {
    text-align: center;
  }
  .cid-t9WfJC8ssD .row > div {
    margin: auto;
  }
  .cid-t9WfJC8ssD .social-row {
    justify-content: center;
  }
}
.cid-t9WfJC8ssD .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t9WfJC8ssD .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t9WfJC8ssD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t9WfJC8ssD .list {
    margin-bottom: 0rem;
  }
}
.cid-t9WfJC8ssD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-t9WfJC8ssD .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-t9WfJC8ssD div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ta2iWUrhsg .navbar-dropdown {
  position: relative !important;
}
.cid-ta2iWUrhsg .navbar-dropdown {
  position: absolute !important;
}
.cid-ta2iWUrhsg .show .link,
.cid-ta2iWUrhsg .show .mbr-iconfont,
.cid-ta2iWUrhsg .show .phone {
  color: #000000 !important;
}
.cid-ta2iWUrhsg .opened .navbar-caption {
  color: #000000 !important;
}
.cid-ta2iWUrhsg .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-ta2iWUrhsg .phone {
  padding-left: 4rem;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ta2iWUrhsg .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-ta2iWUrhsg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ta2iWUrhsg .dropdown-menu {
  padding: 1rem 0;
}
.cid-ta2iWUrhsg .dropdown-item {
  color: #000000 !important;
}
.cid-ta2iWUrhsg .dropdown-item span {
  color: #000000 !important;
}
.cid-ta2iWUrhsg .dropdown-item:hover,
.cid-ta2iWUrhsg .dropdown-item:focus {
  color: #ffffff !important;
}
.cid-ta2iWUrhsg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ta2iWUrhsg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ta2iWUrhsg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ta2iWUrhsg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ta2iWUrhsg .nav-link {
  position: relative;
}
.cid-ta2iWUrhsg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ta2iWUrhsg .container {
    flex-wrap: nowrap;
  }
}
.cid-ta2iWUrhsg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ta2iWUrhsg .dropdown-menu,
.cid-ta2iWUrhsg .navbar.opened {
  background: #ffffff !important;
}
.cid-ta2iWUrhsg .nav-item:focus,
.cid-ta2iWUrhsg .nav-link:focus {
  outline: none;
}
.cid-ta2iWUrhsg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ta2iWUrhsg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ta2iWUrhsg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ta2iWUrhsg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ta2iWUrhsg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ta2iWUrhsg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ta2iWUrhsg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-ta2iWUrhsg .navbar.opened {
  transition: all 0.3s;
}
.cid-ta2iWUrhsg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ta2iWUrhsg .navbar .navbar-logo img {
  width: auto;
}
.cid-ta2iWUrhsg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ta2iWUrhsg .navbar.collapsed {
  justify-content: center;
}
.cid-ta2iWUrhsg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ta2iWUrhsg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ta2iWUrhsg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ta2iWUrhsg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ta2iWUrhsg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ta2iWUrhsg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ta2iWUrhsg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ta2iWUrhsg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ta2iWUrhsg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ta2iWUrhsg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ta2iWUrhsg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ta2iWUrhsg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ta2iWUrhsg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ta2iWUrhsg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ta2iWUrhsg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ta2iWUrhsg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ta2iWUrhsg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ta2iWUrhsg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ta2iWUrhsg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ta2iWUrhsg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ta2iWUrhsg .navbar.navbar-short {
  min-height: 60px;
}
.cid-ta2iWUrhsg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ta2iWUrhsg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ta2iWUrhsg .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-ta2iWUrhsg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ta2iWUrhsg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ta2iWUrhsg .dropdown-item.active,
.cid-ta2iWUrhsg .dropdown-item:active {
  background-color: transparent;
}
.cid-ta2iWUrhsg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ta2iWUrhsg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ta2iWUrhsg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ta2iWUrhsg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ta2iWUrhsg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ta2iWUrhsg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ta2iWUrhsg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ta2iWUrhsg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ta2iWUrhsg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ta2iWUrhsg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ta2iWUrhsg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ta2iWUrhsg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ta2iWUrhsg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ta2iWUrhsg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ta2iWUrhsg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ta2iWUrhsg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ta2iWUrhsg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ta2iWUrhsg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ta2iWUrhsg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ta2iWUrhsg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ta2iWUrhsg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ta2iWUrhsg .navbar {
    height: 70px;
  }
  .cid-ta2iWUrhsg .navbar.opened {
    height: auto;
  }
  .cid-ta2iWUrhsg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ta2jDBOdWM {
  background-image: url("../../../assets/images/image2/jet-kim-_w-VVA8PrC0-unsplash.jpg");
}
.cid-ta2jDBOdWM .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ta2jDBOdWM .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-ta2jDBOdWM .col-text {
    padding: 30px;
  }
}
.cid-ta2jDBOdWM .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ta2jDBOdWM .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-ta2jDBOdWM .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-ta2jDBOdWM .col-form {
    max-height: 440px;
  }
}
.cid-ta2jDBOdWM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-ta2jDBOdWM .text-wrapper {
    text-align: center !important;
  }
}
.cid-ta2jDBOdWM .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ta2jDBOdWM .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ta2jDBOdWM .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ta2jDBOdWM .mbr-text {
    text-align: center !important;
  }
}
.cid-ta2jDBOdWM .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-ta2jDBOdWM .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-ta2jDBOdWM .prof-text {
  color: #555555;
  width: 100%;
}
.cid-ta2jDBOdWM .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-ta2jDBOdWM .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-ta2jDBOdWM .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-ta2jDBOdWM .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-ta2jDBOdWM .mbr-section-title,
.cid-ta2jDBOdWM .mbr-section-btn {
  color: #fa4529;
}
.cid-ta3jDBOdWM{
  background-image: url("../../../assets/images/newImages/chuttersnap-bmJIOogVW-w-unsplash.jpeg");
}
.cid-ta3jDBOdWM .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ta3jDBOdWM .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-ta3jDBOdWM .col-text {
    padding: 30px;
  }
}
.cid-ta3jDBOdWM .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ta3jDBOdWM .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-ta3jDBOdWM .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-ta3jDBOdWM .col-form {
    max-height: 440px;
  }
}
.cid-ta3jDBOdWM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-ta3jDBOdWM .text-wrapper {
    text-align: center !important;
  }
}
.cid-ta3jDBOdWM .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ta3jDBOdWM .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ta3jDBOdWM .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ta3jDBOdWM .mbr-text {
    text-align: center !important;
  }
}
.cid-ta3jDBOdWM .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-ta3jDBOdWM .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-ta3jDBOdWM .prof-text {
  color: #555555;
  width: 100%;
}
.cid-ta3jDBOdWM .btn-container {
  width: 100%;
  margin-top: 11px;
}
.cid-ta4kDsOdeM{
  background-image: url("../../../assets/images/image2/michael-wave-5BlIoNsg1zY-unsplash.jpg");
}
.cid-ta4kDsOdeM .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ta4kDsOdeM .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-ta4kDsOdeM .col-text {
    padding: 30px;
  }
}
.cid-ta4kDsOdeM .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ta4kDsOdeM .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-ta4kDsOdeM .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-ta4kDsOdeM .col-form {
    max-height: 440px;
  }
}
.cid-ta4kDsOdeM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-ta4kDsOdeM .text-wrapper {
    text-align: center !important;
  }
}
.cid-ta4kDsOdeM .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ta4kDsOdeM .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ta4kDsOdeM .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ta4kDsOdeM .mbr-text {
    text-align: center !important;
  }
}
.cid-ta4kDsOdeM .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-ta4kDsOdeM .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-ta4kDsOdeM .prof-text {
  color: #555555;
  width: 100%;
}
.cid-ta4kDsOdeM .btn-container {
  width: 100%;
  margin-top: 11px;
}

.cid-ta5gDz1deM{
  background-image: url("../../../assets/images/contact-us-4193523_1280.jpg");
}
.cid-ta5gDz1deM .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ta5gDz1deM .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-ta5gDz1deM .col-text {
    padding: 30px;
  }
}
.cid-ta5gDz1deM .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ta5gDz1deM .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-ta5gDz1deM .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-ta5gDz1deM .col-form {
    max-height: 440px;
  }
}
.cid-ta5gDz1deM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-ta5gDz1deM .text-wrapper {
    text-align: center !important;
  }
}
.cid-ta5gDz1deM .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ta5gDz1deM .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ta5gDz1deM .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ta5gDz1deM .mbr-text {
    text-align: center !important;
  }
}
.cid-ta5gDz1deM .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-ta5gDz1deM .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-ta5gDz1deM .prof-text {
  color: #555555;
  width: 100%;
}
.cid-ta5gDz1deM .btn-container {
  width: 100%;
  margin-top: 11px;
}
.cid-tb2jDBOdWA{
  background-image: url("../../../assets/images/newImages/001.jpeg");
}
.cid-tb2jDBOdWA .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tb2jDBOdWA .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tb2jDBOdWA .col-text {
    padding: 30px;
  }
}
.cid-tb2jDBOdWA .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tb2jDBOdWA .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tb2jDBOdWA .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-tb2jDBOdWA .col-form {
    max-height: 440px;
  }
}
.cid-tb2jDBOdWA .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tb2jDBOdWA .text-wrapper {
    text-align: center !important;
  }
}
.cid-tb2jDBOdWA .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tb2jDBOdWA .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tb2jDBOdWA .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tb2jDBOdWA .mbr-text {
    text-align: center !important;
  }
}
.cid-tb2jDBOdWA .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-tb2jDBOdWA .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-tb2jDBOdWA .prof-text {
  color: #555555;
  width: 100%;
}
.cid-tb2jDBOdWA .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-ta2jDBOdWM .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-ta2jDBOdWM .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-ta2jDBOdWM .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-ta2jDBOdWM .mbr-section-title,
.cid-ta2jDBOdWM .mbr-section-btn {
  color: #fa4529;
}
.cid-ta2lhmNRgR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #1F1F1F;
}
.cid-ta2lhmNRgR .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}
.cid-ta2lhmNRgR .mbr-section-title {
  color: #ffffff;
  text-align: center;
  line-height: 38.4px;
}
.cid-ta2lhmNRgR .container {
  max-width: 1240px;
}
.cid-ta2lR5m6Pz {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-ta2lR5m6Pz .mbr-section-title.col-title {
  color: #fa4529;
}
.cid-ta2lR5m6Pz .colored-text {
  color: #fa4529 !important;
}
.cid-ta2lR5m6Pz .mbr-section-title {
  color: #ffffff;
}
.cid-ta2lR5m6Pz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ta2lR5m6Pz .mbr-text {
  color: #ffffff;
}
.cid-ta2pYWO8zo {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #353535;
}
.cid-ta2pYWO8zo .row {
  align-items: stretch;
  justify-content: center;
}
.cid-ta2pYWO8zo .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-ta2pYWO8zo .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-ta2pYWO8zo .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-ta2mrQZIsY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-ta2mrQZIsY h1{
    color: #fa4529;
}
.cid-ta2mrQZIsY h2,
.cid-ta2mrQZIsY h3,
.cid-ta2mrQZIsY h4,
.cid-ta2mrQZIsY p {
  margin: 0;
    color: #fff;
}
.cid-ta2mrQZIsY .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-ta2mrQZIsY .mbr-first-section-title {
  color: #ffffff;
  margin-bottom: 22px;
}
.cid-ta2mrQZIsY .mbr-first-section-subtitle {
  margin-bottom: 5px;
  color: #fa4529;
}
.cid-ta2mrQZIsY .mbr-first-section-text {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-ta2mrQZIsY .mbr-second-section-title {
  color: #ffffff;
  margin-bottom: 22px;
}
.cid-ta2mrQZIsY .mbr-second-section-subtitle {
  margin-bottom: 5px;
  color: #fa4529;
}
.cid-ta2mrQZIsY .mbr-second-section-text {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-ta2ssbjOrL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #353535;
}
@media (max-width: 767px) {
  .cid-ta2ssbjOrL .mbr-text {
    text-align: center;
  }
}
.cid-ta2ssbjOrL .container-fluid {
  padding: 0;
}
.cid-ta2mrQZIsY .media-content,
.cid-ta2ssbjOrL .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-ta2ssbjOrL img {
  height: 100%;
  object-fit: cover;
}
.cid-ta2ssbjOrL .mbr-figure {
  height: 100%;
}
.cid-ta2ssbjOrL .col-lg-7 {
  padding: 0;
}
.cid-ta2ssbjOrL .row {
  margin: 0;
}
.cid-ta2ssbjOrL H3 {
  color: #ffffff;
}
.cid-ta2ssbjOrL H1 {
  color: #fa4529;
}
.cid-ta2ssbjOrL .mbr-text,
.cid-ta2ssbjOrL .mbr-section-btn {
  color: #ffffff;
}
.cid-ta2mAQQyXB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-ta2mAQQyXB img {
  border-radius: 0px;
}
.cid-ta2mAQQyXB .mbr-section-title {
  color: #000000;
  padding-top: 0.4rem;
}
.cid-ta2mAQQyXB .date {
  text-transform: uppercase;
  color: #fa4529;
  text-align: left;
  padding-top: 1rem;
}
.cid-ta2mAQQyXB .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-ta2mAQQyXB .heading {
  padding-bottom: 40px;
  color: #ffffff;
}
@media (max-width: 1400px) {
  .cid-ta2mAQQyXB img {
    margin-top: 60px;
  }
}
.cid-ta2mAQQyXB .card-heading {
  color: #ffffff;
}
.cid-ta2iWWKjcV {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #353535;
}
.cid-ta2iWWKjcV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ta2iWWKjcV .mbr-form {
  background: #fafafa;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-ta2iWWKjcV .mbr-form {
    padding: 1rem 0;
  }
}
.cid-ta2iWWKjcV .row {
  padding-right: 1rem;
}
@media (max-width: 992px) {
  .cid-ta2iWWKjcV .row {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ta2iWWKjcV .row {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ta2iWWKjcV .col-auto {
    margin: auto;
  }
}
.cid-ta2iWWKjcV textarea {
  min-height: 170px;
}
.cid-ta2iWWKjcV .form-group {
  padding: 1rem;
}
.cid-ta2iWWKjcV .btn {
  padding: 1rem 2rem;
}
.cid-ta2iWWKjcV .btn span {
  padding-left: 2rem;
}
.cid-ta2iWWKjcV .form-control,
.cid-ta2iWWKjcV .field-input {
  padding: 0rem;
  background-color: #fafafa;
  border: none!important;
  border-radius: 0;
  border-bottom: 1px solid #000000 !important;
  border-color: #000000 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ta2iWWKjcV .form-control::-webkit-input-placeholder,
.cid-ta2iWWKjcV .field-input::-webkit-input-placeholder,
.cid-ta2iWWKjcV .form-control::-webkit-input-placeholder,
.cid-ta2iWWKjcV .field-input::-webkit-input-placeholder {
  color: #232323;
}
.cid-ta2iWWKjcV .form-control:-moz-placeholder,
.cid-ta2iWWKjcV .field-input:-moz-placeholder,
.cid-ta2iWWKjcV .form-control:-moz-placeholder,
.cid-ta2iWWKjcV .field-input:-moz-placeholder {
  color: #232323;
}
.cid-ta2iWWKjcV .form-control:hover,
.cid-ta2iWWKjcV .field-input:hover,
.cid-ta2iWWKjcV .form-control:focus,
.cid-ta2iWWKjcV .field-input:focus {
  background-color: #eaeaea;
  border-color: #000000 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ta2iWWKjcV .form-control:hover::-webkit-input-placeholder,
.cid-ta2iWWKjcV .field-input:hover::-webkit-input-placeholder,
.cid-ta2iWWKjcV .form-control:focus::-webkit-input-placeholder,
.cid-ta2iWWKjcV .field-input:focus::-webkit-input-placeholder,
.cid-ta2iWWKjcV .form-control:hover::-webkit-input-placeholder,
.cid-ta2iWWKjcV .field-input:hover::-webkit-input-placeholder,
.cid-ta2iWWKjcV .form-control:focus::-webkit-input-placeholder,
.cid-ta2iWWKjcV .field-input:focus::-webkit-input-placeholder {
  color: #232323;
}
.cid-ta2iWWKjcV .form-control:hover:-moz-placeholder,
.cid-ta2iWWKjcV .field-input:hover:-moz-placeholder,
.cid-ta2iWWKjcV .form-control:focus:-moz-placeholder,
.cid-ta2iWWKjcV .field-input:focus:-moz-placeholder,
.cid-ta2iWWKjcV .form-control:hover:-moz-placeholder,
.cid-ta2iWWKjcV .field-input:hover:-moz-placeholder,
.cid-ta2iWWKjcV .form-control:focus:-moz-placeholder,
.cid-ta2iWWKjcV .field-input:focus:-moz-placeholder {
  color: #232323;
}
.cid-ta2iWWKjcV .jq-number__spin:hover,
.cid-ta2iWWKjcV .jq-number__spin:focus {
  background-color: #eaeaea;
  border-color: #000000 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-ta2iWWKjcV .jq-number__spin {
  background-color: #fafafa;
  border-color: #000000 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ta2iWWKjcV .jq-selectbox li,
.cid-ta2iWWKjcV .jq-selectbox li {
  background-color: #fafafa;
  color: #000000;
}
.cid-ta2iWWKjcV .jq-selectbox li:hover,
.cid-ta2iWWKjcV .jq-selectbox li.selected {
  background-color: #eaeaea;
  color: #000000;
}
.cid-ta2iWWKjcV .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ta2iWWKjcV .jq-number__spin.minus:hover:after,
.cid-ta2iWWKjcV .jq-number__spin.plus:hover:after {
  border-top-color: #fafafa;
  border-bottom-color: #fafafa;
}
.cid-ta2iWWKjcV .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ta2iWWKjcV .jq-number__spin.minus:after,
.cid-ta2iWWKjcV .jq-number__spin.plus:after {
  border-top-color: #eaeaea;
  border-bottom-color: #eaeaea;
}
.cid-ta2iWWKjcV .contacts {
  color: #ffffff;
}
.cid-ta2iWWKjcV .mbr-text {
  color: #ffffff;
}
.cid-ta2iWWKjcV .mbr-section-title {
  color: #ffffff;
}
.cid-ta2iWXaSUC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0d09;
}
.cid-ta2iWXaSUC .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-ta2iWXaSUC .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-ta2iWXaSUC .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-ta2iWXaSUC .row {
    text-align: center;
  }
  .cid-ta2iWXaSUC .row > div {
    margin: auto;
  }
  .cid-ta2iWXaSUC .social-row {
    justify-content: center;
  }
}
.cid-ta2iWXaSUC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ta2iWXaSUC .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ta2iWXaSUC .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ta2iWXaSUC .list {
    margin-bottom: 0rem;
  }
}
.cid-ta2iWXaSUC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-ta2iWXaSUC .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ta2iWXaSUC div > *:last-child {
    margin-top: 0 !important;
  }
}


.redTitle-font {
  font-size: 12.8px;
  color: red!important;
}

.title-font {
  font-size: 32px;
  color: white!important;
}

.description-font {
  font-size: 16px;
  color: white!important;
}

.cid-teEhPEABYo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-teEhPEABYo img,
.cid-teEhPEABYo .item-img {
  width: 100%;
}
.cid-teEhPEABYo .item:focus,
.cid-teEhPEABYo span:focus {
  outline: none;
}
.cid-teEhPEABYo .item {
  cursor: pointer;
  margin-bottom: 2rem;
  border-radius: 15px;
}
.cid-teEhPEABYo .item-wrapper {
  position: relative;
  border-radius: 15px;
  margin: 0 auto;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-teEhPEABYo .item-wrapper .item-content {
    padding: 1.7rem 2rem 0;
  }
  .cid-teEhPEABYo .item-wrapper .item-footer {
    padding: 0 2rem 1.7rem;
  }
}
@media (max-width: 991px) {
  .cid-teEhPEABYo .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-teEhPEABYo .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-teEhPEABYo .item-title {
  text-align: left;
  margin-bottom: 1rem;
}
.cid-teEhPEABYo .item-subtitle {
  margin-bottom: 1rem;
  text-align: left;
}
.cid-teEhPEABYo .mbr-text {
  text-align: left;
}
.cid-teEhPEABYo .item-footer {
  margin-top: 14px;
}
.cid-teEhPEABYo .mbr-amount {
  margin-bottom: 1rem;
  text-align: left;
}
.cid-teEhPEABYo .mbr-price {
  color: #33d5ad;
  text-align: left;
}
.cid-teEhPEABYo .item-btn {
  min-width: 150px;
  min-height: 53px;
  margin-left: 0;
}
.cid-teEhPEABYo .mbr-section-btn {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
.cid-teEhPEABYo .mbr-section-title {
  color: #ffffff;
}
.cid-teEhPEABYo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-teEhPEABYo .mbr-price,
.cid-teEhPEABYo .mbr-section-btn {
  color: #fa4529;
}

.cid-teEaT08oon {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0d09;
}
.cid-teEaT08oon .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-teEaT08oon .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-teEaT08oon .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-teEaT08oon .row {
    text-align: center;
  }
  .cid-teEaT08oon .row > div {
    margin: auto;
  }
  .cid-teEaT08oon .social-row {
    justify-content: center;
  }
}
.cid-teEaT08oon .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-teEaT08oon .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teEaT08oon .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teEaT08oon .list {
    margin-bottom: 0rem;
  }
}
.cid-teEaT08oon .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-teEaT08oon .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-teEaT08oon div > *:last-child {
    margin-top: 0 !important;
  }
}

.company-image {
  background-image: url(../../images/image2/michael-wave-5BlIoNsg1zY-unsplash.jpg);
}

iframe[src$="pdf"]{
  width: 100%;
  height: 90vh;
}

.f-lower__image-item {
  height: 80vh!important;
  object-fit: cover;
}

.catalogue-image {
  width: 85%!important;
  margin: auto;
}

.l-footer__account-lists {
  list-style: none;
 
}

/* .l-footer__account-list-link {
  display: block;
  text-align: center;
}

.l-footer__account-list-link-icon {
  border: solid 1px #f3f3f3;
  border-radius: 50%;
  display: flex;

} */

.l-footer__account-list-item :hover{
  opacity: 0.8;
}