body {
  font-family: Bai Jamjuree;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((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.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 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: #737476 !important;
}
.bg-success {
  background-color: #fafafa !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #737476 !important;
}
.bg-danger {
  background-color: #e8eaed !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #737476 !important;
  border-color: #737476 !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: #48494a !important;
  border-color: #48494a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #48494a !important;
  border-color: #48494a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !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: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #737476 !important;
  border-color: #737476 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #48494a !important;
  border-color: #48494a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #48494a !important;
  border-color: #48494a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e8eaed !important;
  border-color: #e8eaed !important;
  color: #5e6878 !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: #b7bec7 !important;
  border-color: #b7bec7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #5e6878 !important;
  background-color: #b7bec7 !important;
  border-color: #b7bec7 !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 {
  position: relative;
  z-index: 1;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  box-shadow: inset 0px 0px 0px 3px #737476;
  color: #737476;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #737476 !important;
  background-color: transparent!important;
  box-shadow: inset 0px 0px 0px 3px #737476;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #737476 !important;
  border-color: #737476 !important;
}
.btn-primary-outline:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  content: '';
  transition: all 0.3s;
  background: #737476;
  z-index: -1;
}
.btn-primary-outline:hover {
  color: #ffffff !important;
}
.btn-primary-outline:hover:after {
  width: 100%;
}
.btn-secondary-outline {
  position: relative;
  z-index: 1;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  box-shadow: inset 0px 0px 0px 3px #ffe161;
  color: #ffe161;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffe161 !important;
  background-color: transparent!important;
  box-shadow: inset 0px 0px 0px 3px #ffe161;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffe161 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-secondary-outline:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  content: '';
  transition: all 0.3s;
  background: #ffe161;
  z-index: -1;
}
.btn-secondary-outline:hover {
  color: #000000 !important;
}
.btn-secondary-outline:hover:after {
  width: 100%;
}
.btn-info-outline {
  position: relative;
  z-index: 1;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  box-shadow: inset 0px 0px 0px 3px #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #47b5ed !important;
  background-color: transparent!important;
  box-shadow: inset 0px 0px 0px 3px #47b5ed;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info-outline:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  content: '';
  transition: all 0.3s;
  background: #47b5ed;
  z-index: -1;
}
.btn-info-outline:hover {
  color: #ffffff !important;
}
.btn-info-outline:hover:after {
  width: 100%;
}
.btn-success-outline {
  position: relative;
  z-index: 1;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  box-shadow: inset 0px 0px 0px 3px #fafafa;
  color: #fafafa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #fafafa !important;
  background-color: transparent!important;
  box-shadow: inset 0px 0px 0px 3px #fafafa;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #fafafa !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-success-outline:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  content: '';
  transition: all 0.3s;
  background: #fafafa;
  z-index: -1;
}
.btn-success-outline:hover {
  color: #000000 !important;
}
.btn-success-outline:hover:after {
  width: 100%;
}
.btn-warning-outline {
  position: relative;
  z-index: 1;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  box-shadow: inset 0px 0px 0px 3px #737476;
  color: #737476;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #737476 !important;
  background-color: transparent!important;
  box-shadow: inset 0px 0px 0px 3px #737476;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #737476 !important;
  border-color: #737476 !important;
}
.btn-warning-outline:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  content: '';
  transition: all 0.3s;
  background: #737476;
  z-index: -1;
}
.btn-warning-outline:hover {
  color: #ffffff !important;
}
.btn-warning-outline:hover:after {
  width: 100%;
}
.btn-danger-outline {
  position: relative;
  z-index: 1;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  box-shadow: inset 0px 0px 0px 3px #e8eaed;
  color: #e8eaed;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #e8eaed !important;
  background-color: transparent!important;
  box-shadow: inset 0px 0px 0px 3px #e8eaed;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #e8eaed !important;
  background-color: #e8eaed !important;
  border-color: #e8eaed !important;
}
.btn-danger-outline:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  content: '';
  transition: all 0.3s;
  background: #e8eaed;
  z-index: -1;
}
.btn-danger-outline:hover {
  color: #000000 !important;
}
.btn-danger-outline:hover:after {
  width: 100%;
}
.btn-black-outline {
  position: relative;
  z-index: 1;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  box-shadow: inset 0px 0px 0px 3px #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #232323 !important;
  background-color: transparent!important;
  box-shadow: inset 0px 0px 0px 3px #232323;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black-outline:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  content: '';
  transition: all 0.3s;
  background: #232323;
  z-index: -1;
}
.btn-black-outline:hover {
  color: #ffffff !important;
}
.btn-black-outline:hover:after {
  width: 100%;
}
.btn-white-outline {
  position: relative;
  z-index: 1;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  box-shadow: inset 0px 0px 0px 3px #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #fafafa !important;
  background-color: transparent!important;
  box-shadow: inset 0px 0px 0px 3px #fafafa;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #fafafa !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-white-outline:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  content: '';
  transition: all 0.3s;
  background: #fafafa;
  z-index: -1;
}
.btn-white-outline:hover {
  color: #000000 !important;
}
.btn-white-outline:hover:after {
  width: 100%;
}
.text-primary {
  color: #737476 !important;
}
.text-secondary {
  color: #ffe161 !important;
}
.text-success {
  color: #fafafa !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #737476 !important;
}
.text-danger {
  color: #e8eaed !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #737476 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ffe161 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #fafafa !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #47b5ed !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #737476 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #e8eaed !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  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]):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: #737476;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #737476;
}
.alert-danger {
  background-color: #e8eaed;
}
.mbr-gallery-filter li.active .btn {
  background-color: #737476;
  border-color: #737476;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #737476;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b4b5;
}
.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: #b3b4b5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Bai Jamjuree', 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: #737476 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Bai Jamjuree', 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: #737476;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #737476;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #737476;
}
.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: #737476;
  border-bottom-color: #737476;
}
.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: #737476 !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: #ffe161 !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='%23737476' %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;
}
.image-wrapper {
  color: #737476;
}
.animate__fadeInUp {
  animation-name: none;
  position: relative;
}
.animate__fadeInUp:before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: auto;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  content: '';
  background: white;
  animation: box1 1s forwards;
  animation-delay: 0.5s;
  z-index: 2;
}
.animate__fadeInUp:after {
  position: absolute;
  top: -1px;
  left: -1px;
  right: auto;
  width: 0%;
  height: calc(100% + 2px);
  content: '';
  background: currentColor;
  animation: box2 1s forwards;
  animation-delay: 0.5s;
  z-index: 3;
}
@keyframes box1 {
  to {
    width: 0%;
  }
}
@keyframes box2 {
  0% {
    width: 0%;
    left: 0;
    right: auto;
  }
  49% {
    width: calc(100% + 2px);
    left: 0;
    right: auto;
  }
  51% {
    width: calc(100% + 2px);
    left: auto;
    right: 0;
  }
  100% {
    width: 0%;
    left: auto;
    right: 0;
  }
}
.cid-siZGmhVvr8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .nav-item,
.cid-siZGmhVvr8 .nav-link,
.cid-siZGmhVvr8 .navbar-caption {
  font-weight: normal;
}
.cid-siZGmhVvr8 .nav-item:focus,
.cid-siZGmhVvr8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-siZGmhVvr8 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link {
    position: relative;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-siZGmhVvr8 .nav-item:hover .nav-link:before,
  .cid-siZGmhVvr8 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-siZGmhVvr8 .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-siZGmhVvr8 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-siZGmhVvr8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-siZGmhVvr8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siZGmhVvr8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-siZGmhVvr8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-siZGmhVvr8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-siZGmhVvr8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-siZGmhVvr8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-siZGmhVvr8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siZGmhVvr8 .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siZGmhVvr8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-siZGmhVvr8 .dropdown-item.active,
.cid-siZGmhVvr8 .dropdown-item:active {
  background-color: transparent;
}
.cid-siZGmhVvr8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siZGmhVvr8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siZGmhVvr8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siZGmhVvr8 .navbar-buttons {
  text-align: center;
}
.cid-siZGmhVvr8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-siZGmhVvr8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-siZGmhVvr8 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-siZGmhVvr8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 a.nav-link .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-siZGmhVvr8 a.nav-link:hover .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siZGmhVvr8 .navbar {
    height: 77px;
  }
  .cid-siZGmhVvr8 .navbar.opened {
    height: auto;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-siMknxOqWW {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-siMknxOqWW .carousel {
  width: 100%;
}
.cid-siMknxOqWW .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-siMknxOqWW .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-siMknxOqWW .mbr-overlay {
  z-index: 1;
}
.cid-siMknxOqWW .carousel-caption {
  bottom: 40px;
}
.cid-siMknxOqWW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-siMknxOqWW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-siMknxOqWW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-siMknxOqWW .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-siMknxOqWW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-siMknxOqWW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-siMknxOqWW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-siMknxOqWW .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-siMknxOqWW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siMknxOqWW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-siMknxOqWW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-siMknxOqWW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-siMknxOqWW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-siMknxOqWW .carousel-indicators li.active,
.cid-siMknxOqWW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-siMknxOqWW .carousel-indicators li::after,
.cid-siMknxOqWW .carousel-indicators li::before {
  content: none;
}
.cid-siMknxOqWW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-siMknxOqWW .carousel-indicators {
    display: none !important;
  }
}
.cid-sj4rS9eTff {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #737476;
}
.cid-sj4rS9eTff .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-sj4rS9eTff .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-sj4rS9eTff .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-sj4rS9eTff .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-sj4rS9eTff .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-sj4rS9eTff .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-sj4rS9eTff .inner-container {
    width: 100% !important;
  }
  .cid-sj4rS9eTff .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-sj4r882PEU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj4r882PEU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r882PEU p {
  color: #767676;
  text-align: left;
}
.cid-sj4r882PEU .card-wrapper {
  height: 100%;
}
.cid-sj4r882PEU .container-fluid {
  max-width: 1600px;
}
.cid-sj4r882PEU .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r882PEU img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r882PEU .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r882PEU .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r882PEU .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r882PEU .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r882PEU .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r882PEU img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r882PEU .card-title {
  color: #e6c63b;
}
.cid-sj4r7tnXfW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj4r7tnXfW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r7tnXfW p {
  color: #767676;
  text-align: left;
}
.cid-sj4r7tnXfW .card-wrapper {
  height: 100%;
}
.cid-sj4r7tnXfW .container-fluid {
  max-width: 1600px;
}
.cid-sj4r7tnXfW .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r7tnXfW img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r7tnXfW .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r7tnXfW .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r7tnXfW .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r7tnXfW .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r7tnXfW .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r7tnXfW img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r7tnXfW .card-title {
  color: #737476;
}
.cid-sj4r6v5xs4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj4r6v5xs4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r6v5xs4 p {
  color: #767676;
  text-align: left;
}
.cid-sj4r6v5xs4 .card-wrapper {
  height: 100%;
}
.cid-sj4r6v5xs4 .container-fluid {
  max-width: 1600px;
}
.cid-sj4r6v5xs4 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r6v5xs4 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r6v5xs4 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r6v5xs4 .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r6v5xs4 .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r6v5xs4 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r6v5xs4 .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r6v5xs4 img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r6v5xs4 .card-title {
  color: #ffffff;
}
.cid-sj4r5GWY0W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj4r5GWY0W h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r5GWY0W p {
  color: #767676;
  text-align: left;
}
.cid-sj4r5GWY0W .card-wrapper {
  height: 100%;
}
.cid-sj4r5GWY0W .container-fluid {
  max-width: 1600px;
}
.cid-sj4r5GWY0W .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r5GWY0W img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r5GWY0W .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r5GWY0W .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r5GWY0W .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r5GWY0W .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r5GWY0W .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r5GWY0W img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r5GWY0W .card-title {
  color: #e8eaed;
}
.cid-sj4r53E0Rq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj4r53E0Rq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r53E0Rq p {
  color: #767676;
  text-align: left;
}
.cid-sj4r53E0Rq .card-wrapper {
  height: 100%;
}
.cid-sj4r53E0Rq .container-fluid {
  max-width: 1600px;
}
.cid-sj4r53E0Rq .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r53E0Rq img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r53E0Rq .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r53E0Rq .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r53E0Rq .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r53E0Rq .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r53E0Rq .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r53E0Rq img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r53E0Rq .card-title {
  color: #737476;
}
.cid-sj4r4mE8Ud {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj4r4mE8Ud h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r4mE8Ud p {
  color: #767676;
  text-align: left;
}
.cid-sj4r4mE8Ud .card-wrapper {
  height: 100%;
}
.cid-sj4r4mE8Ud .container-fluid {
  max-width: 1600px;
}
.cid-sj4r4mE8Ud .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r4mE8Ud img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r4mE8Ud .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r4mE8Ud .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r4mE8Ud .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r4mE8Ud .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r4mE8Ud .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r4mE8Ud img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r4mE8Ud .card-title {
  color: #737476;
}
.cid-sj4r3Pa7Hv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj4r3Pa7Hv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r3Pa7Hv p {
  color: #767676;
  text-align: left;
}
.cid-sj4r3Pa7Hv .card-wrapper {
  height: 100%;
}
.cid-sj4r3Pa7Hv .container-fluid {
  max-width: 1600px;
}
.cid-sj4r3Pa7Hv .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r3Pa7Hv img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r3Pa7Hv .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r3Pa7Hv .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r3Pa7Hv .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r3Pa7Hv .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r3Pa7Hv .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r3Pa7Hv img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r3Pa7Hv .card-title {
  color: #ffffff;
}
.cid-sj4r2Sfdcl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj4r2Sfdcl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r2Sfdcl p {
  color: #767676;
  text-align: left;
}
.cid-sj4r2Sfdcl .card-wrapper {
  height: 100%;
}
.cid-sj4r2Sfdcl .container-fluid {
  max-width: 1600px;
}
.cid-sj4r2Sfdcl .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r2Sfdcl img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r2Sfdcl .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r2Sfdcl .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r2Sfdcl .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r2Sfdcl .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r2Sfdcl .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r2Sfdcl img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r2Sfdcl .card-title {
  color: #ffffff;
}
.cid-sj4r2ea0mU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj4r2ea0mU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r2ea0mU p {
  color: #767676;
  text-align: left;
}
.cid-sj4r2ea0mU .card-wrapper {
  height: 100%;
}
.cid-sj4r2ea0mU .container-fluid {
  max-width: 1600px;
}
.cid-sj4r2ea0mU .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r2ea0mU img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r2ea0mU .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r2ea0mU .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r2ea0mU .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r2ea0mU .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r2ea0mU .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r2ea0mU img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r2ea0mU .card-title {
  color: #737476;
}
.cid-sj4r1kMhHE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj4r1kMhHE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r1kMhHE p {
  color: #767676;
  text-align: left;
}
.cid-sj4r1kMhHE .card-wrapper {
  height: 100%;
}
.cid-sj4r1kMhHE .container-fluid {
  max-width: 1600px;
}
.cid-sj4r1kMhHE .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r1kMhHE img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r1kMhHE .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r1kMhHE .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r1kMhHE .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r1kMhHE .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r1kMhHE .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r1kMhHE img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r1kMhHE .card-title {
  color: #737476;
}
.cid-sj4r0U8NLs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj4r0U8NLs h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r0U8NLs p {
  color: #767676;
  text-align: left;
}
.cid-sj4r0U8NLs .card-wrapper {
  height: 100%;
}
.cid-sj4r0U8NLs .container-fluid {
  max-width: 1600px;
}
.cid-sj4r0U8NLs .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r0U8NLs img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r0U8NLs .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r0U8NLs .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r0U8NLs .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r0U8NLs .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r0U8NLs .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r0U8NLs img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r0U8NLs .card-title {
  color: #ffffff;
}
.cid-sj4r0nn8Ja {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj4r0nn8Ja h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj4r0nn8Ja p {
  color: #767676;
  text-align: left;
}
.cid-sj4r0nn8Ja .card-wrapper {
  height: 100%;
}
.cid-sj4r0nn8Ja .container-fluid {
  max-width: 1600px;
}
.cid-sj4r0nn8Ja .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj4r0nn8Ja img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj4r0nn8Ja .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj4r0nn8Ja .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj4r0nn8Ja .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj4r0nn8Ja .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj4r0nn8Ja .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj4r0nn8Ja img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj4r0nn8Ja .card-title {
  color: #ffffff;
}
.cid-sduojTnXgi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sduojTnXgi .row-links {
  justify-content: center;
}
.cid-sduojTnXgi .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sduojTnXgi .wrapper {
  display: flex;
}
.cid-sduojTnXgi .container {
  max-width: 1700px;
}
.cid-sduojTnXgi img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sduojTnXgi img {
  filter: invert(1);
}
.cid-sduojTnXgi .row-copirayt {
  min-width: 300px;
}
.cid-sduojTnXgi .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sduojTnXgi .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sduojTnXgi .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sduojTnXgi .row-links,
.cid-sduojTnXgi .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sduojTnXgi .foot-menu {
  width: fit-content;
}
.cid-sduojTnXgi .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sduojTnXgi .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sduojTnXgi .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sduojTnXgi .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sduojTnXgi .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sduojTnXgi .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sduojTnXgi .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sduojTnXgi .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sduojTnXgi .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sduojTnXgi .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sduojTnXgi .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sduojTnXgi .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sduojTnXgi .media-container-row {
    justify-content: center;
  }
  .cid-sduojTnXgi .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sduojTnXgi .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sduojTnXgi .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sduojTnXgi .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3kypKINg {
  background-color: #e8eaed;
}
.cid-sj3kypKINg .container {
  max-width: 1500px;
}
.cid-sj3kypKINg .row {
  background: #e8eaed;
}
.cid-sj3kypKINg .img-col {
  padding: 0;
}
.cid-sj3kypKINg .title-col {
  padding: 4rem 8rem;
}
.cid-sj3kypKINg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sj3kypKINg h2 {
  padding: 0;
  margin: 0;
}
.cid-sj3kypKINg .text-wrap {
  margin: auto;
}
.cid-sj3kypKINg .mbr-text {
  color: #737476;
  text-align: justify;
}
@media (max-width: 1200px) {
  .cid-sj3kypKINg .row {
    margin: 2rem;
  }
  .cid-sj3kypKINg .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sj3kypKINg .row {
    margin: 0rem;
  }
  .cid-sj3kypKINg .title-col {
    padding: 2rem 1rem;
  }
}
.cid-sj3kypKINg H2 {
  color: #737476;
}
.cid-siMmfzQKnZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-siMmfzQKnZ .row-links {
  justify-content: center;
}
.cid-siMmfzQKnZ .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-siMmfzQKnZ .wrapper {
  display: flex;
}
.cid-siMmfzQKnZ .container {
  max-width: 1700px;
}
.cid-siMmfzQKnZ img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-siMmfzQKnZ img {
  filter: invert(1);
}
.cid-siMmfzQKnZ .row-copirayt {
  min-width: 300px;
}
.cid-siMmfzQKnZ .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-siMmfzQKnZ .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-siMmfzQKnZ .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-siMmfzQKnZ .row-links,
.cid-siMmfzQKnZ .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-siMmfzQKnZ .foot-menu {
  width: fit-content;
}
.cid-siMmfzQKnZ .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-siMmfzQKnZ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-siMmfzQKnZ .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-siMmfzQKnZ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-siMmfzQKnZ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-siMmfzQKnZ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-siMmfzQKnZ .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-siMmfzQKnZ .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-siMmfzQKnZ .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-siMmfzQKnZ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-siMmfzQKnZ .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-siMmfzQKnZ .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-siMmfzQKnZ .media-container-row {
    justify-content: center;
  }
  .cid-siMmfzQKnZ .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-siMmfzQKnZ .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-siMmfzQKnZ .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-siMmfzQKnZ .media-container-row .mbr-text {
  color: #353535;
}
.cid-siZGmhVvr8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .nav-item,
.cid-siZGmhVvr8 .nav-link,
.cid-siZGmhVvr8 .navbar-caption {
  font-weight: normal;
}
.cid-siZGmhVvr8 .nav-item:focus,
.cid-siZGmhVvr8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-siZGmhVvr8 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link {
    position: relative;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-siZGmhVvr8 .nav-item:hover .nav-link:before,
  .cid-siZGmhVvr8 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-siZGmhVvr8 .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-siZGmhVvr8 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-siZGmhVvr8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-siZGmhVvr8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siZGmhVvr8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-siZGmhVvr8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-siZGmhVvr8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-siZGmhVvr8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-siZGmhVvr8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-siZGmhVvr8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siZGmhVvr8 .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siZGmhVvr8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-siZGmhVvr8 .dropdown-item.active,
.cid-siZGmhVvr8 .dropdown-item:active {
  background-color: transparent;
}
.cid-siZGmhVvr8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siZGmhVvr8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siZGmhVvr8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siZGmhVvr8 .navbar-buttons {
  text-align: center;
}
.cid-siZGmhVvr8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-siZGmhVvr8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-siZGmhVvr8 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-siZGmhVvr8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 a.nav-link .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-siZGmhVvr8 a.nav-link:hover .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siZGmhVvr8 .navbar {
    height: 77px;
  }
  .cid-siZGmhVvr8 .navbar.opened {
    height: auto;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj5genqbPh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj5genqbPh h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5genqbPh p {
  color: #767676;
  text-align: left;
}
.cid-sj5genqbPh .card-wrapper {
  height: 100%;
}
.cid-sj5genqbPh .container-fluid {
  max-width: 1600px;
}
.cid-sj5genqbPh .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5genqbPh img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5genqbPh .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5genqbPh .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5genqbPh .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5genqbPh .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5genqbPh .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5genqbPh img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5genqbPh .card-title {
  color: #e6c63b;
}
.cid-sj5gf1nDIE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj5gf1nDIE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5gf1nDIE p {
  color: #767676;
  text-align: left;
}
.cid-sj5gf1nDIE .card-wrapper {
  height: 100%;
}
.cid-sj5gf1nDIE .container-fluid {
  max-width: 1600px;
}
.cid-sj5gf1nDIE .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5gf1nDIE img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5gf1nDIE .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5gf1nDIE .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5gf1nDIE .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5gf1nDIE .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5gf1nDIE .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5gf1nDIE img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5gf1nDIE .card-title {
  color: #737476;
}
.cid-sj5gfAx1Ls {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj5gfAx1Ls h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5gfAx1Ls p {
  color: #767676;
  text-align: left;
}
.cid-sj5gfAx1Ls .card-wrapper {
  height: 100%;
}
.cid-sj5gfAx1Ls .container-fluid {
  max-width: 1600px;
}
.cid-sj5gfAx1Ls .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5gfAx1Ls img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5gfAx1Ls .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5gfAx1Ls .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5gfAx1Ls .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5gfAx1Ls .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5gfAx1Ls .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5gfAx1Ls img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5gfAx1Ls .card-title {
  color: #ffffff;
}
.cid-sj5gg70ZaW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj5gg70ZaW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5gg70ZaW p {
  color: #767676;
  text-align: left;
}
.cid-sj5gg70ZaW .card-wrapper {
  height: 100%;
}
.cid-sj5gg70ZaW .container-fluid {
  max-width: 1600px;
}
.cid-sj5gg70ZaW .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5gg70ZaW img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5gg70ZaW .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5gg70ZaW .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5gg70ZaW .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5gg70ZaW .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5gg70ZaW .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5gg70ZaW img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5gg70ZaW .card-title {
  color: #e8eaed;
}
.cid-sj5ggSPk1H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj5ggSPk1H h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5ggSPk1H p {
  color: #767676;
  text-align: left;
}
.cid-sj5ggSPk1H .card-wrapper {
  height: 100%;
}
.cid-sj5ggSPk1H .container-fluid {
  max-width: 1600px;
}
.cid-sj5ggSPk1H .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5ggSPk1H img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5ggSPk1H .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5ggSPk1H .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5ggSPk1H .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5ggSPk1H .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5ggSPk1H .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5ggSPk1H img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5ggSPk1H .card-title {
  color: #737476;
}
.cid-sj5ghs95Sl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj5ghs95Sl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5ghs95Sl p {
  color: #767676;
  text-align: left;
}
.cid-sj5ghs95Sl .card-wrapper {
  height: 100%;
}
.cid-sj5ghs95Sl .container-fluid {
  max-width: 1600px;
}
.cid-sj5ghs95Sl .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5ghs95Sl img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5ghs95Sl .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5ghs95Sl .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5ghs95Sl .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5ghs95Sl .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5ghs95Sl .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5ghs95Sl img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5ghs95Sl .card-title {
  color: #737476;
}
.cid-sj5gi3Z976 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj5gi3Z976 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5gi3Z976 p {
  color: #767676;
  text-align: left;
}
.cid-sj5gi3Z976 .card-wrapper {
  height: 100%;
}
.cid-sj5gi3Z976 .container-fluid {
  max-width: 1600px;
}
.cid-sj5gi3Z976 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5gi3Z976 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5gi3Z976 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5gi3Z976 .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5gi3Z976 .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5gi3Z976 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5gi3Z976 .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5gi3Z976 img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5gi3Z976 .card-title {
  color: #ffffff;
}
.cid-sj5giGXkMk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj5giGXkMk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5giGXkMk p {
  color: #767676;
  text-align: left;
}
.cid-sj5giGXkMk .card-wrapper {
  height: 100%;
}
.cid-sj5giGXkMk .container-fluid {
  max-width: 1600px;
}
.cid-sj5giGXkMk .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5giGXkMk img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5giGXkMk .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5giGXkMk .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5giGXkMk .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5giGXkMk .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5giGXkMk .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5giGXkMk img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5giGXkMk .card-title {
  color: #ffffff;
}
.cid-sj5gjRnHGZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj5gjRnHGZ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5gjRnHGZ p {
  color: #767676;
  text-align: left;
}
.cid-sj5gjRnHGZ .card-wrapper {
  height: 100%;
}
.cid-sj5gjRnHGZ .container-fluid {
  max-width: 1600px;
}
.cid-sj5gjRnHGZ .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5gjRnHGZ img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5gjRnHGZ .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5gjRnHGZ .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5gjRnHGZ .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5gjRnHGZ .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5gjRnHGZ .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5gjRnHGZ img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5gjRnHGZ .card-title {
  color: #737476;
}
.cid-sj5gl2tYbc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-sj5gl2tYbc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5gl2tYbc p {
  color: #767676;
  text-align: left;
}
.cid-sj5gl2tYbc .card-wrapper {
  height: 100%;
}
.cid-sj5gl2tYbc .container-fluid {
  max-width: 1600px;
}
.cid-sj5gl2tYbc .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5gl2tYbc img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5gl2tYbc .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5gl2tYbc .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5gl2tYbc .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5gl2tYbc .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5gl2tYbc .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5gl2tYbc img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5gl2tYbc .card-title {
  color: #737476;
}
.cid-sj5glSBBdb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj5glSBBdb h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5glSBBdb p {
  color: #767676;
  text-align: left;
}
.cid-sj5glSBBdb .card-wrapper {
  height: 100%;
}
.cid-sj5glSBBdb .container-fluid {
  max-width: 1600px;
}
.cid-sj5glSBBdb .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5glSBBdb img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5glSBBdb .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5glSBBdb .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5glSBBdb .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5glSBBdb .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5glSBBdb .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5glSBBdb img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5glSBBdb .card-title {
  color: #ffffff;
}
.cid-sj5gmEulHy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj5gmEulHy h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sj5gmEulHy p {
  color: #767676;
  text-align: left;
}
.cid-sj5gmEulHy .card-wrapper {
  height: 100%;
}
.cid-sj5gmEulHy .container-fluid {
  max-width: 1600px;
}
.cid-sj5gmEulHy .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sj5gmEulHy img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sj5gmEulHy .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #ffe161;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sj5gmEulHy .card:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-sj5gmEulHy .card:hover .mbr-iconfont {
  opacity: 0;
}
.cid-sj5gmEulHy .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sj5gmEulHy .mbr-iconfont {
    opacity: 0;
  }
  .cid-sj5gmEulHy img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
  }
}
.cid-sj5gmEulHy .card-title {
  color: #ffffff;
}
.cid-siMp7jCeDM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-siMp7jCeDM .row-links {
  justify-content: center;
}
.cid-siMp7jCeDM .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-siMp7jCeDM .wrapper {
  display: flex;
}
.cid-siMp7jCeDM .container {
  max-width: 1700px;
}
.cid-siMp7jCeDM img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-siMp7jCeDM img {
  filter: invert(1);
}
.cid-siMp7jCeDM .row-copirayt {
  min-width: 300px;
}
.cid-siMp7jCeDM .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-siMp7jCeDM .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-siMp7jCeDM .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-siMp7jCeDM .row-links,
.cid-siMp7jCeDM .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-siMp7jCeDM .foot-menu {
  width: fit-content;
}
.cid-siMp7jCeDM .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-siMp7jCeDM .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-siMp7jCeDM .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-siMp7jCeDM .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-siMp7jCeDM .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-siMp7jCeDM .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-siMp7jCeDM .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-siMp7jCeDM .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-siMp7jCeDM .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-siMp7jCeDM .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-siMp7jCeDM .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-siMp7jCeDM .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-siMp7jCeDM .media-container-row {
    justify-content: center;
  }
  .cid-siMp7jCeDM .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-siMp7jCeDM .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-siMp7jCeDM .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-siMp7jCeDM .media-container-row .mbr-text {
  color: #353535;
}
.cid-siZGmhVvr8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .nav-item,
.cid-siZGmhVvr8 .nav-link,
.cid-siZGmhVvr8 .navbar-caption {
  font-weight: normal;
}
.cid-siZGmhVvr8 .nav-item:focus,
.cid-siZGmhVvr8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-siZGmhVvr8 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link {
    position: relative;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-siZGmhVvr8 .nav-item:hover .nav-link:before,
  .cid-siZGmhVvr8 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-siZGmhVvr8 .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-siZGmhVvr8 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-siZGmhVvr8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-siZGmhVvr8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siZGmhVvr8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-siZGmhVvr8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-siZGmhVvr8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-siZGmhVvr8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-siZGmhVvr8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-siZGmhVvr8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siZGmhVvr8 .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siZGmhVvr8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-siZGmhVvr8 .dropdown-item.active,
.cid-siZGmhVvr8 .dropdown-item:active {
  background-color: transparent;
}
.cid-siZGmhVvr8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siZGmhVvr8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siZGmhVvr8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siZGmhVvr8 .navbar-buttons {
  text-align: center;
}
.cid-siZGmhVvr8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-siZGmhVvr8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-siZGmhVvr8 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-siZGmhVvr8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 a.nav-link .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-siZGmhVvr8 a.nav-link:hover .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siZGmhVvr8 .navbar {
    height: 77px;
  }
  .cid-siZGmhVvr8 .navbar.opened {
    height: auto;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-siMxLoraGY {
  padding-top: 9rem;
  padding-bottom: 1rem;
  background-color: #737476;
}
.cid-siMxLoraGY .wrapper {
  display: flex;
  flex-direction: column;
}
.cid-siMxLoraGY .animate__fadeInUp:before {
  background: #737476;
}
.cid-siMxLoraGY .mbr-section-title {
  color: #ffffff;
}
.cid-siMxLoraGY .mbr-text,
.cid-siMxLoraGY .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-siMxSome1J {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8eaed;
}
.cid-siMxSome1J .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-siMxSome1J input,
.cid-siMxSome1J textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 0;
  min-height: 3rem;
  padding: 0rem!important;
  font-size: 1rem;
}
.cid-siMxSome1J input:focus,
.cid-siMxSome1J textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-siMxSome1J .form-control,
.cid-siMxSome1J .field-input {
  padding: 0.5rem;
  background-color: #e9e9e9;
  border-color: #cccccc;
  color: #101422;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-siMxSome1J .form-control:hover,
.cid-siMxSome1J .field-input:hover,
.cid-siMxSome1J .form-control:focus,
.cid-siMxSome1J .field-input:focus {
  background-color: #737476;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-siMxSome1J input::-webkit-input-placeholder,
.cid-siMxSome1J textarea::-webkit-input-placeholder {
  color: #101422;
}
.cid-siMxSome1J input:-moz-placeholder,
.cid-siMxSome1J textarea:-moz-placeholder {
  color: #101422;
}
.cid-siMxSome1J .jq-selectbox li,
.cid-siMxSome1J .jq-selectbox li {
  background-color: #e9e9e9;
  color: #000000;
}
.cid-siMxSome1J .jq-selectbox li:hover,
.cid-siMxSome1J .jq-selectbox li.selected {
  background-color: #737476;
  color: #ffffff;
}
.cid-siMxSome1J .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #e9e9e9;
}
.cid-siMxSome1J .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #737476;
}
.cid-siMxSome1J img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-siMxSome1J .mbr-form {
  max-width: 450px;
}
.cid-siMxSome1J textarea {
  min-height: 150px;
}
.cid-siMxSome1J .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-siMxSome1J .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-siMxSome1J .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-siMxSome1J H2 {
  text-align: justify;
  color: #0353b8;
}
.cid-siMuNA5ezM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-siMuNA5ezM .row-links {
  justify-content: center;
}
.cid-siMuNA5ezM .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-siMuNA5ezM .wrapper {
  display: flex;
}
.cid-siMuNA5ezM .container {
  max-width: 1700px;
}
.cid-siMuNA5ezM img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-siMuNA5ezM img {
  filter: invert(1);
}
.cid-siMuNA5ezM .row-copirayt {
  min-width: 300px;
}
.cid-siMuNA5ezM .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-siMuNA5ezM .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-siMuNA5ezM .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-siMuNA5ezM .row-links,
.cid-siMuNA5ezM .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-siMuNA5ezM .foot-menu {
  width: fit-content;
}
.cid-siMuNA5ezM .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-siMuNA5ezM .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-siMuNA5ezM .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-siMuNA5ezM .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-siMuNA5ezM .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-siMuNA5ezM .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-siMuNA5ezM .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-siMuNA5ezM .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-siMuNA5ezM .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-siMuNA5ezM .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-siMuNA5ezM .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-siMuNA5ezM .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-siMuNA5ezM .media-container-row {
    justify-content: center;
  }
  .cid-siMuNA5ezM .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-siMuNA5ezM .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-siMuNA5ezM .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-siMuNA5ezM .media-container-row .mbr-text {
  color: #353535;
}
.cid-siZGmhVvr8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .nav-item,
.cid-siZGmhVvr8 .nav-link,
.cid-siZGmhVvr8 .navbar-caption {
  font-weight: normal;
}
.cid-siZGmhVvr8 .nav-item:focus,
.cid-siZGmhVvr8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-siZGmhVvr8 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link {
    position: relative;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-siZGmhVvr8 .nav-item:hover .nav-link:before,
  .cid-siZGmhVvr8 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-siZGmhVvr8 .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-siZGmhVvr8 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-siZGmhVvr8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-siZGmhVvr8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siZGmhVvr8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-siZGmhVvr8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-siZGmhVvr8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-siZGmhVvr8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-siZGmhVvr8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-siZGmhVvr8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siZGmhVvr8 .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siZGmhVvr8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-siZGmhVvr8 .dropdown-item.active,
.cid-siZGmhVvr8 .dropdown-item:active {
  background-color: transparent;
}
.cid-siZGmhVvr8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siZGmhVvr8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siZGmhVvr8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siZGmhVvr8 .navbar-buttons {
  text-align: center;
}
.cid-siZGmhVvr8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-siZGmhVvr8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-siZGmhVvr8 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-siZGmhVvr8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 a.nav-link .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-siZGmhVvr8 a.nav-link:hover .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siZGmhVvr8 .navbar {
    height: 77px;
  }
  .cid-siZGmhVvr8 .navbar.opened {
    height: auto;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-siMB8lX4Y6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e8eaed;
}
.cid-siMB8lX4Y6 .mbr-media {
  position: relative;
}
.cid-siMB8lX4Y6 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-siMB8lX4Y6 .animate__fadeInUp:before {
  background: #e8eaed;
}
.cid-siMB8lX4Y6 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-siMB8lX4Y6 .mbr-media span {
  font-size: 4rem;
  transition: all 0.3s;
  color: #737476;
  display: block;
}
.cid-siMB8lX4Y6 .mbr-media span:hover {
  color: #ffe161;
  transform: scale(1.1);
}
.cid-siMB8lX4Y6 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-siMB8lX4Y6 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-siMB8lX4Y6 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-siMB8lX4Y6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-siMB8lX4Y6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-siMB8lX4Y6 .mbr-section-title {
  color: #161734;
}
.cid-siMBzzzKrm {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-siMBzzzKrm .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-siMBzzzKrm .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-siMBzzzKrm .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-siMBzzzKrm .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-siMBzzzKrm .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-siMBzzzKrm .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-siMBzzzKrm .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-siMBzzzKrm .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-siMBzzzKrm .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-siMBzzzKrm .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-siMBzzzKrm .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-siMCmZtGtS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-siMCmZtGtS .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-siMCmZtGtS .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-siMCmZtGtS .list-img {
  width: 100px;
}
.cid-siMCmZtGtS .ico2 {
  color: #0353b8;
  font-size: 1.2rem;
}
.cid-siMCmZtGtS .btn {
  margin: 0px !important;
}
.cid-siMCmZtGtS .text-box {
  padding: 1rem;
}
.cid-siMCmZtGtS .text-box p {
  margin: 0;
}
.cid-siMCmZtGtS .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-siMCmZtGtS .ico-box p {
  margin: 0;
}
.cid-siMCmZtGtS .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-siMCmZtGtS .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-siMCmZtGtS .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-siMCmZtGtS .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-siMCmZtGtS .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-siMCmZtGtS .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-siMCmZtGtS .carousel-indicators li {
  display: inline-block;
}
.cid-siMCmZtGtS .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-siMCmZtGtS .carousel-indicators li.active {
  border: 0px;
}
.cid-siMCmZtGtS .li1,
.cid-siMCmZtGtS .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/yesilyurt-fotograf-albumu-1-1920x1080.jpg");
}
.cid-siMCmZtGtS .li2,
.cid-siMCmZtGtS .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/yesilyurt-fotograf-albumu-2-1920x1080.jpg");
}
.cid-siMCmZtGtS .li3,
.cid-siMCmZtGtS .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/yesilyurt-fotograf-albumu-4-1920x1080.jpg");
}
.cid-siMCmZtGtS .li4,
.cid-siMCmZtGtS .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/yesilyurt-fotograf-albumu-5-1920x1080.jpg");
}
.cid-siMCmZtGtS .li5,
.cid-siMCmZtGtS .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/yesilyurt-fotograf-albumu-3-1920x1080.jpg");
}
.cid-siMCmZtGtS .li6,
.cid-siMCmZtGtS .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/yesilyurt-fotograf-albumu-6-1920x1080.jpg");
}
@media (max-width: 992px) {
  .cid-siMCmZtGtS .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-siMCmZtGtS .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-siMCmZtGtS .card-title2 {
  color: #149dcc;
}
.cid-siMCmZtGtS .sq {
  color: #767676;
}
.cid-siMCmZtGtS .item {
  color: #767676;
}
.cid-siMyFF2kWf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-siMyFF2kWf .row-links {
  justify-content: center;
}
.cid-siMyFF2kWf .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-siMyFF2kWf .wrapper {
  display: flex;
}
.cid-siMyFF2kWf .container {
  max-width: 1700px;
}
.cid-siMyFF2kWf img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-siMyFF2kWf img {
  filter: invert(1);
}
.cid-siMyFF2kWf .row-copirayt {
  min-width: 300px;
}
.cid-siMyFF2kWf .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-siMyFF2kWf .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-siMyFF2kWf .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-siMyFF2kWf .row-links,
.cid-siMyFF2kWf .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-siMyFF2kWf .foot-menu {
  width: fit-content;
}
.cid-siMyFF2kWf .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-siMyFF2kWf .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-siMyFF2kWf .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-siMyFF2kWf .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-siMyFF2kWf .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-siMyFF2kWf .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-siMyFF2kWf .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-siMyFF2kWf .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-siMyFF2kWf .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-siMyFF2kWf .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-siMyFF2kWf .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-siMyFF2kWf .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-siMyFF2kWf .media-container-row {
    justify-content: center;
  }
  .cid-siMyFF2kWf .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-siMyFF2kWf .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-siMyFF2kWf .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-siMyFF2kWf .media-container-row .mbr-text {
  color: #353535;
}
.cid-siZGmhVvr8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .nav-item,
.cid-siZGmhVvr8 .nav-link,
.cid-siZGmhVvr8 .navbar-caption {
  font-weight: normal;
}
.cid-siZGmhVvr8 .nav-item:focus,
.cid-siZGmhVvr8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-siZGmhVvr8 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link {
    position: relative;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-siZGmhVvr8 .nav-item:hover .nav-link:before,
  .cid-siZGmhVvr8 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-siZGmhVvr8 .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-siZGmhVvr8 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-siZGmhVvr8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-siZGmhVvr8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siZGmhVvr8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-siZGmhVvr8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-siZGmhVvr8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-siZGmhVvr8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-siZGmhVvr8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-siZGmhVvr8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siZGmhVvr8 .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siZGmhVvr8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-siZGmhVvr8 .dropdown-item.active,
.cid-siZGmhVvr8 .dropdown-item:active {
  background-color: transparent;
}
.cid-siZGmhVvr8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siZGmhVvr8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siZGmhVvr8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siZGmhVvr8 .navbar-buttons {
  text-align: center;
}
.cid-siZGmhVvr8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-siZGmhVvr8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-siZGmhVvr8 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-siZGmhVvr8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 a.nav-link .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-siZGmhVvr8 a.nav-link:hover .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siZGmhVvr8 .navbar {
    height: 77px;
  }
  .cid-siZGmhVvr8 .navbar.opened {
    height: auto;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-siMCGtMrDf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e8eaed;
}
.cid-siMCGtMrDf .mbr-media {
  position: relative;
}
.cid-siMCGtMrDf .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-siMCGtMrDf .animate__fadeInUp:before {
  background: #e8eaed;
}
.cid-siMCGtMrDf .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-siMCGtMrDf .mbr-media span {
  font-size: 4rem;
  transition: all 0.3s;
  color: #737476;
  display: block;
}
.cid-siMCGtMrDf .mbr-media span:hover {
  color: #ffe161;
  transform: scale(1.1);
}
.cid-siMCGtMrDf .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-siMCGtMrDf .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-siMCGtMrDf .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-siMCGtMrDf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-siMCGtMrDf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-siMCGtMrDf .mbr-section-title {
  color: #161734;
}
.cid-siMCGucHCO {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-siMCGucHCO .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-siMCGucHCO .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-siMCGucHCO .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-siMCGucHCO .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-siMCGucHCO .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-siMCGucHCO .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-siMCGucHCO .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-siMCGucHCO .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-siMCGucHCO .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-siMCGucHCO .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-siMCGucHCO .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-siMCGuuXey {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-siMCGuuXey .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-siMCGuuXey .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-siMCGuuXey .list-img {
  width: 100px;
}
.cid-siMCGuuXey .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-siMCGuuXey .btn {
  margin: 0px !important;
}
.cid-siMCGuuXey .text-box {
  padding: 1rem;
}
.cid-siMCGuuXey .text-box p {
  margin: 0;
}
.cid-siMCGuuXey .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-siMCGuuXey .ico-box p {
  margin: 0;
}
.cid-siMCGuuXey .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-siMCGuuXey .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-siMCGuuXey .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-siMCGuuXey .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-siMCGuuXey .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-siMCGuuXey .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-siMCGuuXey .carousel-indicators li {
  display: inline-block;
}
.cid-siMCGuuXey .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-siMCGuuXey .carousel-indicators li.active {
  border: 0px;
}
.cid-siMCGuuXey .li1,
.cid-siMCGuuXey .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/cayyolu-1-1920x960.jpg");
}
.cid-siMCGuuXey .li2,
.cid-siMCGuuXey .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/cayyolu1-2000x1000.jpg");
}
.cid-siMCGuuXey .li3,
.cid-siMCGuuXey .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/cayyolu2-2000x1000.jpg");
}
.cid-siMCGuuXey .li4,
.cid-siMCGuuXey .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/cayyolu3-2000x1000.jpg");
}
.cid-siMCGuuXey .li5,
.cid-siMCGuuXey .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/cayyolu5-2000x1000.jpg");
}
.cid-siMCGuuXey .li6,
.cid-siMCGuuXey .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/yesilyurt-fotograf-albumu-6-1920x1080.jpg");
}
@media (max-width: 992px) {
  .cid-siMCGuuXey .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-siMCGuuXey .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-siMCGuuXey .card-title2 {
  color: #149dcc;
}
.cid-siMCGuuXey .sq {
  color: #767676;
}
.cid-siMCGuuXey .item {
  color: #767676;
}
.cid-siMCGv5B12 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-siMCGv5B12 .row-links {
  justify-content: center;
}
.cid-siMCGv5B12 .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-siMCGv5B12 .wrapper {
  display: flex;
}
.cid-siMCGv5B12 .container {
  max-width: 1700px;
}
.cid-siMCGv5B12 img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-siMCGv5B12 img {
  filter: invert(1);
}
.cid-siMCGv5B12 .row-copirayt {
  min-width: 300px;
}
.cid-siMCGv5B12 .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-siMCGv5B12 .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-siMCGv5B12 .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-siMCGv5B12 .row-links,
.cid-siMCGv5B12 .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-siMCGv5B12 .foot-menu {
  width: fit-content;
}
.cid-siMCGv5B12 .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-siMCGv5B12 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-siMCGv5B12 .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-siMCGv5B12 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-siMCGv5B12 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-siMCGv5B12 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-siMCGv5B12 .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-siMCGv5B12 .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-siMCGv5B12 .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-siMCGv5B12 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-siMCGv5B12 .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-siMCGv5B12 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-siMCGv5B12 .media-container-row {
    justify-content: center;
  }
  .cid-siMCGv5B12 .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-siMCGv5B12 .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-siMCGv5B12 .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-siMCGv5B12 .media-container-row .mbr-text {
  color: #353535;
}
.cid-siZGmhVvr8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .nav-item,
.cid-siZGmhVvr8 .nav-link,
.cid-siZGmhVvr8 .navbar-caption {
  font-weight: normal;
}
.cid-siZGmhVvr8 .nav-item:focus,
.cid-siZGmhVvr8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-siZGmhVvr8 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link {
    position: relative;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-siZGmhVvr8 .nav-item:hover .nav-link:before,
  .cid-siZGmhVvr8 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-siZGmhVvr8 .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-siZGmhVvr8 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-siZGmhVvr8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-siZGmhVvr8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siZGmhVvr8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-siZGmhVvr8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-siZGmhVvr8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-siZGmhVvr8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-siZGmhVvr8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-siZGmhVvr8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siZGmhVvr8 .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siZGmhVvr8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-siZGmhVvr8 .dropdown-item.active,
.cid-siZGmhVvr8 .dropdown-item:active {
  background-color: transparent;
}
.cid-siZGmhVvr8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siZGmhVvr8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siZGmhVvr8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siZGmhVvr8 .navbar-buttons {
  text-align: center;
}
.cid-siZGmhVvr8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-siZGmhVvr8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-siZGmhVvr8 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-siZGmhVvr8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 a.nav-link .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-siZGmhVvr8 a.nav-link:hover .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siZGmhVvr8 .navbar {
    height: 77px;
  }
  .cid-siZGmhVvr8 .navbar.opened {
    height: auto;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3xdje1fv {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3xdje1fv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3xdje1fv .row {
  flex-direction: row-reverse;
}
.cid-sj3xdje1fv img {
  width: 100%;
}
.cid-siMEigIEoF {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-siMEigIEoF .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-siMEigIEoF .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-siMEigIEoF .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-siMEigIEoF .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-siMEigIEoF .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-siMEigIEoF .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-siMEigIEoF .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-siMEigIEoF .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-siMEigIEoF .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-siMEigIEoF .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-siMEigIEoF .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-siMEih1E6c {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-siMEih1E6c .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-siMEih1E6c .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-siMEih1E6c .list-img {
  width: 100px;
}
.cid-siMEih1E6c .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-siMEih1E6c .btn {
  margin: 0px !important;
}
.cid-siMEih1E6c .text-box {
  padding: 1rem;
}
.cid-siMEih1E6c .text-box p {
  margin: 0;
}
.cid-siMEih1E6c .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-siMEih1E6c .ico-box p {
  margin: 0;
}
.cid-siMEih1E6c .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-siMEih1E6c .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-siMEih1E6c .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-siMEih1E6c .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-siMEih1E6c .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-siMEih1E6c .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-siMEih1E6c .carousel-indicators li {
  display: inline-block;
}
.cid-siMEih1E6c .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-siMEih1E6c .carousel-indicators li.active {
  border: 0px;
}
.cid-siMEih1E6c .li1,
.cid-siMEih1E6c .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/ca1-1-1620x1080.jpg");
}
.cid-siMEih1E6c .li2,
.cid-siMEih1E6c .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/ca2-1620x1080.jpg");
}
.cid-siMEih1E6c .li3,
.cid-siMEih1E6c .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/ca3-1620x1080.jpg");
}
.cid-siMEih1E6c .li4,
.cid-siMEih1E6c .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/ca4-1620x1080.jpg");
}
.cid-siMEih1E6c .li5,
.cid-siMEih1E6c .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/as-1620x1080.png");
}
.cid-siMEih1E6c .li6,
.cid-siMEih1E6c .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/yesilyurt-fotograf-albumu-6-1920x1080.jpg");
}
@media (max-width: 992px) {
  .cid-siMEih1E6c .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-siMEih1E6c .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-siMEih1E6c .card-title2 {
  color: #149dcc;
}
.cid-siMEih1E6c .sq {
  color: #767676;
}
.cid-siMEih1E6c .item {
  color: #767676;
}
.cid-siMEihzx3x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-siMEihzx3x .row-links {
  justify-content: center;
}
.cid-siMEihzx3x .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-siMEihzx3x .wrapper {
  display: flex;
}
.cid-siMEihzx3x .container {
  max-width: 1700px;
}
.cid-siMEihzx3x img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-siMEihzx3x img {
  filter: invert(1);
}
.cid-siMEihzx3x .row-copirayt {
  min-width: 300px;
}
.cid-siMEihzx3x .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-siMEihzx3x .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-siMEihzx3x .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-siMEihzx3x .row-links,
.cid-siMEihzx3x .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-siMEihzx3x .foot-menu {
  width: fit-content;
}
.cid-siMEihzx3x .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-siMEihzx3x .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-siMEihzx3x .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-siMEihzx3x .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-siMEihzx3x .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-siMEihzx3x .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-siMEihzx3x .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-siMEihzx3x .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-siMEihzx3x .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-siMEihzx3x .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-siMEihzx3x .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-siMEihzx3x .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-siMEihzx3x .media-container-row {
    justify-content: center;
  }
  .cid-siMEihzx3x .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-siMEihzx3x .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-siMEihzx3x .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-siMEihzx3x .media-container-row .mbr-text {
  color: #353535;
}
.cid-siZGmhVvr8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .nav-item,
.cid-siZGmhVvr8 .nav-link,
.cid-siZGmhVvr8 .navbar-caption {
  font-weight: normal;
}
.cid-siZGmhVvr8 .nav-item:focus,
.cid-siZGmhVvr8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-siZGmhVvr8 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link {
    position: relative;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-siZGmhVvr8 .nav-item:hover .nav-link:before,
  .cid-siZGmhVvr8 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-siZGmhVvr8 .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-siZGmhVvr8 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-siZGmhVvr8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-siZGmhVvr8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siZGmhVvr8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-siZGmhVvr8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-siZGmhVvr8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-siZGmhVvr8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-siZGmhVvr8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-siZGmhVvr8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siZGmhVvr8 .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siZGmhVvr8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-siZGmhVvr8 .dropdown-item.active,
.cid-siZGmhVvr8 .dropdown-item:active {
  background-color: transparent;
}
.cid-siZGmhVvr8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siZGmhVvr8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siZGmhVvr8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siZGmhVvr8 .navbar-buttons {
  text-align: center;
}
.cid-siZGmhVvr8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-siZGmhVvr8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-siZGmhVvr8 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-siZGmhVvr8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 a.nav-link .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-siZGmhVvr8 a.nav-link:hover .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siZGmhVvr8 .navbar {
    height: 77px;
  }
  .cid-siZGmhVvr8 .navbar.opened {
    height: auto;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-siMG0ewBbp {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-siMG0ewBbp .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-siMG0ewBbp .form-group {
  margin-bottom: 1rem;
}
.cid-siMG0ewBbp .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-siMG0ewBbp textarea.form-control {
  min-height: 96px;
}
.cid-siMG0ewBbp .input-group-btn {
  width: 100%;
}
.cid-siMG0ewBbp .input-group-btn .btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-siMG0ewBbp .form-control-label {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 100 !important;
}
.cid-siMG0ewBbp .google-map {
  width: 100%;
  height: 25rem;
}
.cid-siMG0ewBbp .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-siMG0ewBbp .info-row ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.cid-siMG0ewBbp .info-row ol li {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  padding: 10px;
}
.cid-siMG0ewBbp .info-value {
  color: #efefef;
}
@media (max-width: 991px), (max-width: 767px) {
  .cid-siMG0ewBbp .form-wrapper {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-siMG0ewBbp .form-subtitle {
    text-align: center;
  }
}
.cid-siMG0ewBbp .first-column {
  text-align: center;
}
.cid-siMyaxy4w9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-siMyaxy4w9 .row-links {
  justify-content: center;
}
.cid-siMyaxy4w9 .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-siMyaxy4w9 .wrapper {
  display: flex;
}
.cid-siMyaxy4w9 .container {
  max-width: 1700px;
}
.cid-siMyaxy4w9 img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-siMyaxy4w9 img {
  filter: invert(1);
}
.cid-siMyaxy4w9 .row-copirayt {
  min-width: 300px;
}
.cid-siMyaxy4w9 .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-siMyaxy4w9 .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-siMyaxy4w9 .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-siMyaxy4w9 .row-links,
.cid-siMyaxy4w9 .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-siMyaxy4w9 .foot-menu {
  width: fit-content;
}
.cid-siMyaxy4w9 .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-siMyaxy4w9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-siMyaxy4w9 .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-siMyaxy4w9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-siMyaxy4w9 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-siMyaxy4w9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-siMyaxy4w9 .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-siMyaxy4w9 .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-siMyaxy4w9 .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-siMyaxy4w9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-siMyaxy4w9 .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-siMyaxy4w9 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-siMyaxy4w9 .media-container-row {
    justify-content: center;
  }
  .cid-siMyaxy4w9 .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-siMyaxy4w9 .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-siMyaxy4w9 .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-siMyaxy4w9 .media-container-row .mbr-text {
  color: #353535;
}
.cid-siZGmhVvr8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .nav-item,
.cid-siZGmhVvr8 .nav-link,
.cid-siZGmhVvr8 .navbar-caption {
  font-weight: normal;
}
.cid-siZGmhVvr8 .nav-item:focus,
.cid-siZGmhVvr8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-siZGmhVvr8 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link {
    position: relative;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-siZGmhVvr8 .nav-item:hover .nav-link:before,
  .cid-siZGmhVvr8 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-siZGmhVvr8 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-siZGmhVvr8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-siZGmhVvr8 .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-siZGmhVvr8 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-siZGmhVvr8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-siZGmhVvr8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-siZGmhVvr8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-siZGmhVvr8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-siZGmhVvr8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-siZGmhVvr8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-siZGmhVvr8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-siZGmhVvr8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-siZGmhVvr8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-siZGmhVvr8 .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-siZGmhVvr8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-siZGmhVvr8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-siZGmhVvr8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-siZGmhVvr8 .dropdown-item.active,
.cid-siZGmhVvr8 .dropdown-item:active {
  background-color: transparent;
}
.cid-siZGmhVvr8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-siZGmhVvr8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-siZGmhVvr8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-siZGmhVvr8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siZGmhVvr8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-siZGmhVvr8 .navbar-buttons {
  text-align: center;
}
.cid-siZGmhVvr8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-siZGmhVvr8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-siZGmhVvr8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-siZGmhVvr8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-siZGmhVvr8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-siZGmhVvr8 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-siZGmhVvr8 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-siZGmhVvr8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siZGmhVvr8 a.nav-link .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-siZGmhVvr8 a.nav-link:hover .mbr-iconfont-btn,
.cid-siZGmhVvr8 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-siZGmhVvr8 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-siZGmhVvr8 .navbar {
    height: 77px;
  }
  .cid-siZGmhVvr8 .navbar.opened {
    height: auto;
  }
  .cid-siZGmhVvr8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3yeFUxpm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e8eaed;
}
.cid-sj3yeFUxpm .mbr-media {
  position: relative;
}
.cid-sj3yeFUxpm .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sj3yeFUxpm .animate__fadeInUp:before {
  background: #e8eaed;
}
.cid-sj3yeFUxpm .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sj3yeFUxpm .mbr-media span {
  font-size: 4rem;
  transition: all 0.3s;
  color: #737476;
  display: block;
}
.cid-sj3yeFUxpm .mbr-media span:hover {
  color: #ffe161;
  transform: scale(1.1);
}
.cid-sj3yeFUxpm .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sj3yeFUxpm .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sj3yeFUxpm .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sj3yeFUxpm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sj3yeFUxpm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sj3yeFUxpm .mbr-section-title {
  color: #161734;
}
.cid-sj3yeGk4n6 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-sj3yeGk4n6 .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3yeGk4n6 .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3yeGk4n6 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3yeGk4n6 .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3yeGk4n6 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3yeGk4n6 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3yeGk4n6 .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3yeGk4n6 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3yeGk4n6 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3yeGk4n6 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3yeGk4n6 .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-sj3yeGASwX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3yeGASwX .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3yeGASwX .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3yeGASwX .list-img {
  width: 100px;
}
.cid-sj3yeGASwX .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3yeGASwX .btn {
  margin: 0px !important;
}
.cid-sj3yeGASwX .text-box {
  padding: 1rem;
}
.cid-sj3yeGASwX .text-box p {
  margin: 0;
}
.cid-sj3yeGASwX .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3yeGASwX .ico-box p {
  margin: 0;
}
.cid-sj3yeGASwX .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3yeGASwX .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3yeGASwX .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3yeGASwX .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3yeGASwX .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3yeGASwX .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3yeGASwX .carousel-indicators li {
  display: inline-block;
}
.cid-sj3yeGASwX .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3yeGASwX .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3yeGASwX .li1,
.cid-sj3yeGASwX .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/eymdenme0000-2000x1200.jpg");
}
.cid-sj3yeGASwX .li2,
.cid-sj3yeGASwX .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/eym2-1268x761.jpg");
}
.cid-sj3yeGASwX .li3,
.cid-sj3yeGASwX .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/eym3-2000x1200.jpg");
}
.cid-sj3yeGASwX .li4,
.cid-sj3yeGASwX .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/eym1-1268x761.jpg");
}
.cid-sj3yeGASwX .li5,
.cid-sj3yeGASwX .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/eymdenme0003-2000x1200.jpg");
}
.cid-sj3yeGASwX .li6,
.cid-sj3yeGASwX .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/yesilyurt-fotograf-albumu-6-1920x1080.jpg");
}
@media (max-width: 992px) {
  .cid-sj3yeGASwX .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3yeGASwX .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3yeGASwX .card-title2 {
  color: #149dcc;
}
.cid-sj3yeGASwX .sq {
  color: #767676;
}
.cid-sj3yeGASwX .item {
  color: #767676;
}
.cid-sj3yeH8hVZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3yeH8hVZ .row-links {
  justify-content: center;
}
.cid-sj3yeH8hVZ .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3yeH8hVZ .wrapper {
  display: flex;
}
.cid-sj3yeH8hVZ .container {
  max-width: 1700px;
}
.cid-sj3yeH8hVZ img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3yeH8hVZ img {
  filter: invert(1);
}
.cid-sj3yeH8hVZ .row-copirayt {
  min-width: 300px;
}
.cid-sj3yeH8hVZ .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3yeH8hVZ .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3yeH8hVZ .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3yeH8hVZ .row-links,
.cid-sj3yeH8hVZ .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3yeH8hVZ .foot-menu {
  width: fit-content;
}
.cid-sj3yeH8hVZ .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3yeH8hVZ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3yeH8hVZ .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3yeH8hVZ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3yeH8hVZ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3yeH8hVZ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3yeH8hVZ .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3yeH8hVZ .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3yeH8hVZ .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3yeH8hVZ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3yeH8hVZ .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3yeH8hVZ .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3yeH8hVZ .media-container-row {
    justify-content: center;
  }
  .cid-sj3yeH8hVZ .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3yeH8hVZ .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3yeH8hVZ .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3yeH8hVZ .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3yeHrFTm .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3yeHrFTm .nav-item,
.cid-sj3yeHrFTm .nav-link,
.cid-sj3yeHrFTm .navbar-caption {
  font-weight: normal;
}
.cid-sj3yeHrFTm .nav-item:focus,
.cid-sj3yeHrFTm .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3yeHrFTm .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3yeHrFTm .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3yeHrFTm .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3yeHrFTm .nav-item:hover .nav-link:before,
  .cid-sj3yeHrFTm .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3yeHrFTm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3yeHrFTm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3yeHrFTm .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3yeHrFTm .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3yeHrFTm .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3yeHrFTm .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3yeHrFTm .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3yeHrFTm .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3yeHrFTm .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3yeHrFTm .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3yeHrFTm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3yeHrFTm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3yeHrFTm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3yeHrFTm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3yeHrFTm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3yeHrFTm .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3yeHrFTm .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3yeHrFTm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3yeHrFTm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3yeHrFTm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3yeHrFTm .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3yeHrFTm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3yeHrFTm .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3yeHrFTm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3yeHrFTm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3yeHrFTm .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3yeHrFTm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3yeHrFTm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3yeHrFTm .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3yeHrFTm .dropdown-item.active,
.cid-sj3yeHrFTm .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3yeHrFTm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3yeHrFTm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3yeHrFTm .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3yeHrFTm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3yeHrFTm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3yeHrFTm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3yeHrFTm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3yeHrFTm .navbar-buttons {
  text-align: center;
}
.cid-sj3yeHrFTm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3yeHrFTm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3yeHrFTm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3yeHrFTm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3yeHrFTm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3yeHrFTm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3yeHrFTm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3yeHrFTm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3yeHrFTm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3yeHrFTm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3yeHrFTm .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3yeHrFTm a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3yeHrFTm .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3yeHrFTm .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3yeHrFTm .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3yeHrFTm .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3yeHrFTm a.nav-link .mbr-iconfont-btn,
.cid-sj3yeHrFTm a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3yeHrFTm a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3yeHrFTm a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3yeHrFTm a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3yeHrFTm .navbar {
    height: 77px;
  }
  .cid-sj3yeHrFTm .navbar.opened {
    height: auto;
  }
  .cid-sj3yeHrFTm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3zV2rI4H {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e8eaed;
}
.cid-sj3zV2rI4H .mbr-media {
  position: relative;
}
.cid-sj3zV2rI4H .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sj3zV2rI4H .animate__fadeInUp:before {
  background: #e8eaed;
}
.cid-sj3zV2rI4H .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sj3zV2rI4H .mbr-media span {
  font-size: 4rem;
  transition: all 0.3s;
  color: #737476;
  display: block;
}
.cid-sj3zV2rI4H .mbr-media span:hover {
  color: #ffe161;
  transform: scale(1.1);
}
.cid-sj3zV2rI4H .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sj3zV2rI4H .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sj3zV2rI4H .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sj3zV2rI4H .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sj3zV2rI4H .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sj3zV2rI4H .mbr-section-title {
  color: #161734;
}
.cid-sj3zV2Y0Nv {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-sj3zV2Y0Nv .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3zV2Y0Nv .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3zV2Y0Nv .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3zV2Y0Nv .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3zV2Y0Nv .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3zV2Y0Nv .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3zV2Y0Nv .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3zV2Y0Nv .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3zV2Y0Nv .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3zV2Y0Nv .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3zV2Y0Nv .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-sj3zV3jssd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3zV3jssd .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3zV3jssd .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3zV3jssd .list-img {
  width: 100px;
}
.cid-sj3zV3jssd .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3zV3jssd .btn {
  margin: 0px !important;
}
.cid-sj3zV3jssd .text-box {
  padding: 1rem;
}
.cid-sj3zV3jssd .text-box p {
  margin: 0;
}
.cid-sj3zV3jssd .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3zV3jssd .ico-box p {
  margin: 0;
}
.cid-sj3zV3jssd .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3zV3jssd .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3zV3jssd .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3zV3jssd .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3zV3jssd .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3zV3jssd .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3zV3jssd .carousel-indicators li {
  display: inline-block;
}
.cid-sj3zV3jssd .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3zV3jssd .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3zV3jssd .li1,
.cid-sj3zV3jssd .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/sahabe0000-1600x900.jpg");
}
.cid-sj3zV3jssd .li2,
.cid-sj3zV3jssd .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/sahabe0001-1600x900.jpg");
}
.cid-sj3zV3jssd .li3,
.cid-sj3zV3jssd .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/sahabe0002-1600x900.jpg");
}
.cid-sj3zV3jssd .li4,
.cid-sj3zV3jssd .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/sahabe0003-1600x900.jpg");
}
.cid-sj3zV3jssd .li5,
.cid-sj3zV3jssd .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/sahabe0005-1600x900.jpg");
}
.cid-sj3zV3jssd .li6,
.cid-sj3zV3jssd .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/sahabe0007-1-1600x900.jpg");
}
@media (max-width: 992px) {
  .cid-sj3zV3jssd .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3zV3jssd .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3zV3jssd .card-title2 {
  color: #149dcc;
}
.cid-sj3zV3jssd .sq {
  color: #767676;
}
.cid-sj3zV3jssd .item {
  color: #767676;
}
.cid-sj3zV3T2uk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3zV3T2uk .row-links {
  justify-content: center;
}
.cid-sj3zV3T2uk .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3zV3T2uk .wrapper {
  display: flex;
}
.cid-sj3zV3T2uk .container {
  max-width: 1700px;
}
.cid-sj3zV3T2uk img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3zV3T2uk img {
  filter: invert(1);
}
.cid-sj3zV3T2uk .row-copirayt {
  min-width: 300px;
}
.cid-sj3zV3T2uk .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3zV3T2uk .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3zV3T2uk .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3zV3T2uk .row-links,
.cid-sj3zV3T2uk .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3zV3T2uk .foot-menu {
  width: fit-content;
}
.cid-sj3zV3T2uk .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3zV3T2uk .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3zV3T2uk .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3zV3T2uk .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3zV3T2uk .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3zV3T2uk .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3zV3T2uk .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3zV3T2uk .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3zV3T2uk .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3zV3T2uk .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3zV3T2uk .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3zV3T2uk .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3zV3T2uk .media-container-row {
    justify-content: center;
  }
  .cid-sj3zV3T2uk .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3zV3T2uk .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3zV3T2uk .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3zV3T2uk .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3zV4dLtG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3zV4dLtG .nav-item,
.cid-sj3zV4dLtG .nav-link,
.cid-sj3zV4dLtG .navbar-caption {
  font-weight: normal;
}
.cid-sj3zV4dLtG .nav-item:focus,
.cid-sj3zV4dLtG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3zV4dLtG .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3zV4dLtG .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3zV4dLtG .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3zV4dLtG .nav-item:hover .nav-link:before,
  .cid-sj3zV4dLtG .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3zV4dLtG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3zV4dLtG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3zV4dLtG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3zV4dLtG .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3zV4dLtG .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3zV4dLtG .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3zV4dLtG .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3zV4dLtG .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3zV4dLtG .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3zV4dLtG .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3zV4dLtG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3zV4dLtG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3zV4dLtG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3zV4dLtG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3zV4dLtG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3zV4dLtG .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3zV4dLtG .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3zV4dLtG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3zV4dLtG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3zV4dLtG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3zV4dLtG .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3zV4dLtG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3zV4dLtG .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3zV4dLtG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3zV4dLtG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3zV4dLtG .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3zV4dLtG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3zV4dLtG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3zV4dLtG .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3zV4dLtG .dropdown-item.active,
.cid-sj3zV4dLtG .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3zV4dLtG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3zV4dLtG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3zV4dLtG .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3zV4dLtG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3zV4dLtG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3zV4dLtG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3zV4dLtG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3zV4dLtG .navbar-buttons {
  text-align: center;
}
.cid-sj3zV4dLtG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3zV4dLtG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3zV4dLtG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3zV4dLtG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3zV4dLtG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3zV4dLtG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3zV4dLtG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3zV4dLtG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3zV4dLtG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3zV4dLtG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3zV4dLtG .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3zV4dLtG a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3zV4dLtG .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3zV4dLtG .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3zV4dLtG .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3zV4dLtG .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3zV4dLtG a.nav-link .mbr-iconfont-btn,
.cid-sj3zV4dLtG a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3zV4dLtG a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3zV4dLtG a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3zV4dLtG a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3zV4dLtG .navbar {
    height: 77px;
  }
  .cid-sj3zV4dLtG .navbar.opened {
    height: auto;
  }
  .cid-sj3zV4dLtG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3B8g3pMm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e8eaed;
}
.cid-sj3B8g3pMm .mbr-media {
  position: relative;
}
.cid-sj3B8g3pMm .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sj3B8g3pMm .animate__fadeInUp:before {
  background: #e8eaed;
}
.cid-sj3B8g3pMm .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sj3B8g3pMm .mbr-media span {
  font-size: 4rem;
  transition: all 0.3s;
  color: #737476;
  display: block;
}
.cid-sj3B8g3pMm .mbr-media span:hover {
  color: #ffe161;
  transform: scale(1.1);
}
.cid-sj3B8g3pMm .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sj3B8g3pMm .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sj3B8g3pMm .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sj3B8g3pMm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sj3B8g3pMm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sj3B8g3pMm .mbr-section-title {
  color: #161734;
}
.cid-sj3B8gDuF1 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-sj3B8gDuF1 .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3B8gDuF1 .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3B8gDuF1 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3B8gDuF1 .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3B8gDuF1 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3B8gDuF1 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3B8gDuF1 .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3B8gDuF1 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3B8gDuF1 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3B8gDuF1 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3B8gDuF1 .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-sj3B8gXKra {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3B8gXKra .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3B8gXKra .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3B8gXKra .list-img {
  width: 100px;
}
.cid-sj3B8gXKra .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3B8gXKra .btn {
  margin: 0px !important;
}
.cid-sj3B8gXKra .text-box {
  padding: 1rem;
}
.cid-sj3B8gXKra .text-box p {
  margin: 0;
}
.cid-sj3B8gXKra .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3B8gXKra .ico-box p {
  margin: 0;
}
.cid-sj3B8gXKra .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3B8gXKra .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3B8gXKra .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3B8gXKra .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3B8gXKra .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3B8gXKra .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3B8gXKra .carousel-indicators li {
  display: inline-block;
}
.cid-sj3B8gXKra .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3B8gXKra .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3B8gXKra .li1,
.cid-sj3B8gXKra .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/okul-130918-9-2000x1125.jpg");
}
.cid-sj3B8gXKra .li2,
.cid-sj3B8gXKra .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/goz-130918-6-2000x1125.jpg");
}
.cid-sj3B8gXKra .li3,
.cid-sj3B8gXKra .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/goz-130918-7-2000x1125.jpg");
}
.cid-sj3B8gXKra .li4,
.cid-sj3B8gXKra .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/kale-130918-3-2000x1125.jpg");
}
.cid-sj3B8gXKra .li5,
.cid-sj3B8gXKra .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/kale-130918-17-2000x1125.jpg");
}
.cid-sj3B8gXKra .li6,
.cid-sj3B8gXKra .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/okul-130918-19-2000x1125.jpg");
}
@media (max-width: 992px) {
  .cid-sj3B8gXKra .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3B8gXKra .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3B8gXKra .card-title2 {
  color: #149dcc;
}
.cid-sj3B8gXKra .sq {
  color: #767676;
}
.cid-sj3B8gXKra .item {
  color: #767676;
}
.cid-sj3B8hz8ZJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3B8hz8ZJ .row-links {
  justify-content: center;
}
.cid-sj3B8hz8ZJ .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3B8hz8ZJ .wrapper {
  display: flex;
}
.cid-sj3B8hz8ZJ .container {
  max-width: 1700px;
}
.cid-sj3B8hz8ZJ img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3B8hz8ZJ img {
  filter: invert(1);
}
.cid-sj3B8hz8ZJ .row-copirayt {
  min-width: 300px;
}
.cid-sj3B8hz8ZJ .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3B8hz8ZJ .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3B8hz8ZJ .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3B8hz8ZJ .row-links,
.cid-sj3B8hz8ZJ .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3B8hz8ZJ .foot-menu {
  width: fit-content;
}
.cid-sj3B8hz8ZJ .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3B8hz8ZJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3B8hz8ZJ .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3B8hz8ZJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3B8hz8ZJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3B8hz8ZJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3B8hz8ZJ .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3B8hz8ZJ .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3B8hz8ZJ .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3B8hz8ZJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3B8hz8ZJ .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3B8hz8ZJ .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3B8hz8ZJ .media-container-row {
    justify-content: center;
  }
  .cid-sj3B8hz8ZJ .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3B8hz8ZJ .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3B8hz8ZJ .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3B8hz8ZJ .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3B8hUxni .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3B8hUxni .nav-item,
.cid-sj3B8hUxni .nav-link,
.cid-sj3B8hUxni .navbar-caption {
  font-weight: normal;
}
.cid-sj3B8hUxni .nav-item:focus,
.cid-sj3B8hUxni .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3B8hUxni .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3B8hUxni .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3B8hUxni .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3B8hUxni .nav-item:hover .nav-link:before,
  .cid-sj3B8hUxni .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3B8hUxni .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3B8hUxni .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3B8hUxni .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3B8hUxni .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3B8hUxni .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3B8hUxni .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3B8hUxni .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3B8hUxni .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3B8hUxni .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3B8hUxni .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3B8hUxni .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3B8hUxni .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3B8hUxni .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3B8hUxni .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3B8hUxni .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3B8hUxni .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3B8hUxni .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3B8hUxni .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3B8hUxni .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3B8hUxni .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3B8hUxni .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3B8hUxni .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3B8hUxni .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3B8hUxni .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3B8hUxni .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3B8hUxni .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3B8hUxni .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3B8hUxni .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3B8hUxni .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3B8hUxni .dropdown-item.active,
.cid-sj3B8hUxni .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3B8hUxni .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3B8hUxni .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3B8hUxni .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3B8hUxni .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3B8hUxni .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3B8hUxni .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3B8hUxni ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3B8hUxni .navbar-buttons {
  text-align: center;
}
.cid-sj3B8hUxni button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3B8hUxni button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3B8hUxni button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3B8hUxni button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3B8hUxni button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3B8hUxni button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3B8hUxni nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3B8hUxni nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3B8hUxni nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3B8hUxni nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3B8hUxni .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3B8hUxni a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3B8hUxni .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3B8hUxni .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3B8hUxni .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3B8hUxni .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3B8hUxni a.nav-link .mbr-iconfont-btn,
.cid-sj3B8hUxni a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3B8hUxni a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3B8hUxni a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3B8hUxni a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3B8hUxni .navbar {
    height: 77px;
  }
  .cid-sj3B8hUxni .navbar.opened {
    height: auto;
  }
  .cid-sj3B8hUxni .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3EfX7aOf {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3EfX7aOf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3EfX7aOf .row {
  flex-direction: row-reverse;
}
.cid-sj3EfX7aOf img {
  width: 100%;
}
.cid-sj3EfXvdok {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3EfXvdok .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3EfXvdok .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3EfXvdok .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3EfXvdok .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3EfXvdok .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3EfXvdok .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3EfXvdok .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3EfXvdok .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3EfXvdok .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3EfXvdok .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3EfXvdok .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3EfXR6Cp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3EfXR6Cp .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3EfXR6Cp .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3EfXR6Cp .list-img {
  width: 100px;
}
.cid-sj3EfXR6Cp .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3EfXR6Cp .btn {
  margin: 0px !important;
}
.cid-sj3EfXR6Cp .text-box {
  padding: 1rem;
}
.cid-sj3EfXR6Cp .text-box p {
  margin: 0;
}
.cid-sj3EfXR6Cp .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3EfXR6Cp .ico-box p {
  margin: 0;
}
.cid-sj3EfXR6Cp .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3EfXR6Cp .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3EfXR6Cp .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3EfXR6Cp .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3EfXR6Cp .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3EfXR6Cp .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3EfXR6Cp .carousel-indicators li {
  display: inline-block;
}
.cid-sj3EfXR6Cp .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3EfXR6Cp .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3EfXR6Cp .li1,
.cid-sj3EfXR6Cp .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/hhh-2000x1125.jpg");
}
.cid-sj3EfXR6Cp .li2,
.cid-sj3EfXR6Cp .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/kullanilms-gorseller-1-1920x1080.jpg");
}
.cid-sj3EfXR6Cp .li3,
.cid-sj3EfXR6Cp .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/kullanilms-gorseller-3-1920x1080.jpg");
}
.cid-sj3EfXR6Cp .li4,
.cid-sj3EfXR6Cp .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/kullanilms-gorseller-13-2000x1125.jpg");
}
.cid-sj3EfXR6Cp .li5,
.cid-sj3EfXR6Cp .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/kullanilms-gorseller-14-1920x1080.jpg");
}
.cid-sj3EfXR6Cp .li6,
.cid-sj3EfXR6Cp .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/kullanilms-gorseller-7-1920x1080.jpg");
}
@media (max-width: 992px) {
  .cid-sj3EfXR6Cp .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3EfXR6Cp .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3EfXR6Cp .card-title2 {
  color: #149dcc;
}
.cid-sj3EfXR6Cp .sq {
  color: #767676;
}
.cid-sj3EfXR6Cp .item {
  color: #767676;
}
.cid-sj3EfYnDjB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3EfYnDjB .row-links {
  justify-content: center;
}
.cid-sj3EfYnDjB .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3EfYnDjB .wrapper {
  display: flex;
}
.cid-sj3EfYnDjB .container {
  max-width: 1700px;
}
.cid-sj3EfYnDjB img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3EfYnDjB img {
  filter: invert(1);
}
.cid-sj3EfYnDjB .row-copirayt {
  min-width: 300px;
}
.cid-sj3EfYnDjB .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3EfYnDjB .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3EfYnDjB .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3EfYnDjB .row-links,
.cid-sj3EfYnDjB .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3EfYnDjB .foot-menu {
  width: fit-content;
}
.cid-sj3EfYnDjB .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3EfYnDjB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3EfYnDjB .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3EfYnDjB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3EfYnDjB .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3EfYnDjB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3EfYnDjB .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3EfYnDjB .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3EfYnDjB .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3EfYnDjB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3EfYnDjB .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3EfYnDjB .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3EfYnDjB .media-container-row {
    justify-content: center;
  }
  .cid-sj3EfYnDjB .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3EfYnDjB .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3EfYnDjB .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3EfYnDjB .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3EfYH2hZ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3EfYH2hZ .nav-item,
.cid-sj3EfYH2hZ .nav-link,
.cid-sj3EfYH2hZ .navbar-caption {
  font-weight: normal;
}
.cid-sj3EfYH2hZ .nav-item:focus,
.cid-sj3EfYH2hZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3EfYH2hZ .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3EfYH2hZ .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3EfYH2hZ .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3EfYH2hZ .nav-item:hover .nav-link:before,
  .cid-sj3EfYH2hZ .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3EfYH2hZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3EfYH2hZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3EfYH2hZ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3EfYH2hZ .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3EfYH2hZ .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3EfYH2hZ .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3EfYH2hZ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3EfYH2hZ .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3EfYH2hZ .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3EfYH2hZ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3EfYH2hZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3EfYH2hZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3EfYH2hZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3EfYH2hZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3EfYH2hZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3EfYH2hZ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3EfYH2hZ .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3EfYH2hZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3EfYH2hZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3EfYH2hZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3EfYH2hZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3EfYH2hZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3EfYH2hZ .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3EfYH2hZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3EfYH2hZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3EfYH2hZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3EfYH2hZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3EfYH2hZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3EfYH2hZ .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3EfYH2hZ .dropdown-item.active,
.cid-sj3EfYH2hZ .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3EfYH2hZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3EfYH2hZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3EfYH2hZ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3EfYH2hZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3EfYH2hZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3EfYH2hZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3EfYH2hZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3EfYH2hZ .navbar-buttons {
  text-align: center;
}
.cid-sj3EfYH2hZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3EfYH2hZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3EfYH2hZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3EfYH2hZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3EfYH2hZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3EfYH2hZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3EfYH2hZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3EfYH2hZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3EfYH2hZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3EfYH2hZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3EfYH2hZ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3EfYH2hZ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3EfYH2hZ .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3EfYH2hZ .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3EfYH2hZ .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3EfYH2hZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3EfYH2hZ a.nav-link .mbr-iconfont-btn,
.cid-sj3EfYH2hZ a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3EfYH2hZ a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3EfYH2hZ a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3EfYH2hZ a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3EfYH2hZ .navbar {
    height: 77px;
  }
  .cid-sj3EfYH2hZ .navbar.opened {
    height: auto;
  }
  .cid-sj3EfYH2hZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3GozxwQq {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3GozxwQq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3GozxwQq .row {
  flex-direction: row-reverse;
}
.cid-sj3GozxwQq img {
  width: 100%;
}
.cid-sj3GoA40I9 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3GoA40I9 .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3GoA40I9 .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3GoA40I9 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3GoA40I9 .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3GoA40I9 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3GoA40I9 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3GoA40I9 .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3GoA40I9 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3GoA40I9 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3GoA40I9 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3GoA40I9 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3GoAoCo2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3GoAoCo2 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3GoAoCo2 .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3GoAoCo2 .list-img {
  width: 100px;
}
.cid-sj3GoAoCo2 .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3GoAoCo2 .btn {
  margin: 0px !important;
}
.cid-sj3GoAoCo2 .text-box {
  padding: 1rem;
}
.cid-sj3GoAoCo2 .text-box p {
  margin: 0;
}
.cid-sj3GoAoCo2 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3GoAoCo2 .ico-box p {
  margin: 0;
}
.cid-sj3GoAoCo2 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3GoAoCo2 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3GoAoCo2 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3GoAoCo2 .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3GoAoCo2 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3GoAoCo2 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3GoAoCo2 .carousel-indicators li {
  display: inline-block;
}
.cid-sj3GoAoCo2 .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3GoAoCo2 .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3GoAoCo2 .li1,
.cid-sj3GoAoCo2 .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/1-k-1-1134x594.jpg");
}
.cid-sj3GoAoCo2 .li2,
.cid-sj3GoAoCo2 .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/2-k-4-1134x744.jpg");
}
.cid-sj3GoAoCo2 .li3,
.cid-sj3GoAoCo2 .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/3-1134x594.jpg");
}
.cid-sj3GoAoCo2 .li4,
.cid-sj3GoAoCo2 .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/e-2-1400x750.jpg");
}
.cid-sj3GoAoCo2 .li5,
.cid-sj3GoAoCo2 .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/kullanilms-gorseller-14-1920x1080.jpg");
}
.cid-sj3GoAoCo2 .li6,
.cid-sj3GoAoCo2 .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/kullanilms-gorseller-7-1920x1080.jpg");
}
@media (max-width: 992px) {
  .cid-sj3GoAoCo2 .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3GoAoCo2 .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3GoAoCo2 .card-title2 {
  color: #149dcc;
}
.cid-sj3GoAoCo2 .sq {
  color: #767676;
}
.cid-sj3GoAoCo2 .item {
  color: #767676;
}
.cid-sj3GoB0SdC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3GoB0SdC .row-links {
  justify-content: center;
}
.cid-sj3GoB0SdC .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3GoB0SdC .wrapper {
  display: flex;
}
.cid-sj3GoB0SdC .container {
  max-width: 1700px;
}
.cid-sj3GoB0SdC img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3GoB0SdC img {
  filter: invert(1);
}
.cid-sj3GoB0SdC .row-copirayt {
  min-width: 300px;
}
.cid-sj3GoB0SdC .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3GoB0SdC .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3GoB0SdC .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3GoB0SdC .row-links,
.cid-sj3GoB0SdC .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3GoB0SdC .foot-menu {
  width: fit-content;
}
.cid-sj3GoB0SdC .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3GoB0SdC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3GoB0SdC .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3GoB0SdC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3GoB0SdC .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3GoB0SdC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3GoB0SdC .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3GoB0SdC .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3GoB0SdC .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3GoB0SdC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3GoB0SdC .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3GoB0SdC .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3GoB0SdC .media-container-row {
    justify-content: center;
  }
  .cid-sj3GoB0SdC .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3GoB0SdC .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3GoB0SdC .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3GoB0SdC .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3GoBnHeJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3GoBnHeJ .nav-item,
.cid-sj3GoBnHeJ .nav-link,
.cid-sj3GoBnHeJ .navbar-caption {
  font-weight: normal;
}
.cid-sj3GoBnHeJ .nav-item:focus,
.cid-sj3GoBnHeJ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3GoBnHeJ .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3GoBnHeJ .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3GoBnHeJ .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3GoBnHeJ .nav-item:hover .nav-link:before,
  .cid-sj3GoBnHeJ .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3GoBnHeJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3GoBnHeJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3GoBnHeJ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3GoBnHeJ .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3GoBnHeJ .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3GoBnHeJ .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3GoBnHeJ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3GoBnHeJ .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3GoBnHeJ .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3GoBnHeJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3GoBnHeJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3GoBnHeJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3GoBnHeJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3GoBnHeJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3GoBnHeJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3GoBnHeJ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3GoBnHeJ .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3GoBnHeJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3GoBnHeJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3GoBnHeJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3GoBnHeJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3GoBnHeJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3GoBnHeJ .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3GoBnHeJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3GoBnHeJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3GoBnHeJ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3GoBnHeJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3GoBnHeJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3GoBnHeJ .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3GoBnHeJ .dropdown-item.active,
.cid-sj3GoBnHeJ .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3GoBnHeJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3GoBnHeJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3GoBnHeJ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3GoBnHeJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3GoBnHeJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3GoBnHeJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3GoBnHeJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3GoBnHeJ .navbar-buttons {
  text-align: center;
}
.cid-sj3GoBnHeJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3GoBnHeJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3GoBnHeJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3GoBnHeJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3GoBnHeJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3GoBnHeJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3GoBnHeJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3GoBnHeJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3GoBnHeJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3GoBnHeJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3GoBnHeJ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3GoBnHeJ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3GoBnHeJ .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3GoBnHeJ .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3GoBnHeJ .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3GoBnHeJ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3GoBnHeJ a.nav-link .mbr-iconfont-btn,
.cid-sj3GoBnHeJ a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3GoBnHeJ a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3GoBnHeJ a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3GoBnHeJ a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3GoBnHeJ .navbar {
    height: 77px;
  }
  .cid-sj3GoBnHeJ .navbar.opened {
    height: auto;
  }
  .cid-sj3GoBnHeJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3HJgFnaD {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3HJgFnaD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3HJgFnaD .row {
  flex-direction: row-reverse;
}
.cid-sj3HJgFnaD img {
  width: 100%;
}
.cid-sj3HJhgi3o {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3HJhgi3o .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3HJhgi3o .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3HJhgi3o .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3HJhgi3o .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3HJhgi3o .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3HJhgi3o .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3HJhgi3o .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3HJhgi3o .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3HJhgi3o .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3HJhgi3o .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3HJhgi3o .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3HJhB1Ny {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3HJhB1Ny .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3HJhB1Ny .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3HJhB1Ny .list-img {
  width: 100px;
}
.cid-sj3HJhB1Ny .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3HJhB1Ny .btn {
  margin: 0px !important;
}
.cid-sj3HJhB1Ny .text-box {
  padding: 1rem;
}
.cid-sj3HJhB1Ny .text-box p {
  margin: 0;
}
.cid-sj3HJhB1Ny .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3HJhB1Ny .ico-box p {
  margin: 0;
}
.cid-sj3HJhB1Ny .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3HJhB1Ny .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3HJhB1Ny .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3HJhB1Ny .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3HJhB1Ny .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3HJhB1Ny .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3HJhB1Ny .carousel-indicators li {
  display: inline-block;
}
.cid-sj3HJhB1Ny .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3HJhB1Ny .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3HJhB1Ny .li1,
.cid-sj3HJhB1Ny .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/2m-2000x1500.jpg");
}
.cid-sj3HJhB1Ny .li2,
.cid-sj3HJhB1Ny .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/3m-2000x1500.jpg");
}
.cid-sj3HJhB1Ny .li3,
.cid-sj3HJhB1Ny .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/5m-2000x1500.jpg");
}
.cid-sj3HJhB1Ny .li4,
.cid-sj3HJhB1Ny .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/6m-2000x1500.jpg");
}
.cid-sj3HJhB1Ny .li5,
.cid-sj3HJhB1Ny .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/7m-2000x1500.jpg");
}
.cid-sj3HJhB1Ny .li6,
.cid-sj3HJhB1Ny .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/8m-2000x1500.jpg");
}
@media (max-width: 992px) {
  .cid-sj3HJhB1Ny .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3HJhB1Ny .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3HJhB1Ny .card-title2 {
  color: #149dcc;
}
.cid-sj3HJhB1Ny .sq {
  color: #767676;
}
.cid-sj3HJhB1Ny .item {
  color: #767676;
}
.cid-sj3HJiacrY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3HJiacrY .row-links {
  justify-content: center;
}
.cid-sj3HJiacrY .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3HJiacrY .wrapper {
  display: flex;
}
.cid-sj3HJiacrY .container {
  max-width: 1700px;
}
.cid-sj3HJiacrY img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3HJiacrY img {
  filter: invert(1);
}
.cid-sj3HJiacrY .row-copirayt {
  min-width: 300px;
}
.cid-sj3HJiacrY .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3HJiacrY .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3HJiacrY .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3HJiacrY .row-links,
.cid-sj3HJiacrY .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3HJiacrY .foot-menu {
  width: fit-content;
}
.cid-sj3HJiacrY .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3HJiacrY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3HJiacrY .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3HJiacrY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3HJiacrY .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3HJiacrY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3HJiacrY .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3HJiacrY .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3HJiacrY .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3HJiacrY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3HJiacrY .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3HJiacrY .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3HJiacrY .media-container-row {
    justify-content: center;
  }
  .cid-sj3HJiacrY .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3HJiacrY .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3HJiacrY .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3HJiacrY .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3HJivpTL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3HJivpTL .nav-item,
.cid-sj3HJivpTL .nav-link,
.cid-sj3HJivpTL .navbar-caption {
  font-weight: normal;
}
.cid-sj3HJivpTL .nav-item:focus,
.cid-sj3HJivpTL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3HJivpTL .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3HJivpTL .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3HJivpTL .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3HJivpTL .nav-item:hover .nav-link:before,
  .cid-sj3HJivpTL .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3HJivpTL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3HJivpTL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3HJivpTL .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3HJivpTL .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3HJivpTL .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3HJivpTL .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3HJivpTL .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3HJivpTL .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3HJivpTL .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3HJivpTL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3HJivpTL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3HJivpTL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3HJivpTL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3HJivpTL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3HJivpTL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3HJivpTL .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3HJivpTL .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3HJivpTL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3HJivpTL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3HJivpTL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3HJivpTL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3HJivpTL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3HJivpTL .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3HJivpTL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3HJivpTL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3HJivpTL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3HJivpTL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3HJivpTL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3HJivpTL .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3HJivpTL .dropdown-item.active,
.cid-sj3HJivpTL .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3HJivpTL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3HJivpTL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3HJivpTL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3HJivpTL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3HJivpTL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3HJivpTL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3HJivpTL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3HJivpTL .navbar-buttons {
  text-align: center;
}
.cid-sj3HJivpTL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3HJivpTL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3HJivpTL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3HJivpTL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3HJivpTL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3HJivpTL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3HJivpTL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3HJivpTL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3HJivpTL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3HJivpTL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3HJivpTL .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3HJivpTL a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3HJivpTL .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3HJivpTL .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3HJivpTL .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3HJivpTL .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3HJivpTL a.nav-link .mbr-iconfont-btn,
.cid-sj3HJivpTL a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3HJivpTL a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3HJivpTL a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3HJivpTL a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3HJivpTL .navbar {
    height: 77px;
  }
  .cid-sj3HJivpTL .navbar.opened {
    height: auto;
  }
  .cid-sj3HJivpTL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3ISV61lE {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e8eaed;
}
.cid-sj3ISV61lE .mbr-media {
  position: relative;
}
.cid-sj3ISV61lE .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sj3ISV61lE .animate__fadeInUp:before {
  background: #e8eaed;
}
.cid-sj3ISV61lE .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sj3ISV61lE .mbr-media span {
  font-size: 4rem;
  transition: all 0.3s;
  color: #737476;
  display: block;
}
.cid-sj3ISV61lE .mbr-media span:hover {
  color: #ffe161;
  transform: scale(1.1);
}
.cid-sj3ISV61lE .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sj3ISV61lE .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sj3ISV61lE .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sj3ISV61lE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sj3ISV61lE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sj3ISV61lE .mbr-section-title {
  color: #161734;
}
.cid-sj3ISVBvoq {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-sj3ISVBvoq .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3ISVBvoq .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3ISVBvoq .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3ISVBvoq .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3ISVBvoq .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3ISVBvoq .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3ISVBvoq .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3ISVBvoq .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3ISVBvoq .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3ISVBvoq .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3ISVBvoq .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-sj3ISVWDMJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3ISVWDMJ .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3ISVWDMJ .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3ISVWDMJ .list-img {
  width: 100px;
}
.cid-sj3ISVWDMJ .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3ISVWDMJ .btn {
  margin: 0px !important;
}
.cid-sj3ISVWDMJ .text-box {
  padding: 1rem;
}
.cid-sj3ISVWDMJ .text-box p {
  margin: 0;
}
.cid-sj3ISVWDMJ .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3ISVWDMJ .ico-box p {
  margin: 0;
}
.cid-sj3ISVWDMJ .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3ISVWDMJ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3ISVWDMJ .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3ISVWDMJ .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3ISVWDMJ .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3ISVWDMJ .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3ISVWDMJ .carousel-indicators li {
  display: inline-block;
}
.cid-sj3ISVWDMJ .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3ISVWDMJ .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3ISVWDMJ .li1,
.cid-sj3ISVWDMJ .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/2-2000x1414.jpg");
}
.cid-sj3ISVWDMJ .li2,
.cid-sj3ISVWDMJ .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/3-2000x1414.jpg");
}
.cid-sj3ISVWDMJ .li3,
.cid-sj3ISVWDMJ .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/4-2000x1414.jpg");
}
.cid-sj3ISVWDMJ .li4,
.cid-sj3ISVWDMJ .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/5-2000x1414.jpg");
}
.cid-sj3ISVWDMJ .li5,
.cid-sj3ISVWDMJ .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/6-2000x1414.jpg");
}
.cid-sj3ISVWDMJ .li6,
.cid-sj3ISVWDMJ .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/10-2000x1414.jpg");
}
@media (max-width: 992px) {
  .cid-sj3ISVWDMJ .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3ISVWDMJ .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3ISVWDMJ .card-title2 {
  color: #149dcc;
}
.cid-sj3ISVWDMJ .sq {
  color: #767676;
}
.cid-sj3ISVWDMJ .item {
  color: #767676;
}
.cid-sj3ISWvDu2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3ISWvDu2 .row-links {
  justify-content: center;
}
.cid-sj3ISWvDu2 .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3ISWvDu2 .wrapper {
  display: flex;
}
.cid-sj3ISWvDu2 .container {
  max-width: 1700px;
}
.cid-sj3ISWvDu2 img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3ISWvDu2 img {
  filter: invert(1);
}
.cid-sj3ISWvDu2 .row-copirayt {
  min-width: 300px;
}
.cid-sj3ISWvDu2 .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3ISWvDu2 .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3ISWvDu2 .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3ISWvDu2 .row-links,
.cid-sj3ISWvDu2 .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3ISWvDu2 .foot-menu {
  width: fit-content;
}
.cid-sj3ISWvDu2 .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3ISWvDu2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3ISWvDu2 .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3ISWvDu2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3ISWvDu2 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3ISWvDu2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3ISWvDu2 .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3ISWvDu2 .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3ISWvDu2 .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3ISWvDu2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3ISWvDu2 .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3ISWvDu2 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3ISWvDu2 .media-container-row {
    justify-content: center;
  }
  .cid-sj3ISWvDu2 .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3ISWvDu2 .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3ISWvDu2 .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3ISWvDu2 .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3ISWSv2R .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3ISWSv2R .nav-item,
.cid-sj3ISWSv2R .nav-link,
.cid-sj3ISWSv2R .navbar-caption {
  font-weight: normal;
}
.cid-sj3ISWSv2R .nav-item:focus,
.cid-sj3ISWSv2R .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3ISWSv2R .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3ISWSv2R .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3ISWSv2R .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3ISWSv2R .nav-item:hover .nav-link:before,
  .cid-sj3ISWSv2R .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3ISWSv2R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3ISWSv2R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3ISWSv2R .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3ISWSv2R .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3ISWSv2R .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3ISWSv2R .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3ISWSv2R .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3ISWSv2R .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3ISWSv2R .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3ISWSv2R .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3ISWSv2R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3ISWSv2R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3ISWSv2R .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3ISWSv2R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3ISWSv2R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3ISWSv2R .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3ISWSv2R .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3ISWSv2R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3ISWSv2R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3ISWSv2R .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3ISWSv2R .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3ISWSv2R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3ISWSv2R .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3ISWSv2R .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3ISWSv2R .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3ISWSv2R .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3ISWSv2R .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3ISWSv2R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3ISWSv2R .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3ISWSv2R .dropdown-item.active,
.cid-sj3ISWSv2R .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3ISWSv2R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3ISWSv2R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3ISWSv2R .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3ISWSv2R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3ISWSv2R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3ISWSv2R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3ISWSv2R ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3ISWSv2R .navbar-buttons {
  text-align: center;
}
.cid-sj3ISWSv2R button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3ISWSv2R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3ISWSv2R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3ISWSv2R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3ISWSv2R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3ISWSv2R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3ISWSv2R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3ISWSv2R nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3ISWSv2R nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3ISWSv2R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3ISWSv2R .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3ISWSv2R a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3ISWSv2R .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3ISWSv2R .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3ISWSv2R .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3ISWSv2R .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3ISWSv2R a.nav-link .mbr-iconfont-btn,
.cid-sj3ISWSv2R a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3ISWSv2R a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3ISWSv2R a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3ISWSv2R a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3ISWSv2R .navbar {
    height: 77px;
  }
  .cid-sj3ISWSv2R .navbar.opened {
    height: auto;
  }
  .cid-sj3ISWSv2R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3JYLuYXo {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3JYLuYXo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3JYLuYXo .row {
  flex-direction: row-reverse;
}
.cid-sj3JYLuYXo img {
  width: 100%;
}
.cid-sj3JYLV626 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3JYLV626 .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3JYLV626 .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3JYLV626 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3JYLV626 .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3JYLV626 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3JYLV626 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3JYLV626 .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3JYLV626 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3JYLV626 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3JYLV626 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3JYLV626 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3JYMe0cu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3JYMe0cu .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3JYMe0cu .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3JYMe0cu .list-img {
  width: 100px;
}
.cid-sj3JYMe0cu .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3JYMe0cu .btn {
  margin: 0px !important;
}
.cid-sj3JYMe0cu .text-box {
  padding: 1rem;
}
.cid-sj3JYMe0cu .text-box p {
  margin: 0;
}
.cid-sj3JYMe0cu .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3JYMe0cu .ico-box p {
  margin: 0;
}
.cid-sj3JYMe0cu .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3JYMe0cu .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3JYMe0cu .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3JYMe0cu .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3JYMe0cu .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3JYMe0cu .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3JYMe0cu .carousel-indicators li {
  display: inline-block;
}
.cid-sj3JYMe0cu .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3JYMe0cu .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3JYMe0cu .li1,
.cid-sj3JYMe0cu .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/mze4gece-2000x944.jpg");
}
.cid-sj3JYMe0cu .li2,
.cid-sj3JYMe0cu .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/02-grsel-2000x1333.jpg");
}
.cid-sj3JYMe0cu .li3,
.cid-sj3JYMe0cu .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/03-grsel-2000x685.jpg");
}
.cid-sj3JYMe0cu .li4,
.cid-sj3JYMe0cu .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/04-grsel-2000x1213.jpg");
}
.cid-sj3JYMe0cu .li5,
.cid-sj3JYMe0cu .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/09-kesit-perspektif1-2000x834.jpg");
}
.cid-sj3JYMe0cu .li6,
.cid-sj3JYMe0cu .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/10-cephe-sergleme-katmani-2000x963.jpg");
}
@media (max-width: 992px) {
  .cid-sj3JYMe0cu .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3JYMe0cu .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3JYMe0cu .card-title2 {
  color: #149dcc;
}
.cid-sj3JYMe0cu .sq {
  color: #767676;
}
.cid-sj3JYMe0cu .item {
  color: #767676;
}
.cid-sj3JYMOBGu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3JYMOBGu .row-links {
  justify-content: center;
}
.cid-sj3JYMOBGu .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3JYMOBGu .wrapper {
  display: flex;
}
.cid-sj3JYMOBGu .container {
  max-width: 1700px;
}
.cid-sj3JYMOBGu img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3JYMOBGu img {
  filter: invert(1);
}
.cid-sj3JYMOBGu .row-copirayt {
  min-width: 300px;
}
.cid-sj3JYMOBGu .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3JYMOBGu .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3JYMOBGu .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3JYMOBGu .row-links,
.cid-sj3JYMOBGu .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3JYMOBGu .foot-menu {
  width: fit-content;
}
.cid-sj3JYMOBGu .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3JYMOBGu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3JYMOBGu .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3JYMOBGu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3JYMOBGu .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3JYMOBGu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3JYMOBGu .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3JYMOBGu .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3JYMOBGu .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3JYMOBGu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3JYMOBGu .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3JYMOBGu .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3JYMOBGu .media-container-row {
    justify-content: center;
  }
  .cid-sj3JYMOBGu .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3JYMOBGu .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3JYMOBGu .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3JYMOBGu .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3JYN9MT5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3JYN9MT5 .nav-item,
.cid-sj3JYN9MT5 .nav-link,
.cid-sj3JYN9MT5 .navbar-caption {
  font-weight: normal;
}
.cid-sj3JYN9MT5 .nav-item:focus,
.cid-sj3JYN9MT5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3JYN9MT5 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3JYN9MT5 .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3JYN9MT5 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3JYN9MT5 .nav-item:hover .nav-link:before,
  .cid-sj3JYN9MT5 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3JYN9MT5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3JYN9MT5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3JYN9MT5 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3JYN9MT5 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3JYN9MT5 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3JYN9MT5 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3JYN9MT5 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3JYN9MT5 .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3JYN9MT5 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3JYN9MT5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3JYN9MT5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3JYN9MT5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3JYN9MT5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3JYN9MT5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3JYN9MT5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3JYN9MT5 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3JYN9MT5 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3JYN9MT5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3JYN9MT5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3JYN9MT5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3JYN9MT5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3JYN9MT5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3JYN9MT5 .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3JYN9MT5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3JYN9MT5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3JYN9MT5 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3JYN9MT5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3JYN9MT5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3JYN9MT5 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3JYN9MT5 .dropdown-item.active,
.cid-sj3JYN9MT5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3JYN9MT5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3JYN9MT5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3JYN9MT5 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3JYN9MT5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3JYN9MT5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3JYN9MT5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3JYN9MT5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3JYN9MT5 .navbar-buttons {
  text-align: center;
}
.cid-sj3JYN9MT5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3JYN9MT5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3JYN9MT5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3JYN9MT5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3JYN9MT5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3JYN9MT5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3JYN9MT5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3JYN9MT5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3JYN9MT5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3JYN9MT5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3JYN9MT5 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3JYN9MT5 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3JYN9MT5 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3JYN9MT5 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3JYN9MT5 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3JYN9MT5 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3JYN9MT5 a.nav-link .mbr-iconfont-btn,
.cid-sj3JYN9MT5 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3JYN9MT5 a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3JYN9MT5 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3JYN9MT5 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3JYN9MT5 .navbar {
    height: 77px;
  }
  .cid-sj3JYN9MT5 .navbar.opened {
    height: auto;
  }
  .cid-sj3JYN9MT5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3LjMgF8e {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3LjMgF8e .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3LjMgF8e .row {
  flex-direction: row-reverse;
}
.cid-sj3LjMgF8e img {
  width: 100%;
}
.cid-sj3LjMMvhd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3LjMMvhd .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3LjMMvhd .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3LjMMvhd .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3LjMMvhd .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3LjMMvhd .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3LjMMvhd .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3LjMMvhd .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3LjMMvhd .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3LjMMvhd .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3LjMMvhd .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3LjMMvhd .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3LjN75kc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3LjN75kc .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3LjN75kc .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3LjN75kc .list-img {
  width: 100px;
}
.cid-sj3LjN75kc .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3LjN75kc .btn {
  margin: 0px !important;
}
.cid-sj3LjN75kc .text-box {
  padding: 1rem;
}
.cid-sj3LjN75kc .text-box p {
  margin: 0;
}
.cid-sj3LjN75kc .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3LjN75kc .ico-box p {
  margin: 0;
}
.cid-sj3LjN75kc .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3LjN75kc .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3LjN75kc .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3LjN75kc .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3LjN75kc .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3LjN75kc .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3LjN75kc .carousel-indicators li {
  display: inline-block;
}
.cid-sj3LjN75kc .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3LjN75kc .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3LjN75kc .li1,
.cid-sj3LjN75kc .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/1-2000x1500.jpg");
}
.cid-sj3LjN75kc .li2,
.cid-sj3LjN75kc .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/2-2000x1407.jpg");
}
.cid-sj3LjN75kc .li3,
.cid-sj3LjN75kc .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/4-2000x1434.jpg");
}
.cid-sj3LjN75kc .li4,
.cid-sj3LjN75kc .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/7-2000x1500.jpg");
}
.cid-sj3LjN75kc .li5,
.cid-sj3LjN75kc .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/13-2000x1500.jpg");
}
.cid-sj3LjN75kc .li6,
.cid-sj3LjN75kc .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/11-2000x1500.jpg");
}
@media (max-width: 992px) {
  .cid-sj3LjN75kc .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3LjN75kc .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3LjN75kc .card-title2 {
  color: #149dcc;
}
.cid-sj3LjN75kc .sq {
  color: #767676;
}
.cid-sj3LjN75kc .item {
  color: #767676;
}
.cid-sj3LjNIInR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3LjNIInR .row-links {
  justify-content: center;
}
.cid-sj3LjNIInR .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3LjNIInR .wrapper {
  display: flex;
}
.cid-sj3LjNIInR .container {
  max-width: 1700px;
}
.cid-sj3LjNIInR img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3LjNIInR img {
  filter: invert(1);
}
.cid-sj3LjNIInR .row-copirayt {
  min-width: 300px;
}
.cid-sj3LjNIInR .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3LjNIInR .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3LjNIInR .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3LjNIInR .row-links,
.cid-sj3LjNIInR .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3LjNIInR .foot-menu {
  width: fit-content;
}
.cid-sj3LjNIInR .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3LjNIInR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3LjNIInR .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3LjNIInR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3LjNIInR .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3LjNIInR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3LjNIInR .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3LjNIInR .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3LjNIInR .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3LjNIInR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3LjNIInR .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3LjNIInR .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3LjNIInR .media-container-row {
    justify-content: center;
  }
  .cid-sj3LjNIInR .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3LjNIInR .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3LjNIInR .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3LjNIInR .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3LjO3kEV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3LjO3kEV .nav-item,
.cid-sj3LjO3kEV .nav-link,
.cid-sj3LjO3kEV .navbar-caption {
  font-weight: normal;
}
.cid-sj3LjO3kEV .nav-item:focus,
.cid-sj3LjO3kEV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3LjO3kEV .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3LjO3kEV .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3LjO3kEV .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3LjO3kEV .nav-item:hover .nav-link:before,
  .cid-sj3LjO3kEV .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3LjO3kEV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3LjO3kEV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3LjO3kEV .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3LjO3kEV .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3LjO3kEV .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3LjO3kEV .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3LjO3kEV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3LjO3kEV .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3LjO3kEV .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3LjO3kEV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3LjO3kEV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3LjO3kEV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3LjO3kEV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3LjO3kEV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3LjO3kEV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3LjO3kEV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3LjO3kEV .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3LjO3kEV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3LjO3kEV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3LjO3kEV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3LjO3kEV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3LjO3kEV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3LjO3kEV .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3LjO3kEV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3LjO3kEV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3LjO3kEV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3LjO3kEV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3LjO3kEV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3LjO3kEV .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3LjO3kEV .dropdown-item.active,
.cid-sj3LjO3kEV .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3LjO3kEV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3LjO3kEV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3LjO3kEV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3LjO3kEV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3LjO3kEV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3LjO3kEV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3LjO3kEV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3LjO3kEV .navbar-buttons {
  text-align: center;
}
.cid-sj3LjO3kEV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3LjO3kEV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3LjO3kEV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3LjO3kEV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3LjO3kEV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3LjO3kEV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3LjO3kEV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3LjO3kEV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3LjO3kEV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3LjO3kEV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3LjO3kEV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3LjO3kEV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3LjO3kEV .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3LjO3kEV .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3LjO3kEV .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3LjO3kEV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3LjO3kEV a.nav-link .mbr-iconfont-btn,
.cid-sj3LjO3kEV a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3LjO3kEV a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3LjO3kEV a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3LjO3kEV a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3LjO3kEV .navbar {
    height: 77px;
  }
  .cid-sj3LjO3kEV .navbar.opened {
    height: auto;
  }
  .cid-sj3LjO3kEV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3MmjvapT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e8eaed;
}
.cid-sj3MmjvapT .mbr-media {
  position: relative;
}
.cid-sj3MmjvapT .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sj3MmjvapT .animate__fadeInUp:before {
  background: #e8eaed;
}
.cid-sj3MmjvapT .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sj3MmjvapT .mbr-media span {
  font-size: 4rem;
  transition: all 0.3s;
  color: #737476;
  display: block;
}
.cid-sj3MmjvapT .mbr-media span:hover {
  color: #ffe161;
  transform: scale(1.1);
}
.cid-sj3MmjvapT .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sj3MmjvapT .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sj3MmjvapT .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sj3MmjvapT .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sj3MmjvapT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sj3MmjvapT .mbr-section-title {
  color: #161734;
}
.cid-sj3Mmk1ZPo {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-sj3Mmk1ZPo .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3Mmk1ZPo .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3Mmk1ZPo .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3Mmk1ZPo .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3Mmk1ZPo .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3Mmk1ZPo .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3Mmk1ZPo .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3Mmk1ZPo .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3Mmk1ZPo .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3Mmk1ZPo .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3Mmk1ZPo .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-sj3MmklmvM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3MmklmvM .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3MmklmvM .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3MmklmvM .list-img {
  width: 100px;
}
.cid-sj3MmklmvM .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3MmklmvM .btn {
  margin: 0px !important;
}
.cid-sj3MmklmvM .text-box {
  padding: 1rem;
}
.cid-sj3MmklmvM .text-box p {
  margin: 0;
}
.cid-sj3MmklmvM .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3MmklmvM .ico-box p {
  margin: 0;
}
.cid-sj3MmklmvM .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3MmklmvM .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3MmklmvM .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3MmklmvM .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3MmklmvM .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3MmklmvM .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3MmklmvM .carousel-indicators li {
  display: inline-block;
}
.cid-sj3MmklmvM .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3MmklmvM .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3MmklmvM .li1,
.cid-sj3MmklmvM .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/1-1920x1440.jpg");
}
.cid-sj3MmklmvM .li2,
.cid-sj3MmklmvM .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/5-1920x1440.jpg");
}
.cid-sj3MmklmvM .li3,
.cid-sj3MmklmvM .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/4-1919x1439.jpg");
}
.cid-sj3MmklmvM .li4,
.cid-sj3MmklmvM .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/2-1920x1440.jpg");
}
.cid-sj3MmklmvM .li5,
.cid-sj3MmklmvM .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/3-1920x1440.jpg");
}
.cid-sj3MmklmvM .li6,
.cid-sj3MmklmvM .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/10-2000x1414.jpg");
}
@media (max-width: 992px) {
  .cid-sj3MmklmvM .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3MmklmvM .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3MmklmvM .card-title2 {
  color: #149dcc;
}
.cid-sj3MmklmvM .sq {
  color: #767676;
}
.cid-sj3MmklmvM .item {
  color: #767676;
}
.cid-sj3MmkXIdm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3MmkXIdm .row-links {
  justify-content: center;
}
.cid-sj3MmkXIdm .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3MmkXIdm .wrapper {
  display: flex;
}
.cid-sj3MmkXIdm .container {
  max-width: 1700px;
}
.cid-sj3MmkXIdm img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3MmkXIdm img {
  filter: invert(1);
}
.cid-sj3MmkXIdm .row-copirayt {
  min-width: 300px;
}
.cid-sj3MmkXIdm .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3MmkXIdm .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3MmkXIdm .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3MmkXIdm .row-links,
.cid-sj3MmkXIdm .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3MmkXIdm .foot-menu {
  width: fit-content;
}
.cid-sj3MmkXIdm .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3MmkXIdm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3MmkXIdm .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3MmkXIdm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3MmkXIdm .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3MmkXIdm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3MmkXIdm .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3MmkXIdm .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3MmkXIdm .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3MmkXIdm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3MmkXIdm .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3MmkXIdm .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3MmkXIdm .media-container-row {
    justify-content: center;
  }
  .cid-sj3MmkXIdm .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3MmkXIdm .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3MmkXIdm .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3MmkXIdm .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3MmlhMTm .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3MmlhMTm .nav-item,
.cid-sj3MmlhMTm .nav-link,
.cid-sj3MmlhMTm .navbar-caption {
  font-weight: normal;
}
.cid-sj3MmlhMTm .nav-item:focus,
.cid-sj3MmlhMTm .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3MmlhMTm .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3MmlhMTm .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3MmlhMTm .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3MmlhMTm .nav-item:hover .nav-link:before,
  .cid-sj3MmlhMTm .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3MmlhMTm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3MmlhMTm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3MmlhMTm .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3MmlhMTm .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3MmlhMTm .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3MmlhMTm .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3MmlhMTm .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3MmlhMTm .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3MmlhMTm .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3MmlhMTm .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3MmlhMTm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3MmlhMTm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3MmlhMTm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3MmlhMTm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3MmlhMTm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3MmlhMTm .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3MmlhMTm .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3MmlhMTm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3MmlhMTm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3MmlhMTm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3MmlhMTm .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3MmlhMTm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3MmlhMTm .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3MmlhMTm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3MmlhMTm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3MmlhMTm .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3MmlhMTm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3MmlhMTm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3MmlhMTm .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3MmlhMTm .dropdown-item.active,
.cid-sj3MmlhMTm .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3MmlhMTm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3MmlhMTm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3MmlhMTm .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3MmlhMTm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3MmlhMTm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3MmlhMTm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3MmlhMTm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3MmlhMTm .navbar-buttons {
  text-align: center;
}
.cid-sj3MmlhMTm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3MmlhMTm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3MmlhMTm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3MmlhMTm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3MmlhMTm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3MmlhMTm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3MmlhMTm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3MmlhMTm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3MmlhMTm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3MmlhMTm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3MmlhMTm .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3MmlhMTm a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3MmlhMTm .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3MmlhMTm .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3MmlhMTm .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3MmlhMTm .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3MmlhMTm a.nav-link .mbr-iconfont-btn,
.cid-sj3MmlhMTm a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3MmlhMTm a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3MmlhMTm a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3MmlhMTm a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3MmlhMTm .navbar {
    height: 77px;
  }
  .cid-sj3MmlhMTm .navbar.opened {
    height: auto;
  }
  .cid-sj3MmlhMTm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3NqQ5Uln {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e8eaed;
}
.cid-sj3NqQ5Uln .mbr-media {
  position: relative;
}
.cid-sj3NqQ5Uln .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sj3NqQ5Uln .animate__fadeInUp:before {
  background: #e8eaed;
}
.cid-sj3NqQ5Uln .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sj3NqQ5Uln .mbr-media span {
  font-size: 4rem;
  transition: all 0.3s;
  color: #737476;
  display: block;
}
.cid-sj3NqQ5Uln .mbr-media span:hover {
  color: #ffe161;
  transform: scale(1.1);
}
.cid-sj3NqQ5Uln .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sj3NqQ5Uln .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sj3NqQ5Uln .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sj3NqQ5Uln .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sj3NqQ5Uln .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sj3NqQ5Uln .mbr-section-title {
  color: #161734;
}
.cid-sj3NqQWiBa {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-sj3NqQWiBa .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3NqQWiBa .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3NqQWiBa .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3NqQWiBa .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3NqQWiBa .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3NqQWiBa .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3NqQWiBa .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3NqQWiBa .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3NqQWiBa .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3NqQWiBa .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3NqQWiBa .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-sj3NqRqFdc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3NqRqFdc .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3NqRqFdc .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3NqRqFdc .list-img {
  width: 100px;
}
.cid-sj3NqRqFdc .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3NqRqFdc .btn {
  margin: 0px !important;
}
.cid-sj3NqRqFdc .text-box {
  padding: 1rem;
}
.cid-sj3NqRqFdc .text-box p {
  margin: 0;
}
.cid-sj3NqRqFdc .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3NqRqFdc .ico-box p {
  margin: 0;
}
.cid-sj3NqRqFdc .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3NqRqFdc .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3NqRqFdc .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3NqRqFdc .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3NqRqFdc .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3NqRqFdc .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3NqRqFdc .carousel-indicators li {
  display: inline-block;
}
.cid-sj3NqRqFdc .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3NqRqFdc .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3NqRqFdc .li1,
.cid-sj3NqRqFdc .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/5456-2000x1500.jpg");
}
.cid-sj3NqRqFdc .li2,
.cid-sj3NqRqFdc .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/idari-2000x1414.jpg");
}
.cid-sj3NqRqFdc .li3,
.cid-sj3NqRqFdc .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/camifnalrevize0003-2000x1500.jpg");
}
.cid-sj3NqRqFdc .li4,
.cid-sj3NqRqFdc .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/konferans00001-2000x1413.jpg");
}
.cid-sj3NqRqFdc .li5,
.cid-sj3NqRqFdc .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/lobi-2000x1414.jpg");
}
.cid-sj3NqRqFdc .li6,
.cid-sj3NqRqFdc .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/snf-2000x1473.jpg");
}
@media (max-width: 992px) {
  .cid-sj3NqRqFdc .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3NqRqFdc .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3NqRqFdc .card-title2 {
  color: #149dcc;
}
.cid-sj3NqRqFdc .sq {
  color: #767676;
}
.cid-sj3NqRqFdc .item {
  color: #767676;
}
.cid-sj3NqSj0sH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3NqSj0sH .row-links {
  justify-content: center;
}
.cid-sj3NqSj0sH .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3NqSj0sH .wrapper {
  display: flex;
}
.cid-sj3NqSj0sH .container {
  max-width: 1700px;
}
.cid-sj3NqSj0sH img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3NqSj0sH img {
  filter: invert(1);
}
.cid-sj3NqSj0sH .row-copirayt {
  min-width: 300px;
}
.cid-sj3NqSj0sH .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3NqSj0sH .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3NqSj0sH .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3NqSj0sH .row-links,
.cid-sj3NqSj0sH .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3NqSj0sH .foot-menu {
  width: fit-content;
}
.cid-sj3NqSj0sH .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3NqSj0sH .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3NqSj0sH .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3NqSj0sH .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3NqSj0sH .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3NqSj0sH .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3NqSj0sH .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3NqSj0sH .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3NqSj0sH .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3NqSj0sH .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3NqSj0sH .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3NqSj0sH .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3NqSj0sH .media-container-row {
    justify-content: center;
  }
  .cid-sj3NqSj0sH .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3NqSj0sH .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3NqSj0sH .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3NqSj0sH .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3NqSHVGi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3NqSHVGi .nav-item,
.cid-sj3NqSHVGi .nav-link,
.cid-sj3NqSHVGi .navbar-caption {
  font-weight: normal;
}
.cid-sj3NqSHVGi .nav-item:focus,
.cid-sj3NqSHVGi .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3NqSHVGi .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3NqSHVGi .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3NqSHVGi .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3NqSHVGi .nav-item:hover .nav-link:before,
  .cid-sj3NqSHVGi .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3NqSHVGi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3NqSHVGi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3NqSHVGi .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3NqSHVGi .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3NqSHVGi .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3NqSHVGi .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3NqSHVGi .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3NqSHVGi .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3NqSHVGi .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3NqSHVGi .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3NqSHVGi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3NqSHVGi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3NqSHVGi .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3NqSHVGi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3NqSHVGi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3NqSHVGi .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3NqSHVGi .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3NqSHVGi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3NqSHVGi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3NqSHVGi .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3NqSHVGi .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3NqSHVGi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3NqSHVGi .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3NqSHVGi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3NqSHVGi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3NqSHVGi .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3NqSHVGi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3NqSHVGi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3NqSHVGi .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3NqSHVGi .dropdown-item.active,
.cid-sj3NqSHVGi .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3NqSHVGi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3NqSHVGi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3NqSHVGi .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3NqSHVGi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3NqSHVGi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3NqSHVGi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3NqSHVGi ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3NqSHVGi .navbar-buttons {
  text-align: center;
}
.cid-sj3NqSHVGi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3NqSHVGi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3NqSHVGi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3NqSHVGi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3NqSHVGi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3NqSHVGi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3NqSHVGi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3NqSHVGi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3NqSHVGi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3NqSHVGi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3NqSHVGi .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3NqSHVGi a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3NqSHVGi .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3NqSHVGi .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3NqSHVGi .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3NqSHVGi .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3NqSHVGi a.nav-link .mbr-iconfont-btn,
.cid-sj3NqSHVGi a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3NqSHVGi a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3NqSHVGi a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3NqSHVGi a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3NqSHVGi .navbar {
    height: 77px;
  }
  .cid-sj3NqSHVGi .navbar.opened {
    height: auto;
  }
  .cid-sj3NqSHVGi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3OAKaxZN {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3OAKaxZN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3OAKaxZN .row {
  flex-direction: row-reverse;
}
.cid-sj3OAKaxZN img {
  width: 100%;
}
.cid-sj3OAKBPBs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3OAKBPBs .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3OAKBPBs .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3OAKBPBs .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3OAKBPBs .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3OAKBPBs .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3OAKBPBs .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3OAKBPBs .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3OAKBPBs .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3OAKBPBs .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3OAKBPBs .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3OAKBPBs .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3OAKU7G3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3OAKU7G3 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3OAKU7G3 .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3OAKU7G3 .list-img {
  width: 100px;
}
.cid-sj3OAKU7G3 .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3OAKU7G3 .btn {
  margin: 0px !important;
}
.cid-sj3OAKU7G3 .text-box {
  padding: 1rem;
}
.cid-sj3OAKU7G3 .text-box p {
  margin: 0;
}
.cid-sj3OAKU7G3 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3OAKU7G3 .ico-box p {
  margin: 0;
}
.cid-sj3OAKU7G3 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3OAKU7G3 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3OAKU7G3 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3OAKU7G3 .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3OAKU7G3 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3OAKU7G3 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3OAKU7G3 .carousel-indicators li {
  display: inline-block;
}
.cid-sj3OAKU7G3 .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3OAKU7G3 .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3OAKU7G3 .li1,
.cid-sj3OAKU7G3 .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/render0010-2000x1448.jpg");
}
.cid-sj3OAKU7G3 .li2,
.cid-sj3OAKU7G3 .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/render0007-2000x1448.jpg");
}
.cid-sj3OAKU7G3 .li3,
.cid-sj3OAKU7G3 .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/render0006-2000x1448.jpg");
}
.cid-sj3OAKU7G3 .li4,
.cid-sj3OAKU7G3 .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/render0003-2000x1448.jpg");
}
.cid-sj3OAKU7G3 .li5,
.cid-sj3OAKU7G3 .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/render0005-2000x1448.jpg");
}
.cid-sj3OAKU7G3 .li6,
.cid-sj3OAKU7G3 .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/render0001-2000x1448.jpg");
}
@media (max-width: 992px) {
  .cid-sj3OAKU7G3 .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3OAKU7G3 .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3OAKU7G3 .card-title2 {
  color: #149dcc;
}
.cid-sj3OAKU7G3 .sq {
  color: #767676;
}
.cid-sj3OAKU7G3 .item {
  color: #767676;
}
.cid-sj3OALtdkV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3OALtdkV .row-links {
  justify-content: center;
}
.cid-sj3OALtdkV .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3OALtdkV .wrapper {
  display: flex;
}
.cid-sj3OALtdkV .container {
  max-width: 1700px;
}
.cid-sj3OALtdkV img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3OALtdkV img {
  filter: invert(1);
}
.cid-sj3OALtdkV .row-copirayt {
  min-width: 300px;
}
.cid-sj3OALtdkV .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3OALtdkV .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3OALtdkV .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3OALtdkV .row-links,
.cid-sj3OALtdkV .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3OALtdkV .foot-menu {
  width: fit-content;
}
.cid-sj3OALtdkV .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3OALtdkV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3OALtdkV .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3OALtdkV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3OALtdkV .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3OALtdkV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3OALtdkV .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3OALtdkV .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3OALtdkV .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3OALtdkV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3OALtdkV .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3OALtdkV .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3OALtdkV .media-container-row {
    justify-content: center;
  }
  .cid-sj3OALtdkV .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3OALtdkV .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3OALtdkV .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3OALtdkV .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3OALOUTa .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3OALOUTa .nav-item,
.cid-sj3OALOUTa .nav-link,
.cid-sj3OALOUTa .navbar-caption {
  font-weight: normal;
}
.cid-sj3OALOUTa .nav-item:focus,
.cid-sj3OALOUTa .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3OALOUTa .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3OALOUTa .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3OALOUTa .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3OALOUTa .nav-item:hover .nav-link:before,
  .cid-sj3OALOUTa .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3OALOUTa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3OALOUTa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3OALOUTa .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3OALOUTa .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3OALOUTa .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3OALOUTa .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3OALOUTa .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3OALOUTa .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3OALOUTa .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3OALOUTa .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3OALOUTa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3OALOUTa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3OALOUTa .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3OALOUTa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3OALOUTa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3OALOUTa .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3OALOUTa .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3OALOUTa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3OALOUTa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3OALOUTa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3OALOUTa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3OALOUTa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3OALOUTa .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3OALOUTa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3OALOUTa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3OALOUTa .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3OALOUTa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3OALOUTa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3OALOUTa .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3OALOUTa .dropdown-item.active,
.cid-sj3OALOUTa .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3OALOUTa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3OALOUTa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3OALOUTa .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3OALOUTa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3OALOUTa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3OALOUTa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3OALOUTa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3OALOUTa .navbar-buttons {
  text-align: center;
}
.cid-sj3OALOUTa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3OALOUTa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3OALOUTa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3OALOUTa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3OALOUTa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3OALOUTa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3OALOUTa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3OALOUTa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3OALOUTa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3OALOUTa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3OALOUTa .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3OALOUTa a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3OALOUTa .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3OALOUTa .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3OALOUTa .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3OALOUTa .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3OALOUTa a.nav-link .mbr-iconfont-btn,
.cid-sj3OALOUTa a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3OALOUTa a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3OALOUTa a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3OALOUTa a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3OALOUTa .navbar {
    height: 77px;
  }
  .cid-sj3OALOUTa .navbar.opened {
    height: auto;
  }
  .cid-sj3OALOUTa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3PugepbA {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3PugepbA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3PugepbA .row {
  flex-direction: row-reverse;
}
.cid-sj3PugepbA img {
  width: 100%;
}
.cid-sj3PugLC8c {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3PugLC8c .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3PugLC8c .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3PugLC8c .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3PugLC8c .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3PugLC8c .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3PugLC8c .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3PugLC8c .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3PugLC8c .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3PugLC8c .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3PugLC8c .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3PugLC8c .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3Puh6pG3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3Puh6pG3 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3Puh6pG3 .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3Puh6pG3 .list-img {
  width: 100px;
}
.cid-sj3Puh6pG3 .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3Puh6pG3 .btn {
  margin: 0px !important;
}
.cid-sj3Puh6pG3 .text-box {
  padding: 1rem;
}
.cid-sj3Puh6pG3 .text-box p {
  margin: 0;
}
.cid-sj3Puh6pG3 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3Puh6pG3 .ico-box p {
  margin: 0;
}
.cid-sj3Puh6pG3 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3Puh6pG3 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3Puh6pG3 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3Puh6pG3 .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3Puh6pG3 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3Puh6pG3 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3Puh6pG3 .carousel-indicators li {
  display: inline-block;
}
.cid-sj3Puh6pG3 .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3Puh6pG3 .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3Puh6pG3 .li1,
.cid-sj3Puh6pG3 .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/c3-1600x1200.jpg");
}
.cid-sj3Puh6pG3 .li2,
.cid-sj3Puh6pG3 .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/c4-1600x1200.jpg");
}
.cid-sj3Puh6pG3 .li3,
.cid-sj3Puh6pG3 .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/c1-2-1600x1200.jpg");
}
.cid-sj3Puh6pG3 .li4,
.cid-sj3Puh6pG3 .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/c2-1600x1200.jpg");
}
.cid-sj3Puh6pG3 .li5,
.cid-sj3Puh6pG3 .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/render0005-2000x1448.jpg");
}
.cid-sj3Puh6pG3 .li6,
.cid-sj3Puh6pG3 .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/render0001-2000x1448.jpg");
}
@media (max-width: 992px) {
  .cid-sj3Puh6pG3 .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3Puh6pG3 .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3Puh6pG3 .card-title2 {
  color: #149dcc;
}
.cid-sj3Puh6pG3 .sq {
  color: #767676;
}
.cid-sj3Puh6pG3 .item {
  color: #767676;
}
.cid-sj3PuhIQIK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3PuhIQIK .row-links {
  justify-content: center;
}
.cid-sj3PuhIQIK .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3PuhIQIK .wrapper {
  display: flex;
}
.cid-sj3PuhIQIK .container {
  max-width: 1700px;
}
.cid-sj3PuhIQIK img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3PuhIQIK img {
  filter: invert(1);
}
.cid-sj3PuhIQIK .row-copirayt {
  min-width: 300px;
}
.cid-sj3PuhIQIK .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3PuhIQIK .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3PuhIQIK .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3PuhIQIK .row-links,
.cid-sj3PuhIQIK .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3PuhIQIK .foot-menu {
  width: fit-content;
}
.cid-sj3PuhIQIK .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3PuhIQIK .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3PuhIQIK .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3PuhIQIK .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3PuhIQIK .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3PuhIQIK .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3PuhIQIK .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3PuhIQIK .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3PuhIQIK .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3PuhIQIK .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3PuhIQIK .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3PuhIQIK .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3PuhIQIK .media-container-row {
    justify-content: center;
  }
  .cid-sj3PuhIQIK .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3PuhIQIK .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3PuhIQIK .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3PuhIQIK .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3Pui5kLy .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3Pui5kLy .nav-item,
.cid-sj3Pui5kLy .nav-link,
.cid-sj3Pui5kLy .navbar-caption {
  font-weight: normal;
}
.cid-sj3Pui5kLy .nav-item:focus,
.cid-sj3Pui5kLy .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3Pui5kLy .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3Pui5kLy .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3Pui5kLy .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3Pui5kLy .nav-item:hover .nav-link:before,
  .cid-sj3Pui5kLy .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3Pui5kLy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3Pui5kLy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3Pui5kLy .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3Pui5kLy .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3Pui5kLy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3Pui5kLy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3Pui5kLy .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3Pui5kLy .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3Pui5kLy .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3Pui5kLy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3Pui5kLy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3Pui5kLy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3Pui5kLy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3Pui5kLy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3Pui5kLy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3Pui5kLy .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3Pui5kLy .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3Pui5kLy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3Pui5kLy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3Pui5kLy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3Pui5kLy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3Pui5kLy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3Pui5kLy .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3Pui5kLy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3Pui5kLy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3Pui5kLy .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3Pui5kLy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3Pui5kLy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3Pui5kLy .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3Pui5kLy .dropdown-item.active,
.cid-sj3Pui5kLy .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3Pui5kLy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3Pui5kLy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3Pui5kLy .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3Pui5kLy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3Pui5kLy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3Pui5kLy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3Pui5kLy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3Pui5kLy .navbar-buttons {
  text-align: center;
}
.cid-sj3Pui5kLy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3Pui5kLy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3Pui5kLy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3Pui5kLy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3Pui5kLy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3Pui5kLy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3Pui5kLy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3Pui5kLy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3Pui5kLy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3Pui5kLy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3Pui5kLy .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3Pui5kLy a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3Pui5kLy .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3Pui5kLy .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3Pui5kLy .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3Pui5kLy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3Pui5kLy a.nav-link .mbr-iconfont-btn,
.cid-sj3Pui5kLy a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3Pui5kLy a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3Pui5kLy a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3Pui5kLy a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3Pui5kLy .navbar {
    height: 77px;
  }
  .cid-sj3Pui5kLy .navbar.opened {
    height: auto;
  }
  .cid-sj3Pui5kLy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3QeM4nGK {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3QeM4nGK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3QeM4nGK .row {
  flex-direction: row-reverse;
}
.cid-sj3QeM4nGK img {
  width: 100%;
}
.cid-sj3QeMuTtF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3QeMuTtF .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3QeMuTtF .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3QeMuTtF .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3QeMuTtF .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3QeMuTtF .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3QeMuTtF .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3QeMuTtF .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3QeMuTtF .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3QeMuTtF .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3QeMuTtF .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3QeMuTtF .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3QeMNYvM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3QeMNYvM .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3QeMNYvM .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3QeMNYvM .list-img {
  width: 100px;
}
.cid-sj3QeMNYvM .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3QeMNYvM .btn {
  margin: 0px !important;
}
.cid-sj3QeMNYvM .text-box {
  padding: 1rem;
}
.cid-sj3QeMNYvM .text-box p {
  margin: 0;
}
.cid-sj3QeMNYvM .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3QeMNYvM .ico-box p {
  margin: 0;
}
.cid-sj3QeMNYvM .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3QeMNYvM .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3QeMNYvM .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3QeMNYvM .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3QeMNYvM .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3QeMNYvM .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3QeMNYvM .carousel-indicators li {
  display: inline-block;
}
.cid-sj3QeMNYvM .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3QeMNYvM .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3QeMNYvM .li1,
.cid-sj3QeMNYvM .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/1-2000x1520.jpg");
}
.cid-sj3QeMNYvM .li2,
.cid-sj3QeMNYvM .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/f1-5-2000x1333.jpg");
}
.cid-sj3QeMNYvM .li3,
.cid-sj3QeMNYvM .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/g3-2000x1333.jpg");
}
.cid-sj3QeMNYvM .li4,
.cid-sj3QeMNYvM .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/f1-3-2000x1333.jpg");
}
.cid-sj3QeMNYvM .li5,
.cid-sj3QeMNYvM .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/render0005-2000x1448.jpg");
}
.cid-sj3QeMNYvM .li6,
.cid-sj3QeMNYvM .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/render0001-2000x1448.jpg");
}
@media (max-width: 992px) {
  .cid-sj3QeMNYvM .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3QeMNYvM .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3QeMNYvM .card-title2 {
  color: #149dcc;
}
.cid-sj3QeMNYvM .sq {
  color: #767676;
}
.cid-sj3QeMNYvM .item {
  color: #767676;
}
.cid-sj3QeNm9Pl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3QeNm9Pl .row-links {
  justify-content: center;
}
.cid-sj3QeNm9Pl .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3QeNm9Pl .wrapper {
  display: flex;
}
.cid-sj3QeNm9Pl .container {
  max-width: 1700px;
}
.cid-sj3QeNm9Pl img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3QeNm9Pl img {
  filter: invert(1);
}
.cid-sj3QeNm9Pl .row-copirayt {
  min-width: 300px;
}
.cid-sj3QeNm9Pl .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3QeNm9Pl .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3QeNm9Pl .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3QeNm9Pl .row-links,
.cid-sj3QeNm9Pl .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3QeNm9Pl .foot-menu {
  width: fit-content;
}
.cid-sj3QeNm9Pl .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3QeNm9Pl .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3QeNm9Pl .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3QeNm9Pl .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3QeNm9Pl .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3QeNm9Pl .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3QeNm9Pl .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3QeNm9Pl .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3QeNm9Pl .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3QeNm9Pl .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3QeNm9Pl .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3QeNm9Pl .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3QeNm9Pl .media-container-row {
    justify-content: center;
  }
  .cid-sj3QeNm9Pl .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3QeNm9Pl .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3QeNm9Pl .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3QeNm9Pl .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3QeNGY3r .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3QeNGY3r .nav-item,
.cid-sj3QeNGY3r .nav-link,
.cid-sj3QeNGY3r .navbar-caption {
  font-weight: normal;
}
.cid-sj3QeNGY3r .nav-item:focus,
.cid-sj3QeNGY3r .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3QeNGY3r .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3QeNGY3r .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3QeNGY3r .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3QeNGY3r .nav-item:hover .nav-link:before,
  .cid-sj3QeNGY3r .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3QeNGY3r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3QeNGY3r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3QeNGY3r .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3QeNGY3r .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3QeNGY3r .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3QeNGY3r .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3QeNGY3r .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3QeNGY3r .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3QeNGY3r .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3QeNGY3r .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3QeNGY3r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3QeNGY3r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3QeNGY3r .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3QeNGY3r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3QeNGY3r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3QeNGY3r .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3QeNGY3r .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3QeNGY3r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3QeNGY3r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3QeNGY3r .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3QeNGY3r .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3QeNGY3r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3QeNGY3r .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3QeNGY3r .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3QeNGY3r .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3QeNGY3r .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3QeNGY3r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3QeNGY3r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3QeNGY3r .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3QeNGY3r .dropdown-item.active,
.cid-sj3QeNGY3r .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3QeNGY3r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3QeNGY3r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3QeNGY3r .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3QeNGY3r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3QeNGY3r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3QeNGY3r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3QeNGY3r ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3QeNGY3r .navbar-buttons {
  text-align: center;
}
.cid-sj3QeNGY3r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3QeNGY3r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3QeNGY3r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3QeNGY3r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3QeNGY3r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3QeNGY3r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3QeNGY3r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3QeNGY3r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3QeNGY3r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3QeNGY3r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3QeNGY3r .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3QeNGY3r a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3QeNGY3r .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3QeNGY3r .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3QeNGY3r .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3QeNGY3r .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3QeNGY3r a.nav-link .mbr-iconfont-btn,
.cid-sj3QeNGY3r a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3QeNGY3r a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3QeNGY3r a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3QeNGY3r a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3QeNGY3r .navbar {
    height: 77px;
  }
  .cid-sj3QeNGY3r .navbar.opened {
    height: auto;
  }
  .cid-sj3QeNGY3r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3RjdaFRp {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3RjdaFRp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3RjdaFRp .row {
  flex-direction: row-reverse;
}
.cid-sj3RjdaFRp img {
  width: 100%;
}
.cid-sj3RjdHjle {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3RjdHjle .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3RjdHjle .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3RjdHjle .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3RjdHjle .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3RjdHjle .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3RjdHjle .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3RjdHjle .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3RjdHjle .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3RjdHjle .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3RjdHjle .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3RjdHjle .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3Rje2Kll {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3Rje2Kll .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3Rje2Kll .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3Rje2Kll .list-img {
  width: 100px;
}
.cid-sj3Rje2Kll .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3Rje2Kll .btn {
  margin: 0px !important;
}
.cid-sj3Rje2Kll .text-box {
  padding: 1rem;
}
.cid-sj3Rje2Kll .text-box p {
  margin: 0;
}
.cid-sj3Rje2Kll .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3Rje2Kll .ico-box p {
  margin: 0;
}
.cid-sj3Rje2Kll .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3Rje2Kll .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3Rje2Kll .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3Rje2Kll .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3Rje2Kll .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3Rje2Kll .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3Rje2Kll .carousel-indicators li {
  display: inline-block;
}
.cid-sj3Rje2Kll .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3Rje2Kll .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3Rje2Kll .li1,
.cid-sj3Rje2Kll .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/neri2-2-2000x1000.jpg");
}
.cid-sj3Rje2Kll .li2,
.cid-sj3Rje2Kll .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/neri2-4-2000x1000.jpg");
}
.cid-sj3Rje2Kll .li3,
.cid-sj3Rje2Kll .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/bas-2000x1000.jpg");
}
.cid-sj3Rje2Kll .li4,
.cid-sj3Rje2Kll .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/neri2-3-2000x1000.jpg");
}
.cid-sj3Rje2Kll .li5,
.cid-sj3Rje2Kll .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/render0005-2000x1448.jpg");
}
.cid-sj3Rje2Kll .li6,
.cid-sj3Rje2Kll .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/render0001-2000x1448.jpg");
}
@media (max-width: 992px) {
  .cid-sj3Rje2Kll .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3Rje2Kll .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3Rje2Kll .card-title2 {
  color: #149dcc;
}
.cid-sj3Rje2Kll .sq {
  color: #767676;
}
.cid-sj3Rje2Kll .item {
  color: #767676;
}
.cid-sj3Rjey53E {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3Rjey53E .row-links {
  justify-content: center;
}
.cid-sj3Rjey53E .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3Rjey53E .wrapper {
  display: flex;
}
.cid-sj3Rjey53E .container {
  max-width: 1700px;
}
.cid-sj3Rjey53E img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3Rjey53E img {
  filter: invert(1);
}
.cid-sj3Rjey53E .row-copirayt {
  min-width: 300px;
}
.cid-sj3Rjey53E .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3Rjey53E .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3Rjey53E .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3Rjey53E .row-links,
.cid-sj3Rjey53E .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3Rjey53E .foot-menu {
  width: fit-content;
}
.cid-sj3Rjey53E .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3Rjey53E .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3Rjey53E .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3Rjey53E .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3Rjey53E .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3Rjey53E .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3Rjey53E .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3Rjey53E .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3Rjey53E .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3Rjey53E .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3Rjey53E .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3Rjey53E .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3Rjey53E .media-container-row {
    justify-content: center;
  }
  .cid-sj3Rjey53E .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3Rjey53E .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3Rjey53E .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3Rjey53E .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3RjeUyeg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3RjeUyeg .nav-item,
.cid-sj3RjeUyeg .nav-link,
.cid-sj3RjeUyeg .navbar-caption {
  font-weight: normal;
}
.cid-sj3RjeUyeg .nav-item:focus,
.cid-sj3RjeUyeg .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3RjeUyeg .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3RjeUyeg .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3RjeUyeg .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3RjeUyeg .nav-item:hover .nav-link:before,
  .cid-sj3RjeUyeg .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3RjeUyeg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3RjeUyeg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3RjeUyeg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3RjeUyeg .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3RjeUyeg .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3RjeUyeg .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3RjeUyeg .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3RjeUyeg .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3RjeUyeg .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3RjeUyeg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3RjeUyeg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3RjeUyeg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3RjeUyeg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3RjeUyeg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3RjeUyeg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3RjeUyeg .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3RjeUyeg .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3RjeUyeg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3RjeUyeg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3RjeUyeg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3RjeUyeg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3RjeUyeg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3RjeUyeg .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3RjeUyeg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3RjeUyeg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3RjeUyeg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3RjeUyeg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3RjeUyeg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3RjeUyeg .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3RjeUyeg .dropdown-item.active,
.cid-sj3RjeUyeg .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3RjeUyeg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3RjeUyeg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3RjeUyeg .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3RjeUyeg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3RjeUyeg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3RjeUyeg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3RjeUyeg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3RjeUyeg .navbar-buttons {
  text-align: center;
}
.cid-sj3RjeUyeg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3RjeUyeg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3RjeUyeg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3RjeUyeg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3RjeUyeg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3RjeUyeg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3RjeUyeg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3RjeUyeg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3RjeUyeg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3RjeUyeg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3RjeUyeg .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3RjeUyeg a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3RjeUyeg .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3RjeUyeg .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3RjeUyeg .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3RjeUyeg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3RjeUyeg a.nav-link .mbr-iconfont-btn,
.cid-sj3RjeUyeg a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3RjeUyeg a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3RjeUyeg a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3RjeUyeg a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3RjeUyeg .navbar {
    height: 77px;
  }
  .cid-sj3RjeUyeg .navbar.opened {
    height: auto;
  }
  .cid-sj3RjeUyeg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3YytNDd8 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3YytNDd8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3YytNDd8 .row {
  flex-direction: row-reverse;
}
.cid-sj3YytNDd8 img {
  width: 100%;
}
.cid-sj3Yyuk1El {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3Yyuk1El .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3Yyuk1El .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3Yyuk1El .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3Yyuk1El .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3Yyuk1El .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3Yyuk1El .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3Yyuk1El .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3Yyuk1El .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3Yyuk1El .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3Yyuk1El .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3Yyuk1El .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3YyuImpU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3YyuImpU .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3YyuImpU .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3YyuImpU .list-img {
  width: 100px;
}
.cid-sj3YyuImpU .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3YyuImpU .btn {
  margin: 0px !important;
}
.cid-sj3YyuImpU .text-box {
  padding: 1rem;
}
.cid-sj3YyuImpU .text-box p {
  margin: 0;
}
.cid-sj3YyuImpU .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3YyuImpU .ico-box p {
  margin: 0;
}
.cid-sj3YyuImpU .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3YyuImpU .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3YyuImpU .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3YyuImpU .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3YyuImpU .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3YyuImpU .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3YyuImpU .carousel-indicators li {
  display: inline-block;
}
.cid-sj3YyuImpU .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3YyuImpU .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3YyuImpU .li1,
.cid-sj3YyuImpU .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/c2-1-1600x1200.jpg");
}
.cid-sj3YyuImpU .li2,
.cid-sj3YyuImpU .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/c4-1-1600x1200.jpg");
}
.cid-sj3YyuImpU .li3,
.cid-sj3YyuImpU .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/c8-1600x1200.jpg");
}
.cid-sj3YyuImpU .li4,
.cid-sj3YyuImpU .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/c6-1600x1200.jpg");
}
.cid-sj3YyuImpU .li5,
.cid-sj3YyuImpU .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/render0005-2000x1448.jpg");
}
.cid-sj3YyuImpU .li6,
.cid-sj3YyuImpU .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/render0001-2000x1448.jpg");
}
@media (max-width: 992px) {
  .cid-sj3YyuImpU .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3YyuImpU .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3YyuImpU .card-title2 {
  color: #149dcc;
}
.cid-sj3YyuImpU .sq {
  color: #767676;
}
.cid-sj3YyuImpU .item {
  color: #767676;
}
.cid-sj3Yyvgt2H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3Yyvgt2H .row-links {
  justify-content: center;
}
.cid-sj3Yyvgt2H .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3Yyvgt2H .wrapper {
  display: flex;
}
.cid-sj3Yyvgt2H .container {
  max-width: 1700px;
}
.cid-sj3Yyvgt2H img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3Yyvgt2H img {
  filter: invert(1);
}
.cid-sj3Yyvgt2H .row-copirayt {
  min-width: 300px;
}
.cid-sj3Yyvgt2H .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3Yyvgt2H .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3Yyvgt2H .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3Yyvgt2H .row-links,
.cid-sj3Yyvgt2H .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3Yyvgt2H .foot-menu {
  width: fit-content;
}
.cid-sj3Yyvgt2H .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3Yyvgt2H .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3Yyvgt2H .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3Yyvgt2H .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3Yyvgt2H .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3Yyvgt2H .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3Yyvgt2H .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3Yyvgt2H .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3Yyvgt2H .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3Yyvgt2H .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3Yyvgt2H .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3Yyvgt2H .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3Yyvgt2H .media-container-row {
    justify-content: center;
  }
  .cid-sj3Yyvgt2H .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3Yyvgt2H .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3Yyvgt2H .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3Yyvgt2H .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3YyvB7j1 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3YyvB7j1 .nav-item,
.cid-sj3YyvB7j1 .nav-link,
.cid-sj3YyvB7j1 .navbar-caption {
  font-weight: normal;
}
.cid-sj3YyvB7j1 .nav-item:focus,
.cid-sj3YyvB7j1 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3YyvB7j1 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3YyvB7j1 .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3YyvB7j1 .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3YyvB7j1 .nav-item:hover .nav-link:before,
  .cid-sj3YyvB7j1 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3YyvB7j1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3YyvB7j1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3YyvB7j1 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3YyvB7j1 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3YyvB7j1 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3YyvB7j1 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3YyvB7j1 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3YyvB7j1 .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3YyvB7j1 .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3YyvB7j1 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3YyvB7j1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3YyvB7j1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3YyvB7j1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3YyvB7j1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3YyvB7j1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3YyvB7j1 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3YyvB7j1 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3YyvB7j1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3YyvB7j1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3YyvB7j1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3YyvB7j1 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3YyvB7j1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3YyvB7j1 .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3YyvB7j1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3YyvB7j1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3YyvB7j1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3YyvB7j1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3YyvB7j1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3YyvB7j1 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3YyvB7j1 .dropdown-item.active,
.cid-sj3YyvB7j1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3YyvB7j1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3YyvB7j1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3YyvB7j1 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3YyvB7j1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3YyvB7j1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3YyvB7j1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3YyvB7j1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3YyvB7j1 .navbar-buttons {
  text-align: center;
}
.cid-sj3YyvB7j1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3YyvB7j1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3YyvB7j1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3YyvB7j1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3YyvB7j1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3YyvB7j1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3YyvB7j1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3YyvB7j1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3YyvB7j1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3YyvB7j1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3YyvB7j1 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3YyvB7j1 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3YyvB7j1 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3YyvB7j1 .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3YyvB7j1 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3YyvB7j1 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3YyvB7j1 a.nav-link .mbr-iconfont-btn,
.cid-sj3YyvB7j1 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3YyvB7j1 a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3YyvB7j1 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3YyvB7j1 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3YyvB7j1 .navbar {
    height: 77px;
  }
  .cid-sj3YyvB7j1 .navbar.opened {
    height: auto;
  }
  .cid-sj3YyvB7j1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3ZqcTn0B {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3ZqcTn0B .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3ZqcTn0B .row {
  flex-direction: row-reverse;
}
.cid-sj3ZqcTn0B img {
  width: 100%;
}
.cid-sj3Zqdm31M {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3Zqdm31M .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3Zqdm31M .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3Zqdm31M .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3Zqdm31M .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3Zqdm31M .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3Zqdm31M .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3Zqdm31M .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3Zqdm31M .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3Zqdm31M .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3Zqdm31M .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3Zqdm31M .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3ZqdCFpz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3ZqdCFpz .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3ZqdCFpz .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3ZqdCFpz .list-img {
  width: 100px;
}
.cid-sj3ZqdCFpz .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3ZqdCFpz .btn {
  margin: 0px !important;
}
.cid-sj3ZqdCFpz .text-box {
  padding: 1rem;
}
.cid-sj3ZqdCFpz .text-box p {
  margin: 0;
}
.cid-sj3ZqdCFpz .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3ZqdCFpz .ico-box p {
  margin: 0;
}
.cid-sj3ZqdCFpz .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3ZqdCFpz .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3ZqdCFpz .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3ZqdCFpz .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3ZqdCFpz .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3ZqdCFpz .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3ZqdCFpz .carousel-indicators li {
  display: inline-block;
}
.cid-sj3ZqdCFpz .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3ZqdCFpz .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3ZqdCFpz .li1,
.cid-sj3ZqdCFpz .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/c2-2-1600x1200.jpg");
}
.cid-sj3ZqdCFpz .li2,
.cid-sj3ZqdCFpz .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/c5-1600x1200.jpg");
}
.cid-sj3ZqdCFpz .li3,
.cid-sj3ZqdCFpz .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/c6-800x600.jpg");
}
.cid-sj3ZqdCFpz .li4,
.cid-sj3ZqdCFpz .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/c1-5-1600x1200.jpg");
}
.cid-sj3ZqdCFpz .li5,
.cid-sj3ZqdCFpz .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/render0005-2000x1448.jpg");
}
.cid-sj3ZqdCFpz .li6,
.cid-sj3ZqdCFpz .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/render0001-2000x1448.jpg");
}
@media (max-width: 992px) {
  .cid-sj3ZqdCFpz .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj3ZqdCFpz .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3ZqdCFpz .card-title2 {
  color: #149dcc;
}
.cid-sj3ZqdCFpz .sq {
  color: #767676;
}
.cid-sj3ZqdCFpz .item {
  color: #767676;
}
.cid-sj3ZqeaZgy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3ZqeaZgy .row-links {
  justify-content: center;
}
.cid-sj3ZqeaZgy .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3ZqeaZgy .wrapper {
  display: flex;
}
.cid-sj3ZqeaZgy .container {
  max-width: 1700px;
}
.cid-sj3ZqeaZgy img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3ZqeaZgy img {
  filter: invert(1);
}
.cid-sj3ZqeaZgy .row-copirayt {
  min-width: 300px;
}
.cid-sj3ZqeaZgy .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3ZqeaZgy .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3ZqeaZgy .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3ZqeaZgy .row-links,
.cid-sj3ZqeaZgy .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3ZqeaZgy .foot-menu {
  width: fit-content;
}
.cid-sj3ZqeaZgy .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3ZqeaZgy .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3ZqeaZgy .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3ZqeaZgy .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3ZqeaZgy .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3ZqeaZgy .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3ZqeaZgy .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3ZqeaZgy .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3ZqeaZgy .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3ZqeaZgy .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3ZqeaZgy .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3ZqeaZgy .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3ZqeaZgy .media-container-row {
    justify-content: center;
  }
  .cid-sj3ZqeaZgy .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3ZqeaZgy .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3ZqeaZgy .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3ZqeaZgy .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3Zqevnku .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3Zqevnku .nav-item,
.cid-sj3Zqevnku .nav-link,
.cid-sj3Zqevnku .navbar-caption {
  font-weight: normal;
}
.cid-sj3Zqevnku .nav-item:focus,
.cid-sj3Zqevnku .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3Zqevnku .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3Zqevnku .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3Zqevnku .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3Zqevnku .nav-item:hover .nav-link:before,
  .cid-sj3Zqevnku .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3Zqevnku .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3Zqevnku .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3Zqevnku .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3Zqevnku .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3Zqevnku .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3Zqevnku .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3Zqevnku .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3Zqevnku .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3Zqevnku .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3Zqevnku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3Zqevnku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3Zqevnku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3Zqevnku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3Zqevnku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3Zqevnku .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3Zqevnku .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3Zqevnku .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3Zqevnku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3Zqevnku .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3Zqevnku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3Zqevnku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3Zqevnku .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3Zqevnku .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3Zqevnku .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3Zqevnku .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3Zqevnku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3Zqevnku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3Zqevnku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3Zqevnku .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3Zqevnku .dropdown-item.active,
.cid-sj3Zqevnku .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3Zqevnku .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3Zqevnku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3Zqevnku .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3Zqevnku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3Zqevnku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3Zqevnku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3Zqevnku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3Zqevnku .navbar-buttons {
  text-align: center;
}
.cid-sj3Zqevnku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3Zqevnku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3Zqevnku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3Zqevnku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3Zqevnku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3Zqevnku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3Zqevnku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3Zqevnku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3Zqevnku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3Zqevnku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3Zqevnku .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3Zqevnku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3Zqevnku .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3Zqevnku .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3Zqevnku .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3Zqevnku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3Zqevnku a.nav-link .mbr-iconfont-btn,
.cid-sj3Zqevnku a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3Zqevnku a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3Zqevnku a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3Zqevnku a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3Zqevnku .navbar {
    height: 77px;
  }
  .cid-sj3Zqevnku .navbar.opened {
    height: auto;
  }
  .cid-sj3Zqevnku .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj3ZR8qs4k {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj3ZR8qs4k .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj3ZR8qs4k .row {
  flex-direction: row-reverse;
}
.cid-sj3ZR8qs4k img {
  width: 100%;
}
.cid-sj3ZR8VLyg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj3ZR8VLyg .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj3ZR8VLyg .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj3ZR8VLyg .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj3ZR8VLyg .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj3ZR8VLyg .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj3ZR8VLyg .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj3ZR8VLyg .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj3ZR8VLyg .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj3ZR8VLyg .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj3ZR8VLyg .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj3ZR8VLyg .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj3ZR9fJPF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj3ZR9fJPF .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj3ZR9fJPF .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj3ZR9fJPF .list-img {
  width: 100px;
}
.cid-sj3ZR9fJPF .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj3ZR9fJPF .btn {
  margin: 0px !important;
}
.cid-sj3ZR9fJPF .text-box {
  padding: 1rem;
}
.cid-sj3ZR9fJPF .text-box p {
  margin: 0;
}
.cid-sj3ZR9fJPF .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj3ZR9fJPF .ico-box p {
  margin: 0;
}
.cid-sj3ZR9fJPF .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3ZR9fJPF .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj3ZR9fJPF .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj3ZR9fJPF .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj3ZR9fJPF .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj3ZR9fJPF .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj3ZR9fJPF .carousel-indicators li {
  display: inline-block;
}
.cid-sj3ZR9fJPF .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj3ZR9fJPF .carousel-indicators li.active {
  border: 0px;
}
.cid-sj3ZR9fJPF .li1,
.cid-sj3ZR9fJPF .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/staparaba-1440x1080.jpg");
}
.cid-sj3ZR9fJPF .li2,
.cid-sj3ZR9fJPF .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/karamanaba-1440x1080.jpg");
}
.cid-sj3ZR9fJPF .li3,
.cid-sj3ZR9fJPF .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/karanfiaba-1-1440x1080.jpg");
}
.cid-sj3ZR9fJPF .li4,
.cid-sj3ZR9fJPF .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/t6-2000x1000.jpg");
}
.cid-sj3ZR9fJPF .li5,
.cid-sj3ZR9fJPF .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/adabaa-1-1440x1080.jpg");
}
.cid-sj3ZR9fJPF .li6,
.cid-sj3ZR9fJPF .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/resim-067-1496x1122.jpg");
}
@media (max-width: 992px) {
  .cid-sj3ZR9fJPF .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 250px;
  }
}
@media (max-width: 576px) {
  .cid-sj3ZR9fJPF .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj3ZR9fJPF .card-title2 {
  color: #149dcc;
}
.cid-sj3ZR9fJPF .sq {
  color: #767676;
}
.cid-sj3ZR9fJPF .item {
  color: #767676;
}
.cid-sj3ZR9MdW0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj3ZR9MdW0 .row-links {
  justify-content: center;
}
.cid-sj3ZR9MdW0 .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj3ZR9MdW0 .wrapper {
  display: flex;
}
.cid-sj3ZR9MdW0 .container {
  max-width: 1700px;
}
.cid-sj3ZR9MdW0 img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj3ZR9MdW0 img {
  filter: invert(1);
}
.cid-sj3ZR9MdW0 .row-copirayt {
  min-width: 300px;
}
.cid-sj3ZR9MdW0 .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj3ZR9MdW0 .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj3ZR9MdW0 .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj3ZR9MdW0 .row-links,
.cid-sj3ZR9MdW0 .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj3ZR9MdW0 .foot-menu {
  width: fit-content;
}
.cid-sj3ZR9MdW0 .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj3ZR9MdW0 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj3ZR9MdW0 .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj3ZR9MdW0 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj3ZR9MdW0 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj3ZR9MdW0 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj3ZR9MdW0 .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj3ZR9MdW0 .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj3ZR9MdW0 .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj3ZR9MdW0 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj3ZR9MdW0 .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj3ZR9MdW0 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj3ZR9MdW0 .media-container-row {
    justify-content: center;
  }
  .cid-sj3ZR9MdW0 .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj3ZR9MdW0 .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj3ZR9MdW0 .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj3ZR9MdW0 .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj3ZRa7NWD .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3ZRa7NWD .nav-item,
.cid-sj3ZRa7NWD .nav-link,
.cid-sj3ZRa7NWD .navbar-caption {
  font-weight: normal;
}
.cid-sj3ZRa7NWD .nav-item:focus,
.cid-sj3ZRa7NWD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj3ZRa7NWD .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj3ZRa7NWD .nav-item .nav-link {
    position: relative;
  }
  .cid-sj3ZRa7NWD .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj3ZRa7NWD .nav-item:hover .nav-link:before,
  .cid-sj3ZRa7NWD .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj3ZRa7NWD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj3ZRa7NWD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj3ZRa7NWD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj3ZRa7NWD .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj3ZRa7NWD .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj3ZRa7NWD .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj3ZRa7NWD .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj3ZRa7NWD .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj3ZRa7NWD .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj3ZRa7NWD .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj3ZRa7NWD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj3ZRa7NWD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj3ZRa7NWD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj3ZRa7NWD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj3ZRa7NWD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj3ZRa7NWD .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj3ZRa7NWD .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj3ZRa7NWD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj3ZRa7NWD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj3ZRa7NWD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj3ZRa7NWD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj3ZRa7NWD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj3ZRa7NWD .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj3ZRa7NWD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj3ZRa7NWD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj3ZRa7NWD .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj3ZRa7NWD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj3ZRa7NWD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj3ZRa7NWD .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj3ZRa7NWD .dropdown-item.active,
.cid-sj3ZRa7NWD .dropdown-item:active {
  background-color: transparent;
}
.cid-sj3ZRa7NWD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj3ZRa7NWD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj3ZRa7NWD .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj3ZRa7NWD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj3ZRa7NWD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj3ZRa7NWD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj3ZRa7NWD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj3ZRa7NWD .navbar-buttons {
  text-align: center;
}
.cid-sj3ZRa7NWD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj3ZRa7NWD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj3ZRa7NWD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj3ZRa7NWD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3ZRa7NWD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj3ZRa7NWD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj3ZRa7NWD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3ZRa7NWD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj3ZRa7NWD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj3ZRa7NWD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj3ZRa7NWD .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj3ZRa7NWD a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3ZRa7NWD .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj3ZRa7NWD .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj3ZRa7NWD .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj3ZRa7NWD .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj3ZRa7NWD a.nav-link .mbr-iconfont-btn,
.cid-sj3ZRa7NWD a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj3ZRa7NWD a.nav-link:hover .mbr-iconfont-btn,
.cid-sj3ZRa7NWD a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj3ZRa7NWD a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj3ZRa7NWD .navbar {
    height: 77px;
  }
  .cid-sj3ZRa7NWD .navbar.opened {
    height: auto;
  }
  .cid-sj3ZRa7NWD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj429fROpW {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e8eaed;
}
.cid-sj429fROpW .mbr-media {
  position: relative;
}
.cid-sj429fROpW .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sj429fROpW .animate__fadeInUp:before {
  background: #e8eaed;
}
.cid-sj429fROpW .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sj429fROpW .mbr-media span {
  font-size: 4rem;
  transition: all 0.3s;
  color: #737476;
  display: block;
}
.cid-sj429fROpW .mbr-media span:hover {
  color: #ffe161;
  transform: scale(1.1);
}
.cid-sj429fROpW .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sj429fROpW .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sj429fROpW .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sj429fROpW .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sj429fROpW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sj429fROpW .mbr-section-title {
  color: #161734;
}
.cid-sj429gmIsn {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-sj429gmIsn .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj429gmIsn .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj429gmIsn .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj429gmIsn .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj429gmIsn .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj429gmIsn .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj429gmIsn .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj429gmIsn .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj429gmIsn .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj429gmIsn .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj429gmIsn .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-sj429gGJeI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj429gGJeI .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj429gGJeI .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj429gGJeI .list-img {
  width: 100px;
}
.cid-sj429gGJeI .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj429gGJeI .btn {
  margin: 0px !important;
}
.cid-sj429gGJeI .text-box {
  padding: 1rem;
}
.cid-sj429gGJeI .text-box p {
  margin: 0;
}
.cid-sj429gGJeI .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj429gGJeI .ico-box p {
  margin: 0;
}
.cid-sj429gGJeI .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj429gGJeI .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj429gGJeI .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj429gGJeI .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj429gGJeI .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj429gGJeI .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj429gGJeI .carousel-indicators li {
  display: inline-block;
}
.cid-sj429gGJeI .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj429gGJeI .carousel-indicators li.active {
  border: 0px;
}
.cid-sj429gGJeI .li1,
.cid-sj429gGJeI .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/2-2000x1520.jpg");
}
.cid-sj429gGJeI .li2,
.cid-sj429gGJeI .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/3-2000x970.jpg");
}
.cid-sj429gGJeI .li3,
.cid-sj429gGJeI .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/4-2000x1322.jpg");
}
.cid-sj429gGJeI .li4,
.cid-sj429gGJeI .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/1-1-2000x1520.jpg");
}
.cid-sj429gGJeI .li5,
.cid-sj429gGJeI .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/11-1536x1167.jpg");
}
.cid-sj429gGJeI .li6,
.cid-sj429gGJeI .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/snf-2000x1473.jpg");
}
@media (max-width: 992px) {
  .cid-sj429gGJeI .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sj429gGJeI .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj429gGJeI .card-title2 {
  color: #149dcc;
}
.cid-sj429gGJeI .sq {
  color: #767676;
}
.cid-sj429gGJeI .item {
  color: #767676;
}
.cid-sj429he5ud {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj429he5ud .row-links {
  justify-content: center;
}
.cid-sj429he5ud .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj429he5ud .wrapper {
  display: flex;
}
.cid-sj429he5ud .container {
  max-width: 1700px;
}
.cid-sj429he5ud img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj429he5ud img {
  filter: invert(1);
}
.cid-sj429he5ud .row-copirayt {
  min-width: 300px;
}
.cid-sj429he5ud .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj429he5ud .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj429he5ud .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj429he5ud .row-links,
.cid-sj429he5ud .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj429he5ud .foot-menu {
  width: fit-content;
}
.cid-sj429he5ud .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj429he5ud .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj429he5ud .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj429he5ud .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj429he5ud .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj429he5ud .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj429he5ud .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj429he5ud .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj429he5ud .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj429he5ud .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj429he5ud .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj429he5ud .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj429he5ud .media-container-row {
    justify-content: center;
  }
  .cid-sj429he5ud .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj429he5ud .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj429he5ud .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj429he5ud .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj429hzLaV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj429hzLaV .nav-item,
.cid-sj429hzLaV .nav-link,
.cid-sj429hzLaV .navbar-caption {
  font-weight: normal;
}
.cid-sj429hzLaV .nav-item:focus,
.cid-sj429hzLaV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj429hzLaV .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj429hzLaV .nav-item .nav-link {
    position: relative;
  }
  .cid-sj429hzLaV .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj429hzLaV .nav-item:hover .nav-link:before,
  .cid-sj429hzLaV .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj429hzLaV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj429hzLaV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj429hzLaV .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj429hzLaV .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj429hzLaV .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj429hzLaV .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj429hzLaV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj429hzLaV .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj429hzLaV .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj429hzLaV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj429hzLaV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj429hzLaV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj429hzLaV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj429hzLaV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj429hzLaV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj429hzLaV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj429hzLaV .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj429hzLaV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj429hzLaV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj429hzLaV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj429hzLaV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj429hzLaV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj429hzLaV .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj429hzLaV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj429hzLaV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj429hzLaV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj429hzLaV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj429hzLaV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj429hzLaV .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj429hzLaV .dropdown-item.active,
.cid-sj429hzLaV .dropdown-item:active {
  background-color: transparent;
}
.cid-sj429hzLaV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj429hzLaV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj429hzLaV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj429hzLaV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj429hzLaV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj429hzLaV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj429hzLaV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj429hzLaV .navbar-buttons {
  text-align: center;
}
.cid-sj429hzLaV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj429hzLaV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj429hzLaV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj429hzLaV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj429hzLaV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj429hzLaV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj429hzLaV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj429hzLaV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj429hzLaV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj429hzLaV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj429hzLaV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj429hzLaV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj429hzLaV .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj429hzLaV .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj429hzLaV .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj429hzLaV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj429hzLaV a.nav-link .mbr-iconfont-btn,
.cid-sj429hzLaV a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj429hzLaV a.nav-link:hover .mbr-iconfont-btn,
.cid-sj429hzLaV a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj429hzLaV a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj429hzLaV .navbar {
    height: 77px;
  }
  .cid-sj429hzLaV .navbar.opened {
    height: auto;
  }
  .cid-sj429hzLaV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj4iyKSayu {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj4iyKSayu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj4iyKSayu .row {
  flex-direction: row-reverse;
}
.cid-sj4iyKSayu img {
  width: 100%;
}
.cid-sj4iyLgIVN {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-sj4iyLgIVN .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj4iyLgIVN .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj4iyLgIVN .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj4iyLgIVN .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj4iyLgIVN .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj4iyLgIVN .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj4iyLgIVN .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj4iyLgIVN .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj4iyLgIVN .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj4iyLgIVN .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj4iyLgIVN .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj4iyLumsv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj4iyLumsv .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj4iyLumsv .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj4iyLumsv .list-img {
  width: 100px;
}
.cid-sj4iyLumsv .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj4iyLumsv .btn {
  margin: 0px !important;
}
.cid-sj4iyLumsv .text-box {
  padding: 1rem;
}
.cid-sj4iyLumsv .text-box p {
  margin: 0;
}
.cid-sj4iyLumsv .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj4iyLumsv .ico-box p {
  margin: 0;
}
.cid-sj4iyLumsv .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4iyLumsv .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4iyLumsv .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj4iyLumsv .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj4iyLumsv .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj4iyLumsv .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj4iyLumsv .carousel-indicators li {
  display: inline-block;
}
.cid-sj4iyLumsv .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj4iyLumsv .carousel-indicators li.active {
  border: 0px;
}
.cid-sj4iyLumsv .li1,
.cid-sj4iyLumsv .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/ebk-5-1200x912.jpg");
}
.cid-sj4iyLumsv .li2,
.cid-sj4iyLumsv .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/ebk-6-1200x912.jpg");
}
.cid-sj4iyLumsv .li3,
.cid-sj4iyLumsv .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/ebk-7-1200x912.jpg");
}
.cid-sj4iyLumsv .li4,
.cid-sj4iyLumsv .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/ebk-10-2000x1127.jpg");
}
.cid-sj4iyLumsv .li5,
.cid-sj4iyLumsv .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/ebk9-2-1200x733.jpg");
}
.cid-sj4iyLumsv .li6,
.cid-sj4iyLumsv .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/ebk-8-1200x912.jpg");
}
@media (max-width: 992px) {
  .cid-sj4iyLumsv .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 250px;
  }
}
@media (max-width: 576px) {
  .cid-sj4iyLumsv .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj4iyLumsv .card-title2 {
  color: #149dcc;
}
.cid-sj4iyLumsv .sq {
  color: #767676;
}
.cid-sj4iyLumsv .item {
  color: #767676;
}
.cid-sj4iyM4HiD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj4iyM4HiD .row-links {
  justify-content: center;
}
.cid-sj4iyM4HiD .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj4iyM4HiD .wrapper {
  display: flex;
}
.cid-sj4iyM4HiD .container {
  max-width: 1700px;
}
.cid-sj4iyM4HiD img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj4iyM4HiD img {
  filter: invert(1);
}
.cid-sj4iyM4HiD .row-copirayt {
  min-width: 300px;
}
.cid-sj4iyM4HiD .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj4iyM4HiD .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj4iyM4HiD .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj4iyM4HiD .row-links,
.cid-sj4iyM4HiD .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj4iyM4HiD .foot-menu {
  width: fit-content;
}
.cid-sj4iyM4HiD .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj4iyM4HiD .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj4iyM4HiD .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj4iyM4HiD .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj4iyM4HiD .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj4iyM4HiD .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj4iyM4HiD .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj4iyM4HiD .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj4iyM4HiD .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj4iyM4HiD .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj4iyM4HiD .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj4iyM4HiD .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj4iyM4HiD .media-container-row {
    justify-content: center;
  }
  .cid-sj4iyM4HiD .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj4iyM4HiD .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj4iyM4HiD .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj4iyM4HiD .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj4iyMruUx .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4iyMruUx .nav-item,
.cid-sj4iyMruUx .nav-link,
.cid-sj4iyMruUx .navbar-caption {
  font-weight: normal;
}
.cid-sj4iyMruUx .nav-item:focus,
.cid-sj4iyMruUx .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj4iyMruUx .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj4iyMruUx .nav-item .nav-link {
    position: relative;
  }
  .cid-sj4iyMruUx .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj4iyMruUx .nav-item:hover .nav-link:before,
  .cid-sj4iyMruUx .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj4iyMruUx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj4iyMruUx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj4iyMruUx .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj4iyMruUx .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj4iyMruUx .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj4iyMruUx .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4iyMruUx .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj4iyMruUx .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj4iyMruUx .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj4iyMruUx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj4iyMruUx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj4iyMruUx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj4iyMruUx .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj4iyMruUx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj4iyMruUx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj4iyMruUx .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj4iyMruUx .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj4iyMruUx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj4iyMruUx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj4iyMruUx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj4iyMruUx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj4iyMruUx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj4iyMruUx .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj4iyMruUx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj4iyMruUx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj4iyMruUx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj4iyMruUx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj4iyMruUx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj4iyMruUx .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj4iyMruUx .dropdown-item.active,
.cid-sj4iyMruUx .dropdown-item:active {
  background-color: transparent;
}
.cid-sj4iyMruUx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj4iyMruUx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj4iyMruUx .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj4iyMruUx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj4iyMruUx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj4iyMruUx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj4iyMruUx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj4iyMruUx .navbar-buttons {
  text-align: center;
}
.cid-sj4iyMruUx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj4iyMruUx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj4iyMruUx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj4iyMruUx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4iyMruUx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4iyMruUx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj4iyMruUx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4iyMruUx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj4iyMruUx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj4iyMruUx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4iyMruUx .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj4iyMruUx a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4iyMruUx .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj4iyMruUx .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj4iyMruUx .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj4iyMruUx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4iyMruUx a.nav-link .mbr-iconfont-btn,
.cid-sj4iyMruUx a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj4iyMruUx a.nav-link:hover .mbr-iconfont-btn,
.cid-sj4iyMruUx a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj4iyMruUx a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj4iyMruUx .navbar {
    height: 77px;
  }
  .cid-sj4iyMruUx .navbar.opened {
    height: auto;
  }
  .cid-sj4iyMruUx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj4jfoL2yI {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj4jfoL2yI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj4jfoL2yI .row {
  flex-direction: row-reverse;
}
.cid-sj4jfoL2yI img {
  width: 100%;
}
.cid-sj4jfpf2jl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj4jfpf2jl .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj4jfpf2jl .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj4jfpf2jl .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj4jfpf2jl .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj4jfpf2jl .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj4jfpf2jl .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj4jfpf2jl .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj4jfpf2jl .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj4jfpf2jl .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj4jfpf2jl .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj4jfpf2jl .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj4jfpzITi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj4jfpzITi .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj4jfpzITi .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj4jfpzITi .list-img {
  width: 100px;
}
.cid-sj4jfpzITi .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj4jfpzITi .btn {
  margin: 0px !important;
}
.cid-sj4jfpzITi .text-box {
  padding: 1rem;
}
.cid-sj4jfpzITi .text-box p {
  margin: 0;
}
.cid-sj4jfpzITi .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj4jfpzITi .ico-box p {
  margin: 0;
}
.cid-sj4jfpzITi .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4jfpzITi .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4jfpzITi .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj4jfpzITi .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj4jfpzITi .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj4jfpzITi .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj4jfpzITi .carousel-indicators li {
  display: inline-block;
}
.cid-sj4jfpzITi .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj4jfpzITi .carousel-indicators li.active {
  border: 0px;
}
.cid-sj4jfpzITi .li1,
.cid-sj4jfpzITi .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/c1-2000x1500.jpg");
}
.cid-sj4jfpzITi .li2,
.cid-sj4jfpzITi .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/c2-2000x1500.jpg");
}
.cid-sj4jfpzITi .li3,
.cid-sj4jfpzITi .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/c3-2000x1500.jpg");
}
.cid-sj4jfpzITi .li4,
.cid-sj4jfpzITi .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/c4-2000x1500.jpg");
}
.cid-sj4jfpzITi .li5,
.cid-sj4jfpzITi .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/c5-2000x1500.jpg");
}
.cid-sj4jfpzITi .li6,
.cid-sj4jfpzITi .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/ebk-8-1200x912.jpg");
}
@media (max-width: 992px) {
  .cid-sj4jfpzITi .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 250px;
  }
}
@media (max-width: 576px) {
  .cid-sj4jfpzITi .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj4jfpzITi .card-title2 {
  color: #149dcc;
}
.cid-sj4jfpzITi .sq {
  color: #767676;
}
.cid-sj4jfpzITi .item {
  color: #767676;
}
.cid-sj4jfqav4w {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj4jfqav4w .row-links {
  justify-content: center;
}
.cid-sj4jfqav4w .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj4jfqav4w .wrapper {
  display: flex;
}
.cid-sj4jfqav4w .container {
  max-width: 1700px;
}
.cid-sj4jfqav4w img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj4jfqav4w img {
  filter: invert(1);
}
.cid-sj4jfqav4w .row-copirayt {
  min-width: 300px;
}
.cid-sj4jfqav4w .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj4jfqav4w .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj4jfqav4w .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj4jfqav4w .row-links,
.cid-sj4jfqav4w .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj4jfqav4w .foot-menu {
  width: fit-content;
}
.cid-sj4jfqav4w .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj4jfqav4w .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj4jfqav4w .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj4jfqav4w .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj4jfqav4w .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj4jfqav4w .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj4jfqav4w .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj4jfqav4w .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj4jfqav4w .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj4jfqav4w .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj4jfqav4w .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj4jfqav4w .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj4jfqav4w .media-container-row {
    justify-content: center;
  }
  .cid-sj4jfqav4w .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj4jfqav4w .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj4jfqav4w .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj4jfqav4w .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj4jfqvdBF .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4jfqvdBF .nav-item,
.cid-sj4jfqvdBF .nav-link,
.cid-sj4jfqvdBF .navbar-caption {
  font-weight: normal;
}
.cid-sj4jfqvdBF .nav-item:focus,
.cid-sj4jfqvdBF .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj4jfqvdBF .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj4jfqvdBF .nav-item .nav-link {
    position: relative;
  }
  .cid-sj4jfqvdBF .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj4jfqvdBF .nav-item:hover .nav-link:before,
  .cid-sj4jfqvdBF .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj4jfqvdBF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj4jfqvdBF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj4jfqvdBF .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj4jfqvdBF .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj4jfqvdBF .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj4jfqvdBF .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4jfqvdBF .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj4jfqvdBF .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj4jfqvdBF .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj4jfqvdBF .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj4jfqvdBF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj4jfqvdBF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj4jfqvdBF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj4jfqvdBF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj4jfqvdBF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj4jfqvdBF .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj4jfqvdBF .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj4jfqvdBF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj4jfqvdBF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj4jfqvdBF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj4jfqvdBF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj4jfqvdBF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj4jfqvdBF .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj4jfqvdBF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj4jfqvdBF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj4jfqvdBF .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj4jfqvdBF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj4jfqvdBF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj4jfqvdBF .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj4jfqvdBF .dropdown-item.active,
.cid-sj4jfqvdBF .dropdown-item:active {
  background-color: transparent;
}
.cid-sj4jfqvdBF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj4jfqvdBF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj4jfqvdBF .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj4jfqvdBF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj4jfqvdBF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj4jfqvdBF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj4jfqvdBF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj4jfqvdBF .navbar-buttons {
  text-align: center;
}
.cid-sj4jfqvdBF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj4jfqvdBF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj4jfqvdBF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj4jfqvdBF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4jfqvdBF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4jfqvdBF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj4jfqvdBF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4jfqvdBF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj4jfqvdBF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj4jfqvdBF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4jfqvdBF .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj4jfqvdBF a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4jfqvdBF .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj4jfqvdBF .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj4jfqvdBF .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj4jfqvdBF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4jfqvdBF a.nav-link .mbr-iconfont-btn,
.cid-sj4jfqvdBF a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj4jfqvdBF a.nav-link:hover .mbr-iconfont-btn,
.cid-sj4jfqvdBF a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj4jfqvdBF a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj4jfqvdBF .navbar {
    height: 77px;
  }
  .cid-sj4jfqvdBF .navbar.opened {
    height: auto;
  }
  .cid-sj4jfqvdBF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj4kpsiZpC {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj4kpsiZpC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj4kpsiZpC .row {
  flex-direction: row-reverse;
}
.cid-sj4kpsiZpC img {
  width: 100%;
}
.cid-sj4kpt5fkE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj4kpt5fkE .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj4kpt5fkE .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj4kpt5fkE .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj4kpt5fkE .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj4kpt5fkE .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj4kpt5fkE .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj4kpt5fkE .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj4kpt5fkE .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj4kpt5fkE .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj4kpt5fkE .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj4kpt5fkE .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj4kptpu1N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj4kptpu1N .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj4kptpu1N .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj4kptpu1N .list-img {
  width: 100px;
}
.cid-sj4kptpu1N .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj4kptpu1N .btn {
  margin: 0px !important;
}
.cid-sj4kptpu1N .text-box {
  padding: 1rem;
}
.cid-sj4kptpu1N .text-box p {
  margin: 0;
}
.cid-sj4kptpu1N .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj4kptpu1N .ico-box p {
  margin: 0;
}
.cid-sj4kptpu1N .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4kptpu1N .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4kptpu1N .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj4kptpu1N .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj4kptpu1N .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj4kptpu1N .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj4kptpu1N .carousel-indicators li {
  display: inline-block;
}
.cid-sj4kptpu1N .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj4kptpu1N .carousel-indicators li.active {
  border: 0px;
}
.cid-sj4kptpu1N .li1,
.cid-sj4kptpu1N .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/345-1600x1200.jpg");
}
.cid-sj4kptpu1N .li2,
.cid-sj4kptpu1N .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/c15-v4-1600x1200.jpg");
}
.cid-sj4kptpu1N .li3,
.cid-sj4kptpu1N .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/c16-v1-1600x1200.jpg");
}
.cid-sj4kptpu1N .li4,
.cid-sj4kptpu1N .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/c13-v3-1600x1200.jpg");
}
.cid-sj4kptpu1N .li5,
.cid-sj4kptpu1N .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/c14-v3-1600x1200.jpg");
}
.cid-sj4kptpu1N .li6,
.cid-sj4kptpu1N .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/ebk-8-1200x912.jpg");
}
@media (max-width: 992px) {
  .cid-sj4kptpu1N .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 250px;
  }
}
@media (max-width: 576px) {
  .cid-sj4kptpu1N .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj4kptpu1N .card-title2 {
  color: #149dcc;
}
.cid-sj4kptpu1N .sq {
  color: #767676;
}
.cid-sj4kptpu1N .item {
  color: #767676;
}
.cid-sj4kptXwC1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj4kptXwC1 .row-links {
  justify-content: center;
}
.cid-sj4kptXwC1 .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj4kptXwC1 .wrapper {
  display: flex;
}
.cid-sj4kptXwC1 .container {
  max-width: 1700px;
}
.cid-sj4kptXwC1 img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj4kptXwC1 img {
  filter: invert(1);
}
.cid-sj4kptXwC1 .row-copirayt {
  min-width: 300px;
}
.cid-sj4kptXwC1 .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj4kptXwC1 .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj4kptXwC1 .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj4kptXwC1 .row-links,
.cid-sj4kptXwC1 .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj4kptXwC1 .foot-menu {
  width: fit-content;
}
.cid-sj4kptXwC1 .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj4kptXwC1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj4kptXwC1 .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj4kptXwC1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj4kptXwC1 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj4kptXwC1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj4kptXwC1 .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj4kptXwC1 .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj4kptXwC1 .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj4kptXwC1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj4kptXwC1 .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj4kptXwC1 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj4kptXwC1 .media-container-row {
    justify-content: center;
  }
  .cid-sj4kptXwC1 .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj4kptXwC1 .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj4kptXwC1 .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj4kptXwC1 .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj4kpuitIa .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4kpuitIa .nav-item,
.cid-sj4kpuitIa .nav-link,
.cid-sj4kpuitIa .navbar-caption {
  font-weight: normal;
}
.cid-sj4kpuitIa .nav-item:focus,
.cid-sj4kpuitIa .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj4kpuitIa .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj4kpuitIa .nav-item .nav-link {
    position: relative;
  }
  .cid-sj4kpuitIa .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj4kpuitIa .nav-item:hover .nav-link:before,
  .cid-sj4kpuitIa .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj4kpuitIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj4kpuitIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj4kpuitIa .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj4kpuitIa .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj4kpuitIa .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj4kpuitIa .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4kpuitIa .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj4kpuitIa .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj4kpuitIa .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj4kpuitIa .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj4kpuitIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj4kpuitIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj4kpuitIa .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj4kpuitIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj4kpuitIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj4kpuitIa .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj4kpuitIa .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj4kpuitIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj4kpuitIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj4kpuitIa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj4kpuitIa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj4kpuitIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj4kpuitIa .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj4kpuitIa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj4kpuitIa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj4kpuitIa .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj4kpuitIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj4kpuitIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj4kpuitIa .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj4kpuitIa .dropdown-item.active,
.cid-sj4kpuitIa .dropdown-item:active {
  background-color: transparent;
}
.cid-sj4kpuitIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj4kpuitIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj4kpuitIa .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj4kpuitIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj4kpuitIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj4kpuitIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj4kpuitIa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj4kpuitIa .navbar-buttons {
  text-align: center;
}
.cid-sj4kpuitIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj4kpuitIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj4kpuitIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj4kpuitIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4kpuitIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4kpuitIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj4kpuitIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4kpuitIa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj4kpuitIa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj4kpuitIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4kpuitIa .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj4kpuitIa a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4kpuitIa .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj4kpuitIa .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj4kpuitIa .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj4kpuitIa .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4kpuitIa a.nav-link .mbr-iconfont-btn,
.cid-sj4kpuitIa a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj4kpuitIa a.nav-link:hover .mbr-iconfont-btn,
.cid-sj4kpuitIa a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj4kpuitIa a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj4kpuitIa .navbar {
    height: 77px;
  }
  .cid-sj4kpuitIa .navbar.opened {
    height: auto;
  }
  .cid-sj4kpuitIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj4m2gkLdc {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj4m2gkLdc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj4m2gkLdc .row {
  flex-direction: row-reverse;
}
.cid-sj4m2gkLdc img {
  width: 100%;
}
.cid-sj4m2h1AbX {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj4m2h1AbX .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj4m2h1AbX .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj4m2h1AbX .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj4m2h1AbX .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj4m2h1AbX .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj4m2h1AbX .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj4m2h1AbX .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj4m2h1AbX .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj4m2h1AbX .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj4m2h1AbX .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj4m2h1AbX .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj4m2hkvYc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj4m2hkvYc .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj4m2hkvYc .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj4m2hkvYc .list-img {
  width: 100px;
}
.cid-sj4m2hkvYc .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj4m2hkvYc .btn {
  margin: 0px !important;
}
.cid-sj4m2hkvYc .text-box {
  padding: 1rem;
}
.cid-sj4m2hkvYc .text-box p {
  margin: 0;
}
.cid-sj4m2hkvYc .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj4m2hkvYc .ico-box p {
  margin: 0;
}
.cid-sj4m2hkvYc .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4m2hkvYc .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4m2hkvYc .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj4m2hkvYc .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj4m2hkvYc .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj4m2hkvYc .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj4m2hkvYc .carousel-indicators li {
  display: inline-block;
}
.cid-sj4m2hkvYc .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj4m2hkvYc .carousel-indicators li.active {
  border: 0px;
}
.cid-sj4m2hkvYc .li1,
.cid-sj4m2hkvYc .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/82-copy-copy-2000x1250.jpg");
}
.cid-sj4m2hkvYc .li2,
.cid-sj4m2hkvYc .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/83-copy-copy-2000x1250.jpg");
}
.cid-sj4m2hkvYc .li3,
.cid-sj4m2hkvYc .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/84-copy-copy-2000x1250.jpg");
}
.cid-sj4m2hkvYc .li4,
.cid-sj4m2hkvYc .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/85-copy-copy-2000x1250.jpg");
}
.cid-sj4m2hkvYc .li5,
.cid-sj4m2hkvYc .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/81-copy-copy-2000x1250.jpg");
}
.cid-sj4m2hkvYc .li6,
.cid-sj4m2hkvYc .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/ebk-8-1200x912.jpg");
}
@media (max-width: 992px) {
  .cid-sj4m2hkvYc .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 250px;
  }
}
@media (max-width: 576px) {
  .cid-sj4m2hkvYc .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj4m2hkvYc .card-title2 {
  color: #149dcc;
}
.cid-sj4m2hkvYc .sq {
  color: #767676;
}
.cid-sj4m2hkvYc .item {
  color: #767676;
}
.cid-sj4m2hTEW2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj4m2hTEW2 .row-links {
  justify-content: center;
}
.cid-sj4m2hTEW2 .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj4m2hTEW2 .wrapper {
  display: flex;
}
.cid-sj4m2hTEW2 .container {
  max-width: 1700px;
}
.cid-sj4m2hTEW2 img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj4m2hTEW2 img {
  filter: invert(1);
}
.cid-sj4m2hTEW2 .row-copirayt {
  min-width: 300px;
}
.cid-sj4m2hTEW2 .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj4m2hTEW2 .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj4m2hTEW2 .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj4m2hTEW2 .row-links,
.cid-sj4m2hTEW2 .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj4m2hTEW2 .foot-menu {
  width: fit-content;
}
.cid-sj4m2hTEW2 .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj4m2hTEW2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj4m2hTEW2 .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj4m2hTEW2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj4m2hTEW2 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj4m2hTEW2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj4m2hTEW2 .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj4m2hTEW2 .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj4m2hTEW2 .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj4m2hTEW2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj4m2hTEW2 .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj4m2hTEW2 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj4m2hTEW2 .media-container-row {
    justify-content: center;
  }
  .cid-sj4m2hTEW2 .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj4m2hTEW2 .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj4m2hTEW2 .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj4m2hTEW2 .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj4m2ieuKr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4m2ieuKr .nav-item,
.cid-sj4m2ieuKr .nav-link,
.cid-sj4m2ieuKr .navbar-caption {
  font-weight: normal;
}
.cid-sj4m2ieuKr .nav-item:focus,
.cid-sj4m2ieuKr .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj4m2ieuKr .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj4m2ieuKr .nav-item .nav-link {
    position: relative;
  }
  .cid-sj4m2ieuKr .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj4m2ieuKr .nav-item:hover .nav-link:before,
  .cid-sj4m2ieuKr .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj4m2ieuKr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj4m2ieuKr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj4m2ieuKr .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj4m2ieuKr .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj4m2ieuKr .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj4m2ieuKr .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4m2ieuKr .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj4m2ieuKr .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj4m2ieuKr .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj4m2ieuKr .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj4m2ieuKr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj4m2ieuKr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj4m2ieuKr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj4m2ieuKr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj4m2ieuKr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj4m2ieuKr .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj4m2ieuKr .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj4m2ieuKr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj4m2ieuKr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj4m2ieuKr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj4m2ieuKr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj4m2ieuKr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj4m2ieuKr .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj4m2ieuKr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj4m2ieuKr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj4m2ieuKr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj4m2ieuKr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj4m2ieuKr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj4m2ieuKr .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj4m2ieuKr .dropdown-item.active,
.cid-sj4m2ieuKr .dropdown-item:active {
  background-color: transparent;
}
.cid-sj4m2ieuKr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj4m2ieuKr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj4m2ieuKr .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj4m2ieuKr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj4m2ieuKr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj4m2ieuKr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj4m2ieuKr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj4m2ieuKr .navbar-buttons {
  text-align: center;
}
.cid-sj4m2ieuKr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj4m2ieuKr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj4m2ieuKr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj4m2ieuKr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4m2ieuKr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4m2ieuKr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj4m2ieuKr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4m2ieuKr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj4m2ieuKr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj4m2ieuKr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4m2ieuKr .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj4m2ieuKr a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4m2ieuKr .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj4m2ieuKr .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj4m2ieuKr .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj4m2ieuKr .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4m2ieuKr a.nav-link .mbr-iconfont-btn,
.cid-sj4m2ieuKr a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj4m2ieuKr a.nav-link:hover .mbr-iconfont-btn,
.cid-sj4m2ieuKr a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj4m2ieuKr a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj4m2ieuKr .navbar {
    height: 77px;
  }
  .cid-sj4m2ieuKr .navbar.opened {
    height: auto;
  }
  .cid-sj4m2ieuKr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj4mXbtCYl {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj4mXbtCYl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj4mXbtCYl .row {
  flex-direction: row-reverse;
}
.cid-sj4mXbtCYl img {
  width: 100%;
}
.cid-sj4mXc0DV7 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #737476;
}
.cid-sj4mXc0DV7 .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj4mXc0DV7 .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj4mXc0DV7 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj4mXc0DV7 .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj4mXc0DV7 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj4mXc0DV7 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj4mXc0DV7 .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj4mXc0DV7 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj4mXc0DV7 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj4mXc0DV7 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj4mXc0DV7 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj4mXcjMZU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj4mXcjMZU .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj4mXcjMZU .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj4mXcjMZU .list-img {
  width: 100px;
}
.cid-sj4mXcjMZU .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj4mXcjMZU .btn {
  margin: 0px !important;
}
.cid-sj4mXcjMZU .text-box {
  padding: 1rem;
}
.cid-sj4mXcjMZU .text-box p {
  margin: 0;
}
.cid-sj4mXcjMZU .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj4mXcjMZU .ico-box p {
  margin: 0;
}
.cid-sj4mXcjMZU .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4mXcjMZU .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4mXcjMZU .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj4mXcjMZU .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj4mXcjMZU .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj4mXcjMZU .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj4mXcjMZU .carousel-indicators li {
  display: inline-block;
}
.cid-sj4mXcjMZU .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj4mXcjMZU .carousel-indicators li.active {
  border: 0px;
}
.cid-sj4mXcjMZU .li1,
.cid-sj4mXcjMZU .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/dsc-6874-2000x1328.jpg");
}
.cid-sj4mXcjMZU .li2,
.cid-sj4mXcjMZU .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/dsc-6871-2000x1328.jpg");
}
.cid-sj4mXcjMZU .li3,
.cid-sj4mXcjMZU .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/dsc-6939-2000x1328.jpg");
}
.cid-sj4mXcjMZU .li4,
.cid-sj4mXcjMZU .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/h3-1000x760.jpg");
}
.cid-sj4mXcjMZU .li5,
.cid-sj4mXcjMZU .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/hh3-1000x760.jpg");
}
.cid-sj4mXcjMZU .li6,
.cid-sj4mXcjMZU .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/h6-1000x760.jpg");
}
@media (max-width: 992px) {
  .cid-sj4mXcjMZU .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 250px;
  }
}
@media (max-width: 576px) {
  .cid-sj4mXcjMZU .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj4mXcjMZU .card-title2 {
  color: #149dcc;
}
.cid-sj4mXcjMZU .sq {
  color: #767676;
}
.cid-sj4mXcjMZU .item {
  color: #767676;
}
.cid-sj4mXcRpOp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj4mXcRpOp .row-links {
  justify-content: center;
}
.cid-sj4mXcRpOp .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj4mXcRpOp .wrapper {
  display: flex;
}
.cid-sj4mXcRpOp .container {
  max-width: 1700px;
}
.cid-sj4mXcRpOp img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj4mXcRpOp img {
  filter: invert(1);
}
.cid-sj4mXcRpOp .row-copirayt {
  min-width: 300px;
}
.cid-sj4mXcRpOp .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj4mXcRpOp .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj4mXcRpOp .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj4mXcRpOp .row-links,
.cid-sj4mXcRpOp .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj4mXcRpOp .foot-menu {
  width: fit-content;
}
.cid-sj4mXcRpOp .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj4mXcRpOp .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj4mXcRpOp .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj4mXcRpOp .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj4mXcRpOp .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj4mXcRpOp .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj4mXcRpOp .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj4mXcRpOp .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj4mXcRpOp .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj4mXcRpOp .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj4mXcRpOp .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj4mXcRpOp .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj4mXcRpOp .media-container-row {
    justify-content: center;
  }
  .cid-sj4mXcRpOp .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj4mXcRpOp .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj4mXcRpOp .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj4mXcRpOp .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj4mXdctXf .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4mXdctXf .nav-item,
.cid-sj4mXdctXf .nav-link,
.cid-sj4mXdctXf .navbar-caption {
  font-weight: normal;
}
.cid-sj4mXdctXf .nav-item:focus,
.cid-sj4mXdctXf .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj4mXdctXf .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj4mXdctXf .nav-item .nav-link {
    position: relative;
  }
  .cid-sj4mXdctXf .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj4mXdctXf .nav-item:hover .nav-link:before,
  .cid-sj4mXdctXf .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj4mXdctXf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj4mXdctXf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj4mXdctXf .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj4mXdctXf .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj4mXdctXf .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj4mXdctXf .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4mXdctXf .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj4mXdctXf .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj4mXdctXf .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj4mXdctXf .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj4mXdctXf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj4mXdctXf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj4mXdctXf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj4mXdctXf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj4mXdctXf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj4mXdctXf .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj4mXdctXf .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj4mXdctXf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj4mXdctXf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj4mXdctXf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj4mXdctXf .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj4mXdctXf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj4mXdctXf .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj4mXdctXf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj4mXdctXf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj4mXdctXf .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj4mXdctXf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj4mXdctXf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj4mXdctXf .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj4mXdctXf .dropdown-item.active,
.cid-sj4mXdctXf .dropdown-item:active {
  background-color: transparent;
}
.cid-sj4mXdctXf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj4mXdctXf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj4mXdctXf .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj4mXdctXf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj4mXdctXf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj4mXdctXf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj4mXdctXf ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj4mXdctXf .navbar-buttons {
  text-align: center;
}
.cid-sj4mXdctXf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj4mXdctXf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj4mXdctXf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj4mXdctXf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4mXdctXf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4mXdctXf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj4mXdctXf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4mXdctXf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj4mXdctXf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj4mXdctXf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4mXdctXf .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj4mXdctXf a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4mXdctXf .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj4mXdctXf .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj4mXdctXf .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj4mXdctXf .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4mXdctXf a.nav-link .mbr-iconfont-btn,
.cid-sj4mXdctXf a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj4mXdctXf a.nav-link:hover .mbr-iconfont-btn,
.cid-sj4mXdctXf a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj4mXdctXf a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj4mXdctXf .navbar {
    height: 77px;
  }
  .cid-sj4mXdctXf .navbar.opened {
    height: auto;
  }
  .cid-sj4mXdctXf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj4nV3c2L2 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj4nV3c2L2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj4nV3c2L2 .row {
  flex-direction: row-reverse;
}
.cid-sj4nV3c2L2 img {
  width: 100%;
}
.cid-sj4nV3JXIf {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-sj4nV3JXIf .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj4nV3JXIf .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj4nV3JXIf .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj4nV3JXIf .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj4nV3JXIf .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj4nV3JXIf .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj4nV3JXIf .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj4nV3JXIf .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj4nV3JXIf .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj4nV3JXIf .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj4nV3JXIf .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj4nV42YyS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj4nV42YyS .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj4nV42YyS .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj4nV42YyS .list-img {
  width: 100px;
}
.cid-sj4nV42YyS .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj4nV42YyS .btn {
  margin: 0px !important;
}
.cid-sj4nV42YyS .text-box {
  padding: 1rem;
}
.cid-sj4nV42YyS .text-box p {
  margin: 0;
}
.cid-sj4nV42YyS .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj4nV42YyS .ico-box p {
  margin: 0;
}
.cid-sj4nV42YyS .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4nV42YyS .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4nV42YyS .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj4nV42YyS .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj4nV42YyS .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj4nV42YyS .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj4nV42YyS .carousel-indicators li {
  display: inline-block;
}
.cid-sj4nV42YyS .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj4nV42YyS .carousel-indicators li.active {
  border: 0px;
}
.cid-sj4nV42YyS .li1,
.cid-sj4nV42YyS .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/034-2000x1130.jpg");
}
.cid-sj4nV42YyS .li2,
.cid-sj4nV42YyS .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/c1-30.10-1600x1200.jpg");
}
.cid-sj4nV42YyS .li3,
.cid-sj4nV42YyS .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/a1-2000x1243.jpg");
}
.cid-sj4nV42YyS .li4,
.cid-sj4nV42YyS .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/c2-30.10-1600x1200.jpg");
}
.cid-sj4nV42YyS .li5,
.cid-sj4nV42YyS .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/01-2000x1000.jpg");
}
.cid-sj4nV42YyS .li6,
.cid-sj4nV42YyS .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/ebk-8-1200x912.jpg");
}
@media (max-width: 992px) {
  .cid-sj4nV42YyS .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 250px;
  }
}
@media (max-width: 576px) {
  .cid-sj4nV42YyS .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj4nV42YyS .card-title2 {
  color: #149dcc;
}
.cid-sj4nV42YyS .sq {
  color: #767676;
}
.cid-sj4nV42YyS .item {
  color: #767676;
}
.cid-sj4nV4BOso {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj4nV4BOso .row-links {
  justify-content: center;
}
.cid-sj4nV4BOso .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj4nV4BOso .wrapper {
  display: flex;
}
.cid-sj4nV4BOso .container {
  max-width: 1700px;
}
.cid-sj4nV4BOso img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj4nV4BOso img {
  filter: invert(1);
}
.cid-sj4nV4BOso .row-copirayt {
  min-width: 300px;
}
.cid-sj4nV4BOso .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj4nV4BOso .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj4nV4BOso .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj4nV4BOso .row-links,
.cid-sj4nV4BOso .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj4nV4BOso .foot-menu {
  width: fit-content;
}
.cid-sj4nV4BOso .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj4nV4BOso .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj4nV4BOso .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj4nV4BOso .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj4nV4BOso .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj4nV4BOso .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj4nV4BOso .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj4nV4BOso .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj4nV4BOso .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj4nV4BOso .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj4nV4BOso .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj4nV4BOso .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj4nV4BOso .media-container-row {
    justify-content: center;
  }
  .cid-sj4nV4BOso .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj4nV4BOso .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj4nV4BOso .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj4nV4BOso .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj4nV4XHRn .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4nV4XHRn .nav-item,
.cid-sj4nV4XHRn .nav-link,
.cid-sj4nV4XHRn .navbar-caption {
  font-weight: normal;
}
.cid-sj4nV4XHRn .nav-item:focus,
.cid-sj4nV4XHRn .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj4nV4XHRn .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj4nV4XHRn .nav-item .nav-link {
    position: relative;
  }
  .cid-sj4nV4XHRn .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj4nV4XHRn .nav-item:hover .nav-link:before,
  .cid-sj4nV4XHRn .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj4nV4XHRn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj4nV4XHRn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj4nV4XHRn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj4nV4XHRn .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj4nV4XHRn .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj4nV4XHRn .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4nV4XHRn .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj4nV4XHRn .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj4nV4XHRn .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj4nV4XHRn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj4nV4XHRn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj4nV4XHRn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj4nV4XHRn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj4nV4XHRn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj4nV4XHRn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj4nV4XHRn .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj4nV4XHRn .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj4nV4XHRn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj4nV4XHRn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj4nV4XHRn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj4nV4XHRn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj4nV4XHRn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj4nV4XHRn .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj4nV4XHRn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj4nV4XHRn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj4nV4XHRn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj4nV4XHRn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj4nV4XHRn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj4nV4XHRn .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj4nV4XHRn .dropdown-item.active,
.cid-sj4nV4XHRn .dropdown-item:active {
  background-color: transparent;
}
.cid-sj4nV4XHRn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj4nV4XHRn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj4nV4XHRn .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj4nV4XHRn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj4nV4XHRn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj4nV4XHRn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj4nV4XHRn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj4nV4XHRn .navbar-buttons {
  text-align: center;
}
.cid-sj4nV4XHRn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj4nV4XHRn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj4nV4XHRn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj4nV4XHRn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4nV4XHRn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4nV4XHRn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj4nV4XHRn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4nV4XHRn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj4nV4XHRn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj4nV4XHRn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4nV4XHRn .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj4nV4XHRn a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4nV4XHRn .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj4nV4XHRn .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj4nV4XHRn .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj4nV4XHRn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4nV4XHRn a.nav-link .mbr-iconfont-btn,
.cid-sj4nV4XHRn a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj4nV4XHRn a.nav-link:hover .mbr-iconfont-btn,
.cid-sj4nV4XHRn a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj4nV4XHRn a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj4nV4XHRn .navbar {
    height: 77px;
  }
  .cid-sj4nV4XHRn .navbar.opened {
    height: auto;
  }
  .cid-sj4nV4XHRn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sj4lltdaTJ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
@media (max-width: 991px) {
  .cid-sj4lltdaTJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sj4lltdaTJ .row {
  flex-direction: row-reverse;
}
.cid-sj4lltdaTJ img {
  width: 100%;
}
.cid-sj4lltOdcK {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #737476;
}
.cid-sj4lltOdcK .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-sj4lltOdcK .mbr-text {
  line-height: 1.5;
  color: #ffffff;
}
.cid-sj4lltOdcK .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sj4lltOdcK .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sj4lltOdcK .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sj4lltOdcK .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sj4lltOdcK .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sj4lltOdcK .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sj4lltOdcK .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sj4lltOdcK .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sj4lltOdcK .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sj4llu8eDi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaed;
}
.cid-sj4llu8eDi .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sj4llu8eDi .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sj4llu8eDi .list-img {
  width: 100px;
}
.cid-sj4llu8eDi .ico2 {
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sj4llu8eDi .btn {
  margin: 0px !important;
}
.cid-sj4llu8eDi .text-box {
  padding: 1rem;
}
.cid-sj4llu8eDi .text-box p {
  margin: 0;
}
.cid-sj4llu8eDi .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sj4llu8eDi .ico-box p {
  margin: 0;
}
.cid-sj4llu8eDi .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4llu8eDi .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sj4llu8eDi .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sj4llu8eDi .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sj4llu8eDi .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sj4llu8eDi .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sj4llu8eDi .carousel-indicators li {
  display: inline-block;
}
.cid-sj4llu8eDi .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sj4llu8eDi .carousel-indicators li.active {
  border: 0px;
}
.cid-sj4llu8eDi .li1,
.cid-sj4llu8eDi .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/c1-6-1600x1200.jpg");
}
.cid-sj4llu8eDi .li2,
.cid-sj4llu8eDi .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/c2-4-1600x1200.jpg");
}
.cid-sj4llu8eDi .li3,
.cid-sj4llu8eDi .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/c3-1-1600x1200.jpg");
}
.cid-sj4llu8eDi .li4,
.cid-sj4llu8eDi .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/cm1-1600x1200.jpg");
}
.cid-sj4llu8eDi .li5,
.cid-sj4llu8eDi .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/cm4-1600x1200.jpg");
}
.cid-sj4llu8eDi .li6,
.cid-sj4llu8eDi .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/ebk-8-1200x912.jpg");
}
@media (max-width: 992px) {
  .cid-sj4llu8eDi .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 250px;
  }
}
@media (max-width: 576px) {
  .cid-sj4llu8eDi .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sj4llu8eDi .card-title2 {
  color: #149dcc;
}
.cid-sj4llu8eDi .sq {
  color: #767676;
}
.cid-sj4llu8eDi .item {
  color: #767676;
}
.cid-sj4lluGWN5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e8eaed;
}
.cid-sj4lluGWN5 .row-links {
  justify-content: center;
}
.cid-sj4lluGWN5 .social-row {
  justify-content: center;
  padding: 0 1rem;
}
.cid-sj4lluGWN5 .wrapper {
  display: flex;
}
.cid-sj4lluGWN5 .container {
  max-width: 1700px;
}
.cid-sj4lluGWN5 img {
  width: 75px;
  margin: auto;
  padding: 0 0.5rem;
}
.cid-sj4lluGWN5 img {
  filter: invert(1);
}
.cid-sj4lluGWN5 .row-copirayt {
  min-width: 300px;
}
.cid-sj4lluGWN5 .foot-menu-item {
  word-wrap: unset;
  word-break: unset;
  white-space: nowrap;
}
.cid-sj4lluGWN5 .line {
  width: 100%;
  height: 50px;
  position: relative;
}
.cid-sj4lluGWN5 .line:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #353535;
  content: "";
}
.cid-sj4lluGWN5 .row-links,
.cid-sj4lluGWN5 .wrapper {
  min-width: fit-content;
  padding: 0 0.5rem;
}
.cid-sj4lluGWN5 .foot-menu {
  width: fit-content;
}
.cid-sj4lluGWN5 .media-container-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cid-sj4lluGWN5 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.cid-sj4lluGWN5 .media-container-row .foot-menu li {
  padding: 0 1rem;
}
.cid-sj4lluGWN5 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sj4lluGWN5 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.cid-sj4lluGWN5 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #bbbbbb;
  transition: all 0.3s;
}
.cid-sj4lluGWN5 .media-container-row .social-list .mbr-iconfont-social:hover {
  color: #ffe161;
}
.cid-sj4lluGWN5 .media-container-row .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sj4lluGWN5 .media-container-row .social-list a {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sj4lluGWN5 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sj4lluGWN5 .media-container-row .row-copirayt {
  word-break: break-word;
}
.cid-sj4lluGWN5 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sj4lluGWN5 .media-container-row {
    justify-content: center;
  }
  .cid-sj4lluGWN5 .media-container-row .mbr-text {
    text-align: center;
  }
  .cid-sj4lluGWN5 .media-container-row .wrapper {
    flex-direction: column;
  }
  .cid-sj4lluGWN5 .media-container-row .foot-menu {
    margin: auto;
    padding-bottom: 1rem;
  }
}
.cid-sj4lluGWN5 .media-container-row .mbr-text {
  color: #353535;
}
.cid-sj4llv2bpP .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #737476;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4llv2bpP .nav-item,
.cid-sj4llv2bpP .nav-link,
.cid-sj4llv2bpP .navbar-caption {
  font-weight: normal;
}
.cid-sj4llv2bpP .nav-item:focus,
.cid-sj4llv2bpP .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sj4llv2bpP .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-sj4llv2bpP .nav-item .nav-link {
    position: relative;
  }
  .cid-sj4llv2bpP .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #737476;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sj4llv2bpP .nav-item:hover .nav-link:before,
  .cid-sj4llv2bpP .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-sj4llv2bpP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sj4llv2bpP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sj4llv2bpP .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-sj4llv2bpP .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sj4llv2bpP .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sj4llv2bpP .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sj4llv2bpP .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #353535;
}
.cid-sj4llv2bpP .navbar.opened {
  transition: all 0.3s;
  background: #353535 !important;
}
.cid-sj4llv2bpP .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-sj4llv2bpP .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sj4llv2bpP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sj4llv2bpP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sj4llv2bpP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sj4llv2bpP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sj4llv2bpP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sj4llv2bpP .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sj4llv2bpP .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sj4llv2bpP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sj4llv2bpP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sj4llv2bpP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sj4llv2bpP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sj4llv2bpP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sj4llv2bpP .navbar.navbar-short {
  background: #353535 !important;
  min-height: 60px;
}
.cid-sj4llv2bpP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sj4llv2bpP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sj4llv2bpP .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sj4llv2bpP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sj4llv2bpP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sj4llv2bpP .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sj4llv2bpP .dropdown-item.active,
.cid-sj4llv2bpP .dropdown-item:active {
  background-color: transparent;
}
.cid-sj4llv2bpP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sj4llv2bpP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sj4llv2bpP .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sj4llv2bpP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
  z-index: 2;
}
.cid-sj4llv2bpP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sj4llv2bpP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sj4llv2bpP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sj4llv2bpP .navbar-buttons {
  text-align: center;
}
.cid-sj4llv2bpP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sj4llv2bpP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #737476;
}
.cid-sj4llv2bpP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sj4llv2bpP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4llv2bpP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sj4llv2bpP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sj4llv2bpP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4llv2bpP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sj4llv2bpP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sj4llv2bpP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sj4llv2bpP .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sj4llv2bpP a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4llv2bpP .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffe161;
  display: inline-flex;
}
.cid-sj4llv2bpP .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sj4llv2bpP .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sj4llv2bpP .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sj4llv2bpP a.nav-link .mbr-iconfont-btn,
.cid-sj4llv2bpP a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sj4llv2bpP a.nav-link:hover .mbr-iconfont-btn,
.cid-sj4llv2bpP a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sj4llv2bpP a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sj4llv2bpP .navbar {
    height: 77px;
  }
  .cid-sj4llv2bpP .navbar.opened {
    height: auto;
  }
  .cid-sj4llv2bpP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
