body {
  font-family: Jost;
}
.display-1 {
  font-family: 'arial';
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'arial';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'arial';
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'arial';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'arial';
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'arial';
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'arial';
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #ff6666 !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tA0jBMuJa7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tA0jBMuJa7 nav.navbar {
  position: fixed;
}
.cid-tA0jBMuJa7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA0jBMuJa7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tA0jBMuJa7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tA0jBMuJa7 .dropdown-item:hover,
.cid-tA0jBMuJa7 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tA0jBMuJa7 .dropdown-item:hover span {
  color: white;
}
.cid-tA0jBMuJa7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tA0jBMuJa7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tA0jBMuJa7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tA0jBMuJa7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tA0jBMuJa7 .nav-link {
  position: relative;
}
.cid-tA0jBMuJa7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tA0jBMuJa7 .container {
    flex-wrap: wrap;
  }
}
.cid-tA0jBMuJa7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tA0jBMuJa7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tA0jBMuJa7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tA0jBMuJa7 .dropdown-menu,
.cid-tA0jBMuJa7 .navbar.opened {
  background: #a4cd4e !important;
}
.cid-tA0jBMuJa7 .nav-item:focus,
.cid-tA0jBMuJa7 .nav-link:focus {
  outline: none;
}
.cid-tA0jBMuJa7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA0jBMuJa7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA0jBMuJa7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA0jBMuJa7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA0jBMuJa7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA0jBMuJa7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA0jBMuJa7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a4cd4e;
}
.cid-tA0jBMuJa7 .navbar.opened {
  transition: all 0.3s;
}
.cid-tA0jBMuJa7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tA0jBMuJa7 .navbar .navbar-logo img {
  width: auto;
}
.cid-tA0jBMuJa7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tA0jBMuJa7 .navbar.collapsed {
  justify-content: center;
}
.cid-tA0jBMuJa7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA0jBMuJa7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tA0jBMuJa7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tA0jBMuJa7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA0jBMuJa7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA0jBMuJa7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tA0jBMuJa7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA0jBMuJa7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tA0jBMuJa7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tA0jBMuJa7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA0jBMuJa7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA0jBMuJa7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA0jBMuJa7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tA0jBMuJa7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tA0jBMuJa7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA0jBMuJa7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tA0jBMuJa7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tA0jBMuJa7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA0jBMuJa7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA0jBMuJa7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tA0jBMuJa7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tA0jBMuJa7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA0jBMuJa7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA0jBMuJa7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA0jBMuJa7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA0jBMuJa7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tA0jBMuJa7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA0jBMuJa7 .dropdown-item.active,
.cid-tA0jBMuJa7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tA0jBMuJa7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA0jBMuJa7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA0jBMuJa7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA0jBMuJa7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a4cd4e;
}
.cid-tA0jBMuJa7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tA0jBMuJa7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA0jBMuJa7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tA0jBMuJa7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tA0jBMuJa7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tA0jBMuJa7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tA0jBMuJa7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA0jBMuJa7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0jBMuJa7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0jBMuJa7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA0jBMuJa7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0jBMuJa7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA0jBMuJa7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA0jBMuJa7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0jBMuJa7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tA0jBMuJa7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tA0jBMuJa7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA0jBMuJa7 .navbar {
    height: 70px;
  }
  .cid-tA0jBMuJa7 .navbar.opened {
    height: auto;
  }
  .cid-tA0jBMuJa7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA0ta2Sv4n {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #dd2b1d;
}
.cid-tA0ta2Sv4n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA0ta2Sv4n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA0l40xg3v {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-tA0l40xg3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA0l40xg3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA0l40xg3v .mbr-text,
.cid-tA0l40xg3v .mbr-section-btn {
  color: #232323;
}
.cid-tA0l40xg3v .card-title,
.cid-tA0l40xg3v .card-box {
  color: #ffffff;
}
.cid-tA0l40xg3v .mbr-text,
.cid-tA0l40xg3v .link-wrap {
  color: #ffffff;
}
.cid-tA1cskRLaJ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/zirvemutfakzemin01.jpg");
}
@media (max-width: 992px) {
  .cid-tA1cskRLaJ .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-tA1cskRLaJ .link-wrap {
    align-items: center;
  }
}
.cid-tA1cskRLaJ .card-title,
.cid-tA1cskRLaJ .card-box {
  color: #ffffff;
}
.cid-tA1cskRLaJ .mbr-text,
.cid-tA1cskRLaJ .link-wrap,
.cid-tA1cskRLaJ .mbr-section-btn {
  color: #ffffff;
}
.cid-tA1hE1G5Tu {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tA1hE1G5Tu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA1hE1G5Tu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA1hE1G5Tu .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tA1hE1G5Tu .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tA1hE1G5Tu .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tA1hE1G5Tu .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-tA1hE1G5Tu .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tA1hE1G5Tu .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tA1hE1G5Tu .mbr-section-head {
  width: 100%;
}
.cid-tA1hE1G5Tu .mbr-section-title {
  color: #dd2b1d;
}
@media (max-width: 767px) {
  .cid-tA1hE1G5Tu .mbr-section-title {
    text-align: center;
  }
}
.cid-tA1hE1G5Tu .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tA1hE1G5Tu .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tA1hE1G5Tu .card-row {
  align-items: stretch;
}
.cid-tA1hE1G5Tu .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tA1hE1G5Tu .item {
    margin-top: 30px;
  }
}
.cid-tA1hE1G5Tu .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #dd2b1d, #dd2b1d);
}
@media (max-width: 575px) {
  .cid-tA1hE1G5Tu .item-wrapper {
    padding: 20px;
  }
}
.cid-tA1hE1G5Tu .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tA1hE1G5Tu .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-tA1hE1G5Tu .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .4s all;
}
.cid-tA1hE1G5Tu .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tA1hE1G5Tu .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-tA1hE1G5Tu .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-tA1hE1G5Tu .card-title {
  position: relative;
  z-index: 5;
  color: #ffffff;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-tA1hE1G5Tu .card-title {
    margin-bottom: 10px;
  }
}
.cid-tA1hE1G5Tu .card-text {
  position: relative;
  z-index: 5;
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-tA1hE1G5Tu .card-text a {
  transition: .4s all;
}
.cid-tA1hE1G5Tu .card-text a:hover {
  color: #6592e6 !important;
}
.cid-tA1lUq5l1T {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/zirvemutfakzemin01.jpg");
}
.cid-tA1lUq5l1T .mbr-iconfont {
  font-size: 4rem;
  color: #6592e6;
}
.cid-tA1lUq5l1T .count,
.cid-tA1lUq5l1T .card-img {
  color: #dd2b1d;
}
.cid-tA1lUq5l1T H4 {
  color: #dd2b1d;
}
.cid-tA0pcaUHlv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #dd2b1d;
}
.cid-tA0pcaUHlv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA0pcaUHlv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA0pcaUHlv .video-wrapper iframe {
  width: 100%;
}
.cid-tA0pcaUHlv .mbr-section-title,
.cid-tA0pcaUHlv .mbr-section-subtitle,
.cid-tA0pcaUHlv .mbr-text {
  text-align: center;
}
.cid-tA0pcaUHlv .mbr-text {
  color: #ffffff;
}
.cid-tCKHtl6d8w {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCKHtl6d8w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCKHtl6d8w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCKHtl6d8w .mbr-section-title {
  color: #dd2b1d;
}
.cid-tDuQFGYCte {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDuQFGYCte .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-tDuQFGYCte .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-tDuQFGYCte .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-tDuQFGYCte .col-12 {
    margin-top: 30px;
  }
  .cid-tDuQFGYCte .col-12:first-child {
    margin-top: 0px;
  }
  .cid-tDuQFGYCte .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-tDuQFGYCte .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-tDuQFGYCte .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-tDuQFGYCte .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-tA0pHBXWGj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tA0pHBXWGj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA0pHBXWGj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA0pHBXWGj .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tA0pHBXWGj .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tA0pHBXWGj .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tA0pHBXWGj .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tA0pHBXWGj .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-tA0pUdkN9e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tA0pUdkN9e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA0pUdkN9e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA0pUdkN9e .google-map {
  height: 350px;
  position: relative;
}
.cid-tA0pUdkN9e .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tA0pUdkN9e .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tA0pUdkN9e .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tA0pUdkN9e .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tA0qsdVx2s {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background8.jpg");
}
@media (max-width: 767px) {
  .cid-tA0qsdVx2s .content {
    text-align: center;
  }
  .cid-tA0qsdVx2s .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tA0qsdVx2s .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tA0qsdVx2s .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tA0qsdVx2s .media-wrap img {
  height: 6rem;
}
.cid-tA0qsdVx2s .mbr-text {
  color: #8d97ad;
}
.cid-tA0qsdVx2s .p-title {
  font-size: 17px;
}
.cid-tA0qsdVx2s .p-title span {
  color: #111111;
}
.cid-tA0qsdVx2s .title-card {
  font-size: 1.3rem;
}
.cid-tA0qsdVx2s .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tA0qsdVx2s .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tA0qsdVx2s .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tA0qsdVx2s .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tA0qsdVx2s .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tA0qsdVx2s .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tA0qsdVx2s .copyright img {
  margin-right: 10px;
}
.cid-tA0qsdVx2s .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tA0qsdVx2s .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tA0qsdVx2s .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tA0qsdVx2s .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tA0qsdVx2s .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tA0qsdVx2s .p-title,
.cid-tA0qsdVx2s .social-media {
  color: #000000;
}
.cid-tA1jO1QKv1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tC7Y512yvp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tC7Y512yvp nav.navbar {
  position: fixed;
}
.cid-tC7Y512yvp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7Y512yvp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC7Y512yvp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC7Y512yvp .dropdown-item:hover,
.cid-tC7Y512yvp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tC7Y512yvp .dropdown-item:hover span {
  color: white;
}
.cid-tC7Y512yvp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC7Y512yvp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC7Y512yvp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC7Y512yvp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC7Y512yvp .nav-link {
  position: relative;
}
.cid-tC7Y512yvp .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7Y512yvp .container {
    flex-wrap: wrap;
  }
}
.cid-tC7Y512yvp .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7Y512yvp .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tC7Y512yvp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC7Y512yvp .dropdown-menu,
.cid-tC7Y512yvp .navbar.opened {
  background: #a4cd4e !important;
}
.cid-tC7Y512yvp .nav-item:focus,
.cid-tC7Y512yvp .nav-link:focus {
  outline: none;
}
.cid-tC7Y512yvp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC7Y512yvp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC7Y512yvp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC7Y512yvp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7Y512yvp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC7Y512yvp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC7Y512yvp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a4cd4e;
}
.cid-tC7Y512yvp .navbar.opened {
  transition: all 0.3s;
}
.cid-tC7Y512yvp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC7Y512yvp .navbar .navbar-logo img {
  width: auto;
}
.cid-tC7Y512yvp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC7Y512yvp .navbar.collapsed {
  justify-content: center;
}
.cid-tC7Y512yvp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC7Y512yvp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC7Y512yvp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tC7Y512yvp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC7Y512yvp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC7Y512yvp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tC7Y512yvp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC7Y512yvp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC7Y512yvp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC7Y512yvp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC7Y512yvp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC7Y512yvp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC7Y512yvp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC7Y512yvp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tC7Y512yvp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC7Y512yvp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC7Y512yvp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC7Y512yvp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC7Y512yvp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC7Y512yvp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tC7Y512yvp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tC7Y512yvp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC7Y512yvp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC7Y512yvp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC7Y512yvp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tC7Y512yvp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC7Y512yvp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC7Y512yvp .dropdown-item.active,
.cid-tC7Y512yvp .dropdown-item:active {
  background-color: transparent;
}
.cid-tC7Y512yvp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC7Y512yvp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC7Y512yvp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC7Y512yvp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a4cd4e;
}
.cid-tC7Y512yvp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC7Y512yvp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC7Y512yvp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC7Y512yvp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC7Y512yvp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC7Y512yvp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tC7Y512yvp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC7Y512yvp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7Y512yvp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7Y512yvp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC7Y512yvp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7Y512yvp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC7Y512yvp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC7Y512yvp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7Y512yvp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC7Y512yvp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC7Y512yvp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tC7Y512yvp .navbar {
    height: 70px;
  }
  .cid-tC7Y512yvp .navbar.opened {
    height: auto;
  }
  .cid-tC7Y512yvp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC7Y54rKFp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a4cd4e;
}
.cid-tC7Y54rKFp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC7Y54rKFp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC7Y5bUuwA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/zirvemutfakzemin01.jpg");
}
@media (max-width: 992px) {
  .cid-tC7Y5bUuwA .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-tC7Y5bUuwA .link-wrap {
    align-items: center;
  }
}
.cid-tC7Y5bUuwA .card-title,
.cid-tC7Y5bUuwA .card-box {
  color: #ffffff;
}
.cid-tC7Y5bUuwA .mbr-text,
.cid-tC7Y5bUuwA .link-wrap,
.cid-tC7Y5bUuwA .mbr-section-btn {
  color: #ffffff;
}
.cid-tC7Y5yB8il {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background8.jpg");
}
@media (max-width: 767px) {
  .cid-tC7Y5yB8il .content {
    text-align: center;
  }
  .cid-tC7Y5yB8il .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tC7Y5yB8il .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tC7Y5yB8il .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tC7Y5yB8il .media-wrap img {
  height: 6rem;
}
.cid-tC7Y5yB8il .mbr-text {
  color: #8d97ad;
}
.cid-tC7Y5yB8il .p-title {
  font-size: 17px;
}
.cid-tC7Y5yB8il .p-title span {
  color: #111111;
}
.cid-tC7Y5yB8il .title-card {
  font-size: 1.3rem;
}
.cid-tC7Y5yB8il .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tC7Y5yB8il .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tC7Y5yB8il .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tC7Y5yB8il .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tC7Y5yB8il .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tC7Y5yB8il .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tC7Y5yB8il .copyright img {
  margin-right: 10px;
}
.cid-tC7Y5yB8il .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tC7Y5yB8il .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tC7Y5yB8il .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tC7Y5yB8il .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tC7Y5yB8il .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tC7Y5yB8il .p-title,
.cid-tC7Y5yB8il .social-media {
  color: #000000;
}
.cid-tC7Y5ECbQA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tC7YWBYbeS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tC7YWBYbeS nav.navbar {
  position: fixed;
}
.cid-tC7YWBYbeS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7YWBYbeS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC7YWBYbeS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC7YWBYbeS .dropdown-item:hover,
.cid-tC7YWBYbeS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tC7YWBYbeS .dropdown-item:hover span {
  color: white;
}
.cid-tC7YWBYbeS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC7YWBYbeS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC7YWBYbeS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC7YWBYbeS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC7YWBYbeS .nav-link {
  position: relative;
}
.cid-tC7YWBYbeS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7YWBYbeS .container {
    flex-wrap: wrap;
  }
}
.cid-tC7YWBYbeS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7YWBYbeS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tC7YWBYbeS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC7YWBYbeS .dropdown-menu,
.cid-tC7YWBYbeS .navbar.opened {
  background: #a4cd4e !important;
}
.cid-tC7YWBYbeS .nav-item:focus,
.cid-tC7YWBYbeS .nav-link:focus {
  outline: none;
}
.cid-tC7YWBYbeS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC7YWBYbeS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC7YWBYbeS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC7YWBYbeS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7YWBYbeS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC7YWBYbeS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC7YWBYbeS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a4cd4e;
}
.cid-tC7YWBYbeS .navbar.opened {
  transition: all 0.3s;
}
.cid-tC7YWBYbeS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC7YWBYbeS .navbar .navbar-logo img {
  width: auto;
}
.cid-tC7YWBYbeS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC7YWBYbeS .navbar.collapsed {
  justify-content: center;
}
.cid-tC7YWBYbeS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC7YWBYbeS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC7YWBYbeS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tC7YWBYbeS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC7YWBYbeS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC7YWBYbeS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tC7YWBYbeS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC7YWBYbeS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC7YWBYbeS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC7YWBYbeS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC7YWBYbeS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC7YWBYbeS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC7YWBYbeS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC7YWBYbeS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tC7YWBYbeS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC7YWBYbeS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC7YWBYbeS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC7YWBYbeS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC7YWBYbeS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC7YWBYbeS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tC7YWBYbeS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tC7YWBYbeS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC7YWBYbeS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC7YWBYbeS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC7YWBYbeS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tC7YWBYbeS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC7YWBYbeS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC7YWBYbeS .dropdown-item.active,
.cid-tC7YWBYbeS .dropdown-item:active {
  background-color: transparent;
}
.cid-tC7YWBYbeS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC7YWBYbeS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC7YWBYbeS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC7YWBYbeS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a4cd4e;
}
.cid-tC7YWBYbeS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC7YWBYbeS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC7YWBYbeS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC7YWBYbeS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC7YWBYbeS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC7YWBYbeS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tC7YWBYbeS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC7YWBYbeS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7YWBYbeS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7YWBYbeS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC7YWBYbeS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7YWBYbeS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC7YWBYbeS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC7YWBYbeS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7YWBYbeS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC7YWBYbeS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC7YWBYbeS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tC7YWBYbeS .navbar {
    height: 70px;
  }
  .cid-tC7YWBYbeS .navbar.opened {
    height: auto;
  }
  .cid-tC7YWBYbeS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC7YWFcBFM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a4cd4e;
}
.cid-tC7YWFcBFM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC7YWFcBFM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC7YWHj8DD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/zirvemutfakzemin01.jpg");
}
@media (max-width: 992px) {
  .cid-tC7YWHj8DD .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-tC7YWHj8DD .link-wrap {
    align-items: center;
  }
}
.cid-tC7YWHj8DD .card-title,
.cid-tC7YWHj8DD .card-box {
  color: #ffffff;
}
.cid-tC7YWHj8DD .mbr-text,
.cid-tC7YWHj8DD .link-wrap,
.cid-tC7YWHj8DD .mbr-section-btn {
  color: #ffffff;
}
.cid-tC7YWJjesJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dd2b1d;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tC7YWJjesJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tC7YWJjesJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tC7YWJjesJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tC7YWJjesJ .title {
  padding: 0 2rem;
}
.cid-tC7YWJjesJ .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
  height: 300px !important;
}
.cid-tC7YWJjesJ .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-tC7YWJjesJ .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-tC7YWJjesJ .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-tC7YWJjesJ .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-tC7YWJjesJ .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-tC7YWJjesJ .container {
  padding: 0 1rem;
}
.cid-tC7YWJjesJ .mbr-gallery-item--p4 {
  padding: 1rem !important;
}
.cid-tC7YWJjesJ .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tC7YWJjesJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tC7YWJjesJ .icon-focus {
  display: none;
}
.cid-tC7YWJjesJ .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-tC7YWJjesJ .btn-primary-outline:hover {
  background: transparent !important;
  color: #6592e6 !important;
}
.cid-tC7YWJjesJ li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-tC7YWJjesJ li {
  position: relative;
}
.cid-tC7YWJjesJ .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tC7YWJjesJ .btn {
  font-family: Jost !important;
}
.cid-tC7YWJjesJ .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tC7YWJjesJ .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tC7YWJjesJ li:not(:last-child):after {
    top: 9px;
  }
  .cid-tC7YWJjesJ .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-tC7YWJjesJ .container {
    padding: 0rem;
  }
  .cid-tC7YWJjesJ .title {
    padding: 0 1rem;
  }
}
.cid-tC7YWJjesJ H2 {
  color: #89b758;
}
.cid-tC7YWLYP4q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background8.jpg");
}
@media (max-width: 767px) {
  .cid-tC7YWLYP4q .content {
    text-align: center;
  }
  .cid-tC7YWLYP4q .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tC7YWLYP4q .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tC7YWLYP4q .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tC7YWLYP4q .media-wrap img {
  height: 6rem;
}
.cid-tC7YWLYP4q .mbr-text {
  color: #8d97ad;
}
.cid-tC7YWLYP4q .p-title {
  font-size: 17px;
}
.cid-tC7YWLYP4q .p-title span {
  color: #111111;
}
.cid-tC7YWLYP4q .title-card {
  font-size: 1.3rem;
}
.cid-tC7YWLYP4q .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tC7YWLYP4q .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tC7YWLYP4q .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tC7YWLYP4q .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tC7YWLYP4q .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tC7YWLYP4q .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tC7YWLYP4q .copyright img {
  margin-right: 10px;
}
.cid-tC7YWLYP4q .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tC7YWLYP4q .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tC7YWLYP4q .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tC7YWLYP4q .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tC7YWLYP4q .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tC7YWLYP4q .p-title,
.cid-tC7YWLYP4q .social-media {
  color: #000000;
}
.cid-tC7YWPmpZV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tC7Z2KnhKd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tC7Z2KnhKd nav.navbar {
  position: fixed;
}
.cid-tC7Z2KnhKd .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7Z2KnhKd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC7Z2KnhKd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC7Z2KnhKd .dropdown-item:hover,
.cid-tC7Z2KnhKd .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tC7Z2KnhKd .dropdown-item:hover span {
  color: white;
}
.cid-tC7Z2KnhKd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC7Z2KnhKd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC7Z2KnhKd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC7Z2KnhKd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC7Z2KnhKd .nav-link {
  position: relative;
}
.cid-tC7Z2KnhKd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7Z2KnhKd .container {
    flex-wrap: wrap;
  }
}
.cid-tC7Z2KnhKd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7Z2KnhKd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tC7Z2KnhKd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC7Z2KnhKd .dropdown-menu,
.cid-tC7Z2KnhKd .navbar.opened {
  background: #a4cd4e !important;
}
.cid-tC7Z2KnhKd .nav-item:focus,
.cid-tC7Z2KnhKd .nav-link:focus {
  outline: none;
}
.cid-tC7Z2KnhKd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC7Z2KnhKd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC7Z2KnhKd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC7Z2KnhKd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7Z2KnhKd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC7Z2KnhKd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC7Z2KnhKd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a4cd4e;
}
.cid-tC7Z2KnhKd .navbar.opened {
  transition: all 0.3s;
}
.cid-tC7Z2KnhKd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC7Z2KnhKd .navbar .navbar-logo img {
  width: auto;
}
.cid-tC7Z2KnhKd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC7Z2KnhKd .navbar.collapsed {
  justify-content: center;
}
.cid-tC7Z2KnhKd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC7Z2KnhKd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC7Z2KnhKd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tC7Z2KnhKd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC7Z2KnhKd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC7Z2KnhKd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tC7Z2KnhKd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC7Z2KnhKd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC7Z2KnhKd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC7Z2KnhKd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC7Z2KnhKd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC7Z2KnhKd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC7Z2KnhKd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC7Z2KnhKd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tC7Z2KnhKd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC7Z2KnhKd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC7Z2KnhKd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC7Z2KnhKd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC7Z2KnhKd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC7Z2KnhKd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tC7Z2KnhKd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tC7Z2KnhKd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC7Z2KnhKd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC7Z2KnhKd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC7Z2KnhKd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tC7Z2KnhKd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC7Z2KnhKd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC7Z2KnhKd .dropdown-item.active,
.cid-tC7Z2KnhKd .dropdown-item:active {
  background-color: transparent;
}
.cid-tC7Z2KnhKd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC7Z2KnhKd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC7Z2KnhKd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC7Z2KnhKd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a4cd4e;
}
.cid-tC7Z2KnhKd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC7Z2KnhKd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC7Z2KnhKd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC7Z2KnhKd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC7Z2KnhKd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC7Z2KnhKd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tC7Z2KnhKd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC7Z2KnhKd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7Z2KnhKd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7Z2KnhKd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC7Z2KnhKd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7Z2KnhKd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC7Z2KnhKd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC7Z2KnhKd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7Z2KnhKd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC7Z2KnhKd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC7Z2KnhKd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tC7Z2KnhKd .navbar {
    height: 70px;
  }
  .cid-tC7Z2KnhKd .navbar.opened {
    height: auto;
  }
  .cid-tC7Z2KnhKd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC7Z2NpUKU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a4cd4e;
}
.cid-tC7Z2NpUKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC7Z2NpUKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC7Z2P443L {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/zirvemutfakzemin01.jpg");
}
@media (max-width: 992px) {
  .cid-tC7Z2P443L .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-tC7Z2P443L .link-wrap {
    align-items: center;
  }
}
.cid-tC7Z2P443L .card-title,
.cid-tC7Z2P443L .card-box {
  color: #ffffff;
}
.cid-tC7Z2P443L .mbr-text,
.cid-tC7Z2P443L .link-wrap,
.cid-tC7Z2P443L .mbr-section-btn {
  color: #ffffff;
}
.cid-tC7Z2QJDvG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dd2b1d;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tC7Z2QJDvG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tC7Z2QJDvG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tC7Z2QJDvG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tC7Z2QJDvG .title {
  padding: 0 2rem;
}
.cid-tC7Z2QJDvG .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
  height: 300px !important;
}
.cid-tC7Z2QJDvG .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-tC7Z2QJDvG .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-tC7Z2QJDvG .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-tC7Z2QJDvG .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-tC7Z2QJDvG .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-tC7Z2QJDvG .container {
  padding: 0 1rem;
}
.cid-tC7Z2QJDvG .mbr-gallery-item--p4 {
  padding: 1rem !important;
}
.cid-tC7Z2QJDvG .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tC7Z2QJDvG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tC7Z2QJDvG .icon-focus {
  display: none;
}
.cid-tC7Z2QJDvG .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-tC7Z2QJDvG .btn-primary-outline:hover {
  background: transparent !important;
  color: #6592e6 !important;
}
.cid-tC7Z2QJDvG li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-tC7Z2QJDvG li {
  position: relative;
}
.cid-tC7Z2QJDvG .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tC7Z2QJDvG .btn {
  font-family: Jost !important;
}
.cid-tC7Z2QJDvG .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tC7Z2QJDvG .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tC7Z2QJDvG li:not(:last-child):after {
    top: 9px;
  }
  .cid-tC7Z2QJDvG .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-tC7Z2QJDvG .container {
    padding: 0rem;
  }
  .cid-tC7Z2QJDvG .title {
    padding: 0 1rem;
  }
}
.cid-tC7Z2QJDvG H2 {
  color: #89b758;
}
.cid-tC7Z2ThFpL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background8.jpg");
}
@media (max-width: 767px) {
  .cid-tC7Z2ThFpL .content {
    text-align: center;
  }
  .cid-tC7Z2ThFpL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tC7Z2ThFpL .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tC7Z2ThFpL .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tC7Z2ThFpL .media-wrap img {
  height: 6rem;
}
.cid-tC7Z2ThFpL .mbr-text {
  color: #8d97ad;
}
.cid-tC7Z2ThFpL .p-title {
  font-size: 17px;
}
.cid-tC7Z2ThFpL .p-title span {
  color: #111111;
}
.cid-tC7Z2ThFpL .title-card {
  font-size: 1.3rem;
}
.cid-tC7Z2ThFpL .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tC7Z2ThFpL .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tC7Z2ThFpL .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tC7Z2ThFpL .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tC7Z2ThFpL .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tC7Z2ThFpL .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tC7Z2ThFpL .copyright img {
  margin-right: 10px;
}
.cid-tC7Z2ThFpL .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tC7Z2ThFpL .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tC7Z2ThFpL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tC7Z2ThFpL .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tC7Z2ThFpL .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tC7Z2ThFpL .p-title,
.cid-tC7Z2ThFpL .social-media {
  color: #000000;
}
.cid-tC7Z2XAFje {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tC7Zeo7ZUv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tC7Zeo7ZUv nav.navbar {
  position: fixed;
}
.cid-tC7Zeo7ZUv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7Zeo7ZUv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC7Zeo7ZUv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC7Zeo7ZUv .dropdown-item:hover,
.cid-tC7Zeo7ZUv .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tC7Zeo7ZUv .dropdown-item:hover span {
  color: white;
}
.cid-tC7Zeo7ZUv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC7Zeo7ZUv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC7Zeo7ZUv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC7Zeo7ZUv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC7Zeo7ZUv .nav-link {
  position: relative;
}
.cid-tC7Zeo7ZUv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7Zeo7ZUv .container {
    flex-wrap: wrap;
  }
}
.cid-tC7Zeo7ZUv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7Zeo7ZUv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tC7Zeo7ZUv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC7Zeo7ZUv .dropdown-menu,
.cid-tC7Zeo7ZUv .navbar.opened {
  background: #a4cd4e !important;
}
.cid-tC7Zeo7ZUv .nav-item:focus,
.cid-tC7Zeo7ZUv .nav-link:focus {
  outline: none;
}
.cid-tC7Zeo7ZUv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC7Zeo7ZUv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC7Zeo7ZUv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC7Zeo7ZUv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7Zeo7ZUv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC7Zeo7ZUv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC7Zeo7ZUv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a4cd4e;
}
.cid-tC7Zeo7ZUv .navbar.opened {
  transition: all 0.3s;
}
.cid-tC7Zeo7ZUv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC7Zeo7ZUv .navbar .navbar-logo img {
  width: auto;
}
.cid-tC7Zeo7ZUv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC7Zeo7ZUv .navbar.collapsed {
  justify-content: center;
}
.cid-tC7Zeo7ZUv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC7Zeo7ZUv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC7Zeo7ZUv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tC7Zeo7ZUv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC7Zeo7ZUv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC7Zeo7ZUv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tC7Zeo7ZUv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC7Zeo7ZUv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC7Zeo7ZUv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC7Zeo7ZUv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC7Zeo7ZUv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC7Zeo7ZUv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC7Zeo7ZUv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC7Zeo7ZUv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tC7Zeo7ZUv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC7Zeo7ZUv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC7Zeo7ZUv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC7Zeo7ZUv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC7Zeo7ZUv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC7Zeo7ZUv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tC7Zeo7ZUv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tC7Zeo7ZUv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC7Zeo7ZUv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC7Zeo7ZUv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC7Zeo7ZUv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tC7Zeo7ZUv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC7Zeo7ZUv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC7Zeo7ZUv .dropdown-item.active,
.cid-tC7Zeo7ZUv .dropdown-item:active {
  background-color: transparent;
}
.cid-tC7Zeo7ZUv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC7Zeo7ZUv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC7Zeo7ZUv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC7Zeo7ZUv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a4cd4e;
}
.cid-tC7Zeo7ZUv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC7Zeo7ZUv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC7Zeo7ZUv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC7Zeo7ZUv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC7Zeo7ZUv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC7Zeo7ZUv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tC7Zeo7ZUv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC7Zeo7ZUv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7Zeo7ZUv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7Zeo7ZUv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC7Zeo7ZUv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7Zeo7ZUv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC7Zeo7ZUv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC7Zeo7ZUv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7Zeo7ZUv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC7Zeo7ZUv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC7Zeo7ZUv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tC7Zeo7ZUv .navbar {
    height: 70px;
  }
  .cid-tC7Zeo7ZUv .navbar.opened {
    height: auto;
  }
  .cid-tC7Zeo7ZUv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC7Zesj8HN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a4cd4e;
}
.cid-tC7Zesj8HN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC7Zesj8HN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC7ZeuHUiB {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/zirvemutfakzemin01.jpg");
}
@media (max-width: 992px) {
  .cid-tC7ZeuHUiB .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-tC7ZeuHUiB .link-wrap {
    align-items: center;
  }
}
.cid-tC7ZeuHUiB .card-title,
.cid-tC7ZeuHUiB .card-box {
  color: #ffffff;
}
.cid-tC7ZeuHUiB .mbr-text,
.cid-tC7ZeuHUiB .link-wrap,
.cid-tC7ZeuHUiB .mbr-section-btn {
  color: #ffffff;
}
.cid-tC7Zezw3Po {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background8.jpg");
}
@media (max-width: 767px) {
  .cid-tC7Zezw3Po .content {
    text-align: center;
  }
  .cid-tC7Zezw3Po .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tC7Zezw3Po .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tC7Zezw3Po .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tC7Zezw3Po .media-wrap img {
  height: 6rem;
}
.cid-tC7Zezw3Po .mbr-text {
  color: #8d97ad;
}
.cid-tC7Zezw3Po .p-title {
  font-size: 17px;
}
.cid-tC7Zezw3Po .p-title span {
  color: #111111;
}
.cid-tC7Zezw3Po .title-card {
  font-size: 1.3rem;
}
.cid-tC7Zezw3Po .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tC7Zezw3Po .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tC7Zezw3Po .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tC7Zezw3Po .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tC7Zezw3Po .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tC7Zezw3Po .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tC7Zezw3Po .copyright img {
  margin-right: 10px;
}
.cid-tC7Zezw3Po .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tC7Zezw3Po .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tC7Zezw3Po .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tC7Zezw3Po .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tC7Zezw3Po .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tC7Zezw3Po .p-title,
.cid-tC7Zezw3Po .social-media {
  color: #000000;
}
.cid-tC7ZeDm35j {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tC7Zkimcex {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tC7Zkimcex nav.navbar {
  position: fixed;
}
.cid-tC7Zkimcex .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7Zkimcex .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC7Zkimcex .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC7Zkimcex .dropdown-item:hover,
.cid-tC7Zkimcex .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tC7Zkimcex .dropdown-item:hover span {
  color: white;
}
.cid-tC7Zkimcex .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC7Zkimcex .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC7Zkimcex .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC7Zkimcex .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC7Zkimcex .nav-link {
  position: relative;
}
.cid-tC7Zkimcex .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7Zkimcex .container {
    flex-wrap: wrap;
  }
}
.cid-tC7Zkimcex .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7Zkimcex .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tC7Zkimcex .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC7Zkimcex .dropdown-menu,
.cid-tC7Zkimcex .navbar.opened {
  background: #a4cd4e !important;
}
.cid-tC7Zkimcex .nav-item:focus,
.cid-tC7Zkimcex .nav-link:focus {
  outline: none;
}
.cid-tC7Zkimcex .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC7Zkimcex .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC7Zkimcex .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC7Zkimcex .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7Zkimcex .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC7Zkimcex .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC7Zkimcex .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a4cd4e;
}
.cid-tC7Zkimcex .navbar.opened {
  transition: all 0.3s;
}
.cid-tC7Zkimcex .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC7Zkimcex .navbar .navbar-logo img {
  width: auto;
}
.cid-tC7Zkimcex .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC7Zkimcex .navbar.collapsed {
  justify-content: center;
}
.cid-tC7Zkimcex .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC7Zkimcex .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC7Zkimcex .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tC7Zkimcex .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC7Zkimcex .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC7Zkimcex .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tC7Zkimcex .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC7Zkimcex .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC7Zkimcex .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC7Zkimcex .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC7Zkimcex .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC7Zkimcex .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC7Zkimcex .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC7Zkimcex .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tC7Zkimcex .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC7Zkimcex .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC7Zkimcex .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC7Zkimcex .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC7Zkimcex .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC7Zkimcex .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tC7Zkimcex .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tC7Zkimcex .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC7Zkimcex .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC7Zkimcex .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC7Zkimcex .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tC7Zkimcex .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC7Zkimcex .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC7Zkimcex .dropdown-item.active,
.cid-tC7Zkimcex .dropdown-item:active {
  background-color: transparent;
}
.cid-tC7Zkimcex .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC7Zkimcex .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC7Zkimcex .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC7Zkimcex .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a4cd4e;
}
.cid-tC7Zkimcex .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC7Zkimcex .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC7Zkimcex ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC7Zkimcex .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC7Zkimcex button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC7Zkimcex button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tC7Zkimcex button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC7Zkimcex button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7Zkimcex button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7Zkimcex button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC7Zkimcex nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7Zkimcex nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC7Zkimcex nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC7Zkimcex nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7Zkimcex .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC7Zkimcex a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC7Zkimcex .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tC7Zkimcex .navbar {
    height: 70px;
  }
  .cid-tC7Zkimcex .navbar.opened {
    height: auto;
  }
  .cid-tC7Zkimcex .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC7Zkl0OKY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a4cd4e;
}
.cid-tC7Zkl0OKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC7Zkl0OKY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCKCWtjfvr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tCKCWtjfvr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tCKCWtjfvr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCKCWtjfvr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tCKCWtjfvr .title {
  padding: 0 2rem;
}
.cid-tCKCWtjfvr .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
  height: 300px !important;
}
.cid-tCKCWtjfvr .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-tCKCWtjfvr .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-tCKCWtjfvr .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-tCKCWtjfvr .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-tCKCWtjfvr .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-tCKCWtjfvr .container {
  padding: 0 1rem;
}
.cid-tCKCWtjfvr .mbr-gallery-item--p4 {
  padding: 1rem !important;
}
.cid-tCKCWtjfvr .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tCKCWtjfvr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tCKCWtjfvr .icon-focus {
  display: none;
}
.cid-tCKCWtjfvr .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-tCKCWtjfvr .btn-primary-outline:hover {
  background: transparent !important;
  color: #6592e6 !important;
}
.cid-tCKCWtjfvr li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-tCKCWtjfvr li {
  position: relative;
}
.cid-tCKCWtjfvr .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tCKCWtjfvr .btn {
  font-family: Jost !important;
}
.cid-tCKCWtjfvr .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tCKCWtjfvr .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCKCWtjfvr li:not(:last-child):after {
    top: 9px;
  }
  .cid-tCKCWtjfvr .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-tCKCWtjfvr .container {
    padding: 0rem;
  }
  .cid-tCKCWtjfvr .title {
    padding: 0 1rem;
  }
}
.cid-tCKCWtjfvr H2 {
  color: #89b758;
}
.cid-tCKCWtjfvr H1 {
  color: #a4cd4e;
}
.cid-tC7ZkqR9Wj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background8.jpg");
}
@media (max-width: 767px) {
  .cid-tC7ZkqR9Wj .content {
    text-align: center;
  }
  .cid-tC7ZkqR9Wj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tC7ZkqR9Wj .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tC7ZkqR9Wj .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tC7ZkqR9Wj .media-wrap img {
  height: 6rem;
}
.cid-tC7ZkqR9Wj .mbr-text {
  color: #8d97ad;
}
.cid-tC7ZkqR9Wj .p-title {
  font-size: 17px;
}
.cid-tC7ZkqR9Wj .p-title span {
  color: #111111;
}
.cid-tC7ZkqR9Wj .title-card {
  font-size: 1.3rem;
}
.cid-tC7ZkqR9Wj .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tC7ZkqR9Wj .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tC7ZkqR9Wj .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tC7ZkqR9Wj .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tC7ZkqR9Wj .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tC7ZkqR9Wj .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tC7ZkqR9Wj .copyright img {
  margin-right: 10px;
}
.cid-tC7ZkqR9Wj .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tC7ZkqR9Wj .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tC7ZkqR9Wj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tC7ZkqR9Wj .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tC7ZkqR9Wj .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tC7ZkqR9Wj .p-title,
.cid-tC7ZkqR9Wj .social-media {
  color: #000000;
}
.cid-tC7ZkuhrHu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tC7ZvQDl0u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tC7ZvQDl0u nav.navbar {
  position: fixed;
}
.cid-tC7ZvQDl0u .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7ZvQDl0u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC7ZvQDl0u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC7ZvQDl0u .dropdown-item:hover,
.cid-tC7ZvQDl0u .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tC7ZvQDl0u .dropdown-item:hover span {
  color: white;
}
.cid-tC7ZvQDl0u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC7ZvQDl0u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC7ZvQDl0u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC7ZvQDl0u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC7ZvQDl0u .nav-link {
  position: relative;
}
.cid-tC7ZvQDl0u .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7ZvQDl0u .container {
    flex-wrap: wrap;
  }
}
.cid-tC7ZvQDl0u .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7ZvQDl0u .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tC7ZvQDl0u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC7ZvQDl0u .dropdown-menu,
.cid-tC7ZvQDl0u .navbar.opened {
  background: #a4cd4e !important;
}
.cid-tC7ZvQDl0u .nav-item:focus,
.cid-tC7ZvQDl0u .nav-link:focus {
  outline: none;
}
.cid-tC7ZvQDl0u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC7ZvQDl0u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC7ZvQDl0u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC7ZvQDl0u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7ZvQDl0u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC7ZvQDl0u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC7ZvQDl0u .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a4cd4e;
}
.cid-tC7ZvQDl0u .navbar.opened {
  transition: all 0.3s;
}
.cid-tC7ZvQDl0u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC7ZvQDl0u .navbar .navbar-logo img {
  width: auto;
}
.cid-tC7ZvQDl0u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC7ZvQDl0u .navbar.collapsed {
  justify-content: center;
}
.cid-tC7ZvQDl0u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC7ZvQDl0u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC7ZvQDl0u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tC7ZvQDl0u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC7ZvQDl0u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC7ZvQDl0u .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tC7ZvQDl0u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC7ZvQDl0u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC7ZvQDl0u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC7ZvQDl0u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC7ZvQDl0u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC7ZvQDl0u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC7ZvQDl0u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC7ZvQDl0u .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tC7ZvQDl0u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC7ZvQDl0u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC7ZvQDl0u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC7ZvQDl0u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC7ZvQDl0u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC7ZvQDl0u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tC7ZvQDl0u .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tC7ZvQDl0u .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC7ZvQDl0u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC7ZvQDl0u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC7ZvQDl0u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tC7ZvQDl0u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC7ZvQDl0u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC7ZvQDl0u .dropdown-item.active,
.cid-tC7ZvQDl0u .dropdown-item:active {
  background-color: transparent;
}
.cid-tC7ZvQDl0u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC7ZvQDl0u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC7ZvQDl0u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC7ZvQDl0u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a4cd4e;
}
.cid-tC7ZvQDl0u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC7ZvQDl0u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC7ZvQDl0u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC7ZvQDl0u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC7ZvQDl0u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC7ZvQDl0u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tC7ZvQDl0u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC7ZvQDl0u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7ZvQDl0u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7ZvQDl0u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC7ZvQDl0u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7ZvQDl0u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC7ZvQDl0u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC7ZvQDl0u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7ZvQDl0u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC7ZvQDl0u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC7ZvQDl0u .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tC7ZvQDl0u .navbar {
    height: 70px;
  }
  .cid-tC7ZvQDl0u .navbar.opened {
    height: auto;
  }
  .cid-tC7ZvQDl0u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC7ZvTEpeL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a4cd4e;
}
.cid-tC7ZvTEpeL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC7ZvTEpeL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC7ZvWQ57Z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a4cd4e;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tC7ZvWQ57Z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tC7ZvWQ57Z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tC7ZvWQ57Z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tC7ZvWQ57Z .title {
  padding: 0 2rem;
}
.cid-tC7ZvWQ57Z .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
  height: 300px !important;
}
.cid-tC7ZvWQ57Z .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-tC7ZvWQ57Z .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-tC7ZvWQ57Z .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-tC7ZvWQ57Z .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-tC7ZvWQ57Z .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-tC7ZvWQ57Z .container {
  padding: 0 1rem;
}
.cid-tC7ZvWQ57Z .mbr-gallery-item--p4 {
  padding: 1rem !important;
}
.cid-tC7ZvWQ57Z .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tC7ZvWQ57Z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tC7ZvWQ57Z .icon-focus {
  display: none;
}
.cid-tC7ZvWQ57Z .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-tC7ZvWQ57Z .btn-primary-outline:hover {
  background: transparent !important;
  color: #6592e6 !important;
}
.cid-tC7ZvWQ57Z li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-tC7ZvWQ57Z li {
  position: relative;
}
.cid-tC7ZvWQ57Z .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tC7ZvWQ57Z .btn {
  font-family: Jost !important;
}
.cid-tC7ZvWQ57Z .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tC7ZvWQ57Z .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tC7ZvWQ57Z li:not(:last-child):after {
    top: 9px;
  }
  .cid-tC7ZvWQ57Z .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-tC7ZvWQ57Z .container {
    padding: 0rem;
  }
  .cid-tC7ZvWQ57Z .title {
    padding: 0 1rem;
  }
}
.cid-tC7ZvWQ57Z H2 {
  color: #ffffff;
}
.cid-tC7ZvZ9Gpp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background8.jpg");
}
@media (max-width: 767px) {
  .cid-tC7ZvZ9Gpp .content {
    text-align: center;
  }
  .cid-tC7ZvZ9Gpp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tC7ZvZ9Gpp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tC7ZvZ9Gpp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tC7ZvZ9Gpp .media-wrap img {
  height: 6rem;
}
.cid-tC7ZvZ9Gpp .mbr-text {
  color: #8d97ad;
}
.cid-tC7ZvZ9Gpp .p-title {
  font-size: 17px;
}
.cid-tC7ZvZ9Gpp .p-title span {
  color: #111111;
}
.cid-tC7ZvZ9Gpp .title-card {
  font-size: 1.3rem;
}
.cid-tC7ZvZ9Gpp .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tC7ZvZ9Gpp .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tC7ZvZ9Gpp .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tC7ZvZ9Gpp .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tC7ZvZ9Gpp .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tC7ZvZ9Gpp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tC7ZvZ9Gpp .copyright img {
  margin-right: 10px;
}
.cid-tC7ZvZ9Gpp .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tC7ZvZ9Gpp .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tC7ZvZ9Gpp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tC7ZvZ9Gpp .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tC7ZvZ9Gpp .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tC7ZvZ9Gpp .p-title,
.cid-tC7ZvZ9Gpp .social-media {
  color: #000000;
}
.cid-tC7Zw2kZJJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tC7ZBaIpEc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tC7ZBaIpEc nav.navbar {
  position: fixed;
}
.cid-tC7ZBaIpEc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7ZBaIpEc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC7ZBaIpEc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC7ZBaIpEc .dropdown-item:hover,
.cid-tC7ZBaIpEc .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tC7ZBaIpEc .dropdown-item:hover span {
  color: white;
}
.cid-tC7ZBaIpEc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC7ZBaIpEc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC7ZBaIpEc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC7ZBaIpEc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC7ZBaIpEc .nav-link {
  position: relative;
}
.cid-tC7ZBaIpEc .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7ZBaIpEc .container {
    flex-wrap: wrap;
  }
}
.cid-tC7ZBaIpEc .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tC7ZBaIpEc .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tC7ZBaIpEc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC7ZBaIpEc .dropdown-menu,
.cid-tC7ZBaIpEc .navbar.opened {
  background: #a4cd4e !important;
}
.cid-tC7ZBaIpEc .nav-item:focus,
.cid-tC7ZBaIpEc .nav-link:focus {
  outline: none;
}
.cid-tC7ZBaIpEc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC7ZBaIpEc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC7ZBaIpEc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC7ZBaIpEc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC7ZBaIpEc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC7ZBaIpEc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC7ZBaIpEc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a4cd4e;
}
.cid-tC7ZBaIpEc .navbar.opened {
  transition: all 0.3s;
}
.cid-tC7ZBaIpEc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC7ZBaIpEc .navbar .navbar-logo img {
  width: auto;
}
.cid-tC7ZBaIpEc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC7ZBaIpEc .navbar.collapsed {
  justify-content: center;
}
.cid-tC7ZBaIpEc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC7ZBaIpEc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC7ZBaIpEc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tC7ZBaIpEc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC7ZBaIpEc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC7ZBaIpEc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tC7ZBaIpEc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC7ZBaIpEc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC7ZBaIpEc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC7ZBaIpEc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC7ZBaIpEc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC7ZBaIpEc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC7ZBaIpEc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC7ZBaIpEc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tC7ZBaIpEc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC7ZBaIpEc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC7ZBaIpEc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC7ZBaIpEc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC7ZBaIpEc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC7ZBaIpEc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tC7ZBaIpEc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tC7ZBaIpEc .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC7ZBaIpEc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC7ZBaIpEc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC7ZBaIpEc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tC7ZBaIpEc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC7ZBaIpEc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC7ZBaIpEc .dropdown-item.active,
.cid-tC7ZBaIpEc .dropdown-item:active {
  background-color: transparent;
}
.cid-tC7ZBaIpEc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC7ZBaIpEc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC7ZBaIpEc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC7ZBaIpEc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a4cd4e;
}
.cid-tC7ZBaIpEc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC7ZBaIpEc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC7ZBaIpEc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC7ZBaIpEc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC7ZBaIpEc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC7ZBaIpEc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tC7ZBaIpEc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC7ZBaIpEc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7ZBaIpEc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC7ZBaIpEc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC7ZBaIpEc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7ZBaIpEc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC7ZBaIpEc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC7ZBaIpEc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC7ZBaIpEc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC7ZBaIpEc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC7ZBaIpEc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tC7ZBaIpEc .navbar {
    height: 70px;
  }
  .cid-tC7ZBaIpEc .navbar.opened {
    height: auto;
  }
  .cid-tC7ZBaIpEc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC7ZBdC3HX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a4cd4e;
}
.cid-tC7ZBdC3HX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC7ZBdC3HX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC7ZPeNcNN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a4cd4e;
}
.cid-tC7ZPeNcNN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC7ZPeNcNN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC7ZPeNcNN .video-wrapper iframe {
  width: 100%;
}
.cid-tC7ZPeNcNN .mbr-section-title,
.cid-tC7ZPeNcNN .mbr-section-subtitle,
.cid-tC7ZPeNcNN .mbr-text {
  text-align: center;
}
.cid-tC7ZPeNcNN .mbr-section-title {
  color: #ffffff;
}
.cid-tC7ZPeNcNN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tC7ZPeNcNN .mbr-text {
  color: #ffffff;
}
.cid-tC7ZBjFS5W {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background8.jpg");
}
@media (max-width: 767px) {
  .cid-tC7ZBjFS5W .content {
    text-align: center;
  }
  .cid-tC7ZBjFS5W .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tC7ZBjFS5W .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tC7ZBjFS5W .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tC7ZBjFS5W .media-wrap img {
  height: 6rem;
}
.cid-tC7ZBjFS5W .mbr-text {
  color: #8d97ad;
}
.cid-tC7ZBjFS5W .p-title {
  font-size: 17px;
}
.cid-tC7ZBjFS5W .p-title span {
  color: #111111;
}
.cid-tC7ZBjFS5W .title-card {
  font-size: 1.3rem;
}
.cid-tC7ZBjFS5W .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tC7ZBjFS5W .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tC7ZBjFS5W .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tC7ZBjFS5W .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tC7ZBjFS5W .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tC7ZBjFS5W .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tC7ZBjFS5W .copyright img {
  margin-right: 10px;
}
.cid-tC7ZBjFS5W .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tC7ZBjFS5W .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tC7ZBjFS5W .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tC7ZBjFS5W .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tC7ZBjFS5W .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tC7ZBjFS5W .p-title,
.cid-tC7ZBjFS5W .social-media {
  color: #000000;
}
.cid-tC7ZBn81f1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tDit0TsOmD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDit0TsOmD nav.navbar {
  position: fixed;
}
.cid-tDit0TsOmD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDit0TsOmD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDit0TsOmD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDit0TsOmD .dropdown-item:hover,
.cid-tDit0TsOmD .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tDit0TsOmD .dropdown-item:hover span {
  color: white;
}
.cid-tDit0TsOmD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDit0TsOmD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDit0TsOmD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDit0TsOmD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDit0TsOmD .nav-link {
  position: relative;
}
.cid-tDit0TsOmD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDit0TsOmD .container {
    flex-wrap: wrap;
  }
}
.cid-tDit0TsOmD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDit0TsOmD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tDit0TsOmD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDit0TsOmD .dropdown-menu,
.cid-tDit0TsOmD .navbar.opened {
  background: #a4cd4e !important;
}
.cid-tDit0TsOmD .nav-item:focus,
.cid-tDit0TsOmD .nav-link:focus {
  outline: none;
}
.cid-tDit0TsOmD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDit0TsOmD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDit0TsOmD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDit0TsOmD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDit0TsOmD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDit0TsOmD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDit0TsOmD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a4cd4e;
}
.cid-tDit0TsOmD .navbar.opened {
  transition: all 0.3s;
}
.cid-tDit0TsOmD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDit0TsOmD .navbar .navbar-logo img {
  width: auto;
}
.cid-tDit0TsOmD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDit0TsOmD .navbar.collapsed {
  justify-content: center;
}
.cid-tDit0TsOmD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDit0TsOmD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDit0TsOmD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tDit0TsOmD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDit0TsOmD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDit0TsOmD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tDit0TsOmD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDit0TsOmD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDit0TsOmD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDit0TsOmD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDit0TsOmD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDit0TsOmD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDit0TsOmD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDit0TsOmD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tDit0TsOmD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDit0TsOmD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDit0TsOmD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDit0TsOmD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDit0TsOmD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDit0TsOmD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDit0TsOmD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDit0TsOmD .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDit0TsOmD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDit0TsOmD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDit0TsOmD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDit0TsOmD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDit0TsOmD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDit0TsOmD .dropdown-item.active,
.cid-tDit0TsOmD .dropdown-item:active {
  background-color: transparent;
}
.cid-tDit0TsOmD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDit0TsOmD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDit0TsOmD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDit0TsOmD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a4cd4e;
}
.cid-tDit0TsOmD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDit0TsOmD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDit0TsOmD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDit0TsOmD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDit0TsOmD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDit0TsOmD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tDit0TsOmD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDit0TsOmD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDit0TsOmD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDit0TsOmD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDit0TsOmD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDit0TsOmD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDit0TsOmD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDit0TsOmD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDit0TsOmD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDit0TsOmD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDit0TsOmD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDit0TsOmD .navbar {
    height: 70px;
  }
  .cid-tDit0TsOmD .navbar.opened {
    height: auto;
  }
  .cid-tDit0TsOmD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDit0Y4rNO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a4cd4e;
}
.cid-tDit0Y4rNO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDit0Y4rNO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDit1255YW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a4cd4e;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tDit1255YW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tDit1255YW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDit1255YW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDit1255YW .title {
  padding: 0 2rem;
}
.cid-tDit1255YW .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
  height: 300px !important;
}
.cid-tDit1255YW .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-tDit1255YW .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-tDit1255YW .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-tDit1255YW .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-tDit1255YW .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-tDit1255YW .container {
  padding: 0 1rem;
}
.cid-tDit1255YW .mbr-gallery-item--p4 {
  padding: 1rem !important;
}
.cid-tDit1255YW .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tDit1255YW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tDit1255YW .icon-focus {
  display: none;
}
.cid-tDit1255YW .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-tDit1255YW .btn-primary-outline:hover {
  background: transparent !important;
  color: #6592e6 !important;
}
.cid-tDit1255YW li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-tDit1255YW li {
  position: relative;
}
.cid-tDit1255YW .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tDit1255YW .btn {
  font-family: Jost !important;
}
.cid-tDit1255YW .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tDit1255YW .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDit1255YW li:not(:last-child):after {
    top: 9px;
  }
  .cid-tDit1255YW .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-tDit1255YW .container {
    padding: 0rem;
  }
  .cid-tDit1255YW .title {
    padding: 0 1rem;
  }
}
.cid-tDit1255YW H2 {
  color: #ffffff;
}
.cid-tDit17KXUN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background8.jpg");
}
@media (max-width: 767px) {
  .cid-tDit17KXUN .content {
    text-align: center;
  }
  .cid-tDit17KXUN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tDit17KXUN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tDit17KXUN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tDit17KXUN .media-wrap img {
  height: 6rem;
}
.cid-tDit17KXUN .mbr-text {
  color: #8d97ad;
}
.cid-tDit17KXUN .p-title {
  font-size: 17px;
}
.cid-tDit17KXUN .p-title span {
  color: #111111;
}
.cid-tDit17KXUN .title-card {
  font-size: 1.3rem;
}
.cid-tDit17KXUN .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tDit17KXUN .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tDit17KXUN .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tDit17KXUN .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tDit17KXUN .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tDit17KXUN .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tDit17KXUN .copyright img {
  margin-right: 10px;
}
.cid-tDit17KXUN .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tDit17KXUN .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tDit17KXUN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tDit17KXUN .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tDit17KXUN .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDit17KXUN .p-title,
.cid-tDit17KXUN .social-media {
  color: #000000;
}
.cid-tDit1f6Jkr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
