.btn {
  border-width: 2px;
}
body {
  font-family: 'DM Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #18b7a7 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #07ac99 !important;
}
.bg-warning {
  background-color: #066056 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #18b7a7 !important;
  border-color: #18b7a7 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #18b7a7 !important;
  border-color: #18b7a7 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #18b7a7 !important;
  border-color: #18b7a7 !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #07ac99 !important;
  border-color: #07ac99 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #07ac99 !important;
  border-color: #07ac99 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #07ac99 !important;
  border-color: #07ac99 !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #066056 !important;
  border-color: #066056 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #066056 !important;
  border-color: #066056 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #066056 !important;
  border-color: #066056 !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #18b7a7;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #18b7a7;
  color: #18b7a7;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0e6a61 !important;
  background-color: transparent !important;
  border-color: #0e6a61 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #18b7a7 !important;
  border-color: #18b7a7 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  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: #ff0f0f !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: #07ac99;
  color: #07ac99;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #04594f !important;
  background-color: transparent !important;
  border-color: #04594f !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #07ac99 !important;
  border-color: #07ac99 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  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: #2a747e !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: #066056;
  color: #066056;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #010e0d !important;
  background-color: transparent !important;
  border-color: #010e0d !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #066056 !important;
  border-color: #066056 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  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: #ff5f0f !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: #272727;
  color: #272727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #18b7a7 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #07ac99 !important;
}
.text-warning {
  color: #066056 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #18b7a7 !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: #034a42 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #18b7a7;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #07ac99;
}
.alert-warning {
  background-color: #066056;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #18b7a7;
  border-color: #18b7a7;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #18b7a7;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #64ebdd;
}
.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: #3bf7e1;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #0ed8c2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #18b7a7 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #18b7a7;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #18b7a7;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #18b7a7;
}
.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: #18b7a7;
  border-bottom-color: #18b7a7;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #18b7a7 !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='%2318b7a7' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-t3rKekLX1t {
  z-index: 1000;
  width: 100%;
}
.cid-t3rKekLX1t .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-t3rKekLX1t .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-t3rKekLX1t .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-t3rKekLX1t .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-t3rKekLX1t .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-t3rKekLX1t nav.navbar {
  position: fixed;
}
.cid-t3rKekLX1t .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-t3rKekLX1t .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .nav-item {
    border: 0;
  }
}
.cid-t3rKekLX1t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-t3rKekLX1t .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-t3rKekLX1t .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-t3rKekLX1t .title-wrap:hover span {
  color: white;
}
.cid-t3rKekLX1t .title-wrap:hover:before {
  height: 100%;
}
.cid-t3rKekLX1t .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-t3rKekLX1t .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-t3rKekLX1t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3rKekLX1t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3rKekLX1t .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3rKekLX1t .nav-link {
  position: relative;
}
.cid-t3rKekLX1t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3rKekLX1t .container {
    flex-wrap: nowrap;
  }
}
.cid-t3rKekLX1t .dropdown-menu,
.cid-t3rKekLX1t .navbar.opened {
  background: #004c36 !important;
}
.cid-t3rKekLX1t .nav-item:focus,
.cid-t3rKekLX1t .nav-link:focus {
  outline: none;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3rKekLX1t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3rKekLX1t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-t3rKekLX1t .navbar.opened {
  transition: all 0.3s;
}
.cid-t3rKekLX1t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3rKekLX1t .navbar .navbar-logo img {
  width: auto;
}
.cid-t3rKekLX1t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3rKekLX1t .navbar.collapsed {
  justify-content: center;
}
.cid-t3rKekLX1t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3rKekLX1t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3rKekLX1t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3rKekLX1t .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-t3rKekLX1t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3rKekLX1t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3rKekLX1t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3rKekLX1t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3rKekLX1t .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-t3rKekLX1t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3rKekLX1t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3rKekLX1t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3rKekLX1t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3rKekLX1t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3rKekLX1t .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3rKekLX1t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3rKekLX1t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3rKekLX1t .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-t3rKekLX1t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3rKekLX1t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3rKekLX1t .dropdown-item.active,
.cid-t3rKekLX1t .dropdown-item:active {
  background-color: transparent;
}
.cid-t3rKekLX1t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3rKekLX1t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-t3rKekLX1t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3rKekLX1t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3rKekLX1t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3rKekLX1t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3rKekLX1t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rKekLX1t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3rKekLX1t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3rKekLX1t .navbar {
    height: 70px;
  }
  .cid-t3rKekLX1t .navbar.opened {
    height: auto;
  }
  .cid-t3rKekLX1t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3rKekLX1t .navbar-caption-wrap,
.cid-t3rKekLX1t .title-wrap {
  color: #272727;
}
.cid-uryqCD2gOe {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-uryqCD2gOe .carousel {
  width: 100%;
}
.cid-uryqCD2gOe .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uryqCD2gOe .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uryqCD2gOe .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-uryqCD2gOe .carousel-caption {
    height: 34%;
  }
}
.cid-uryqCD2gOe .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #ffffff;
  opacity: 1;
}
.cid-uryqCD2gOe .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-uryqCD2gOe .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uryqCD2gOe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uryqCD2gOe .carousel-control:hover {
  opacity: 0.6;
}
.cid-uryqCD2gOe .item-wrapper {
  width: 100%;
}
.cid-uryqCD2gOe .mbr-section-subtitle,
.cid-uryqCD2gOe .slider-subtitle {
  margin-bottom: 30px;
}
.cid-uryqCD2gOe .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-uryqCD2gOe .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uryqCD2gOe .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uryqCD2gOe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uryqCD2gOe .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uryqCD2gOe .carousel-indicators li.active,
.cid-uryqCD2gOe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uryqCD2gOe .carousel-indicators li::after,
.cid-uryqCD2gOe .carousel-indicators li::before {
  content: none;
}
.cid-uryqCD2gOe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uryqCD2gOe .carousel-indicators {
    display: none !important;
  }
}
.cid-uryqCD2gOe H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uryqCD2gOe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uryqCD2gOe P {
  color: #ffffff;
}
.cid-ugjrRJMNZE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ugjrf2MDiJ {
  background-image: url("../../../assets/images/foresta-kurumsal-soldan.siyah.jpg");
}
.cid-ugjrf2MDiJ .mbr-section-title {
  color: #ffffff;
}
.cid-ugjrf2MDiJ .mbr-text,
.cid-ugjrf2MDiJ .mbr-section-btn {
  color: #fafafa;
}
.cid-ugksmE7Xzi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ugk4F6oiRk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/21.jpg");
}
.cid-ugk4F6oiRk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugk4F6oiRk .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-ugk4F6oiRk .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugk4F6oiRk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugk4F6oiRk .card-text {
  max-width: 400px;
  color: #ffffff;
  text-align: center;
  margin: auto;
}
.cid-ugk4F6oiRk .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #ffffff;
  width: 80px;
  justify-content: center;
  align-items: center;
  height: 80px;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ugk4F6oiRk .iconfont-wrapper .mbr-iconfont:hover {
  transform: scale(1.2);
}
.cid-ugk4F6oiRk .card-title,
.cid-ugk4F6oiRk .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-ugk4F6oiRk .content-head {
  max-width: 800px;
}
.cid-ugk4F6oiRk .mbr-section-title {
  color: #ffffff;
}
.cid-ugk4F6oiRk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-urxbrv3qEy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-t3rRU42LDy {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/11-1920x1080.jpg");
}
.cid-t3rRU42LDy .mbr-overlay {
  background: #ffffff;
  opacity: 0.9;
}
.cid-t3rRU42LDy .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-t3rRU42LDy .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-t3rRU42LDy .social {
  display: inline-flex;
  align-items: center;
}
.cid-t3rRU42LDy .social .socicon {
  padding-right: 0.6rem;
  color: #18b7a7;
  font-size: 1.2rem;
}
.cid-t3rRU42LDy .soc-wrapper {
  width: 100%;
}
.cid-t3rRU42LDy .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t3rRU42LDy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-t3rRU42LDy .item {
    padding: 0 3rem;
  }
}
.cid-t3rRU42LDy img,
.cid-t3rRU42LDy .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-t3rRU42LDy .item:focus,
.cid-t3rRU42LDy span:focus {
  outline: none;
}
.cid-t3rRU42LDy .mbr-section-title {
  color: #043728;
}
.cid-t3rRU42LDy .mbr-text,
.cid-t3rRU42LDy .mbr-section-btn {
  color: #353535;
}
.cid-t3rRU42LDy .mbr-section-subtitle {
  color: #353535;
}
.cid-ugktyMkg2H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ueeR8c59Om {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ueeR8c59Om .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ueeR8c59Om .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ueeR8c59Om .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ueeR8c59Om .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ueeR8c59Om .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ueeR8c59Om .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ueeR8c59Om .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ueeR8c59Om .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ueeR8c59Om .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ueeR8c59Om .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ueeR8c59Om .soc-item a {
  color: #ffffff;
}
.cid-ueeR8c59Om .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ueeR8c59Om .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ueeR8c59Om .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueeR8c59Om .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueeR8c59Om .mbr-tag,
.cid-ueeR8c59Om .social-row {
  text-align: left;
  color: #ffffff;
}
.cid-ueeTLflJaq {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #354463;
}
.cid-ueeTLflJaq .media-container-row {
  align-items: center;
}
.cid-ueeTLflJaq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ueeTLflJaq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ueeTLflJaq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ueeTLflJaq .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ueeTLflJaq .foot-menu-item {
  transform: 0.2s;
}
.cid-ueeTLflJaq .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-ueeTLflJaq .foot-menu {
    justify-content: center;
  }
  .cid-ueeTLflJaq .mbr-text {
    text-align: center;
  }
  .cid-ueeTLflJaq .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ueeTLflJaq .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ueeTLflJaq .link:hover {
  text-decoration: underline;
}
.cid-ueeTLflJaq .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #8e99b1;
}
.cid-ueeTLflJaq .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-ueeTLflJaq .container {
    padding: 0;
  }
}
.cid-ugkthdan3M {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ufjbzm4385 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/21-1.jpg");
}
.cid-ufjbzm4385 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-ufjbzm4385 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ufjbzm4385 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-ufjbzm4385 h3:before,
  .cid-ufjbzm4385 h3:after {
    display: none;
  }
}
.cid-ufjbzm4385 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufjbzm4385 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urnnRGEQMm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #fafafa;
}
.cid-urnnRGEQMm .image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cid-urnnRGEQMm .content-wrap {
  z-index: 1;
  position: relative;
  max-width: 450px;
  margin-top: 15rem;
}
.cid-urnnRGEQMm .card-wrap {
  position: relative;
  min-height: 600px;
  display: flex;
  padding-top: 5rem !important;
}
@media (max-width: 991px) {
  .cid-urnnRGEQMm .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-urnnRGEQMm .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-urnnRGEQMm .card-wrap .content-wrap {
  margin: auto;
}
@media (min-width: 768px) {
  .cid-urnnRGEQMm .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-urnnRGEQMm .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-urnnRGEQMm .icons-menu {
  display: flex;
}
@media (max-width: 767px) {
  .cid-urnnRGEQMm .icons-menu {
    justify-content: center;
  }
}
.cid-urnnRGEQMm .iconfont-wrapper {
  font-size: 1.5rem;
  padding: 0.4rem 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
}
.cid-urnnRGEQMm .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: 0;
}
.cid-urnnRGEQMm .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-urnnRGEQMm .iconfont-wrapper:hover .mbr-iconfont {
  color: #000000;
}
.cid-urnnRGEQMm .mbr-iconfont {
  position: relative;
  transition: all 0.3s;
  color: #ffffff;
}
.cid-urnnRGEQMm .mbr-role,
.cid-urnnRGEQMm .social-row {
  color: #ffffff;
}
.cid-urnnRGEQMm .mbr-section-title {
  color: #272727;
}
.cid-urnnRGEQMm .card-title {
  color: #ffffff;
}
.cid-urnnRGEQMm .card-text,
.cid-urnnRGEQMm .mbr-section-btn,
.cid-urnnRGEQMm .social-row {
  color: #ffffff;
}
.cid-urrFZ1nqAC {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #fafafa;
}
.cid-urrFZ1nqAC .image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cid-urrFZ1nqAC .content-wrap {
  z-index: 1;
  position: relative;
  max-width: 450px;
  margin-top: 15rem;
}
.cid-urrFZ1nqAC .card-wrap {
  position: relative;
  min-height: 600px;
  display: flex;
  padding-top: 5rem !important;
}
@media (max-width: 991px) {
  .cid-urrFZ1nqAC .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-urrFZ1nqAC .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-urrFZ1nqAC .card-wrap .content-wrap {
  margin: auto;
}
@media (min-width: 768px) {
  .cid-urrFZ1nqAC .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-urrFZ1nqAC .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-urrFZ1nqAC .icons-menu {
  display: flex;
}
@media (max-width: 767px) {
  .cid-urrFZ1nqAC .icons-menu {
    justify-content: center;
  }
}
.cid-urrFZ1nqAC .iconfont-wrapper {
  font-size: 1.5rem;
  padding: 0.4rem 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
}
.cid-urrFZ1nqAC .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: 0;
}
.cid-urrFZ1nqAC .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-urrFZ1nqAC .iconfont-wrapper:hover .mbr-iconfont {
  color: #000000;
}
.cid-urrFZ1nqAC .mbr-iconfont {
  position: relative;
  transition: all 0.3s;
  color: #ffffff;
}
.cid-urrFZ1nqAC .mbr-role,
.cid-urrFZ1nqAC .social-row {
  color: #ffffff;
}
.cid-urrFZ1nqAC .mbr-section-title {
  color: #272727;
}
.cid-urrFZ1nqAC .card-title {
  color: #ffffff;
}
.cid-urrFZ1nqAC .card-text,
.cid-urrFZ1nqAC .mbr-section-btn,
.cid-urrFZ1nqAC .social-row {
  color: #ffffff;
}
.cid-ugCN7aNgET {
  background-image: url("../../../assets/images/foresta-fabrika.jpg");
}
.cid-ugCN7aNgET .mbr-section-title {
  color: #ffffff;
}
.cid-ugCN7aNgET .mbr-text,
.cid-ugCN7aNgET .mbr-section-btn {
  color: #fafafa;
}
.cid-ugjx2pUtC9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-t3rRV9yezw {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/20.jpg");
}
.cid-t3rRV9yezw .mbr-overlay {
  background-color: #043728;
  opacity: 0.8;
}
.cid-t3rRV9yezw input,
.cid-t3rRV9yezw textarea {
  border-radius: 0;
}
.cid-t3rRV9yezw input:hover,
.cid-t3rRV9yezw textarea:hover {
  border: 1px solid transparent !important;
}
.cid-t3rRV9yezw textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-t3rRV9yezw .col-auto {
    margin: auto;
  }
}
.cid-t3rRV9yezw .mbr-main-subtitle {
  background: #18b7a7;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-t3rRV9yezw .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #18b7a7;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-t3rRV9yezw .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-t3rRV9yezw .btn {
  padding: 1rem 3rem;
}
.cid-t3rRV9yezw .form-control,
.cid-t3rRV9yezw .field-input {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #bbbbbb;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t3rRV9yezw .form-control::-webkit-input-placeholder,
.cid-t3rRV9yezw .field-input::-webkit-input-placeholder,
.cid-t3rRV9yezw .form-control::-webkit-input-placeholder,
.cid-t3rRV9yezw .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-t3rRV9yezw .form-control:-moz-placeholder,
.cid-t3rRV9yezw .field-input:-moz-placeholder,
.cid-t3rRV9yezw .form-control:-moz-placeholder,
.cid-t3rRV9yezw .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-t3rRV9yezw .form-control:hover,
.cid-t3rRV9yezw .field-input:hover,
.cid-t3rRV9yezw .form-control:focus,
.cid-t3rRV9yezw .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #101112;
  box-shadow: none;
  outline: none;
}
.cid-t3rRV9yezw .form-control:hover::-webkit-input-placeholder,
.cid-t3rRV9yezw .field-input:hover::-webkit-input-placeholder,
.cid-t3rRV9yezw .form-control:focus::-webkit-input-placeholder,
.cid-t3rRV9yezw .field-input:focus::-webkit-input-placeholder,
.cid-t3rRV9yezw .form-control:hover::-webkit-input-placeholder,
.cid-t3rRV9yezw .field-input:hover::-webkit-input-placeholder,
.cid-t3rRV9yezw .form-control:focus::-webkit-input-placeholder,
.cid-t3rRV9yezw .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-t3rRV9yezw .form-control:hover:-moz-placeholder,
.cid-t3rRV9yezw .field-input:hover:-moz-placeholder,
.cid-t3rRV9yezw .form-control:focus:-moz-placeholder,
.cid-t3rRV9yezw .field-input:focus:-moz-placeholder,
.cid-t3rRV9yezw .form-control:hover:-moz-placeholder,
.cid-t3rRV9yezw .field-input:hover:-moz-placeholder,
.cid-t3rRV9yezw .form-control:focus:-moz-placeholder,
.cid-t3rRV9yezw .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-t3rRV9yezw .jq-number__spin:hover,
.cid-t3rRV9yezw .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-t3rRV9yezw .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #bbbbbb;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t3rRV9yezw .jq-selectbox li,
.cid-t3rRV9yezw .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-t3rRV9yezw .jq-selectbox li:hover,
.cid-t3rRV9yezw .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-t3rRV9yezw .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-t3rRV9yezw .jq-number__spin.minus:hover:after,
.cid-t3rRV9yezw .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-t3rRV9yezw .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-t3rRV9yezw .jq-number__spin.minus:after,
.cid-t3rRV9yezw .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-t3rRV9yezw .mbr-section-text {
  color: #ffffff;
}
.cid-t3rRV9yezw .mbr-section-title {
  color: #ffffff;
}
.cid-ugjwUSDbuE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-t3rRWwcVMp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-t3rRWwcVMp .google-map {
  height: 35rem;
  position: relative;
}
.cid-t3rRWwcVMp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t3rRWwcVMp .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-t3rRWwcVMp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t3rRWwcVMp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ugIG1LHIB5 {
  z-index: 1;
}
.cid-t3rKekLX1t {
  z-index: 1000;
  width: 100%;
}
.cid-t3rKekLX1t .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-t3rKekLX1t .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-t3rKekLX1t .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-t3rKekLX1t .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-t3rKekLX1t .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-t3rKekLX1t nav.navbar {
  position: fixed;
}
.cid-t3rKekLX1t .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-t3rKekLX1t .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .nav-item {
    border: 0;
  }
}
.cid-t3rKekLX1t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-t3rKekLX1t .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-t3rKekLX1t .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-t3rKekLX1t .title-wrap:hover span {
  color: white;
}
.cid-t3rKekLX1t .title-wrap:hover:before {
  height: 100%;
}
.cid-t3rKekLX1t .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-t3rKekLX1t .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-t3rKekLX1t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3rKekLX1t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3rKekLX1t .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3rKekLX1t .nav-link {
  position: relative;
}
.cid-t3rKekLX1t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3rKekLX1t .container {
    flex-wrap: nowrap;
  }
}
.cid-t3rKekLX1t .dropdown-menu,
.cid-t3rKekLX1t .navbar.opened {
  background: #004c36 !important;
}
.cid-t3rKekLX1t .nav-item:focus,
.cid-t3rKekLX1t .nav-link:focus {
  outline: none;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3rKekLX1t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3rKekLX1t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-t3rKekLX1t .navbar.opened {
  transition: all 0.3s;
}
.cid-t3rKekLX1t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3rKekLX1t .navbar .navbar-logo img {
  width: auto;
}
.cid-t3rKekLX1t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3rKekLX1t .navbar.collapsed {
  justify-content: center;
}
.cid-t3rKekLX1t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3rKekLX1t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3rKekLX1t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3rKekLX1t .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-t3rKekLX1t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3rKekLX1t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3rKekLX1t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3rKekLX1t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3rKekLX1t .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-t3rKekLX1t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3rKekLX1t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3rKekLX1t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3rKekLX1t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3rKekLX1t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3rKekLX1t .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3rKekLX1t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3rKekLX1t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3rKekLX1t .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-t3rKekLX1t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3rKekLX1t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3rKekLX1t .dropdown-item.active,
.cid-t3rKekLX1t .dropdown-item:active {
  background-color: transparent;
}
.cid-t3rKekLX1t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3rKekLX1t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-t3rKekLX1t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3rKekLX1t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3rKekLX1t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3rKekLX1t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3rKekLX1t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rKekLX1t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3rKekLX1t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3rKekLX1t .navbar {
    height: 70px;
  }
  .cid-t3rKekLX1t .navbar.opened {
    height: auto;
  }
  .cid-t3rKekLX1t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3rKekLX1t .navbar-caption-wrap,
.cid-t3rKekLX1t .title-wrap {
  color: #272727;
}
.cid-ugqiELTV0M {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/10-1920x1080.jpg");
}
.cid-ugqiELTV0M .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugqiELTV0M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugqiELTV0M .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugqiELTV0M .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-ugqiELTV0M .container {
    padding: 0 15px;
  }
}
.cid-ugqiELTV0M .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ugqiELTV0M .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugqiELTV0M .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugqiELTV0M .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ugqiELTV0M .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugqiELTV0M .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ugqiELTV0M .mbr-section-title {
  color: #131c28;
}
.cid-ugqiELTV0M .mbr-desc {
  color: #131c28;
}
.cid-ugqiELTV0M .mbr-section-title,
.cid-ugqiELTV0M .mbr-section-btn {
  color: #19a17a;
}
.cid-vbjJ5zMBhv {
  background-color: #f0f0f0;
}
.cid-vbjJ5zMBhv .fade-in-up {
  animation: fade-in-up 0.2s ease-in-out forwards;
}
.cid-vbjJ5zMBhv .mbr-text {
  animation-delay: .2s;
  margin-top: 1.5rem;
  text-align: left;
}
.cid-vbjJ5zMBhv .mbr-section-btn {
  margin-top: 2rem;
  animation-delay: .2s;
}
.cid-vbjJ5zMBhv .box2 {
  background-image: url("../../../assets/images/fabrika-gorsel-on-1.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-vbjJ5zMBhv .icon-wrap {
  background-color: #ffffff !important;
  border-radius: 50%;
  width: 73.5px;
  height: 73.5px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-vbjJ5zMBhv .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-vbjJ5zMBhv .icon-wrap span {
  padding-left: 8px;
}
.cid-vbjJ5zMBhv .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #000000 !important;
}
.cid-vbjJ5zMBhv .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-vbjJ5zMBhv .text-wrapper {
  max-width: 24rem;
}
@media (max-width: 991px) {
  .cid-vbjJ5zMBhv .text-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbjJ5zMBhv .text-wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-vbjJ5zMBhv .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-vbjJ5zMBhv .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-vbjJ5zMBhv .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-vbjJ5zMBhv a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-vbjJ5zMBhv a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-vbjJ5zMBhv .box2 {
    height: 250px;
  }
}
.cid-vbjJ5zMBhv .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-vbjJ5zMBhv .mbr-text,
.cid-vbjJ5zMBhv .mbr-section-btn {
  text-align: left;
}
.cid-vbbTGFF4th {
  background-image: url("../../../assets/images/foresta-kurumsal-soldan.siyah.jpg");
}
.cid-vbbTGFF4th .mbr-section-title {
  color: #ffffff;
}
.cid-vbbTGFF4th .mbr-text,
.cid-vbbTGFF4th .mbr-section-btn {
  color: #fafafa;
}
.cid-vbbTYhySrt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ueeR8c59Om {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ueeR8c59Om .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ueeR8c59Om .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ueeR8c59Om .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ueeR8c59Om .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ueeR8c59Om .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ueeR8c59Om .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ueeR8c59Om .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ueeR8c59Om .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ueeR8c59Om .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ueeR8c59Om .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ueeR8c59Om .soc-item a {
  color: #ffffff;
}
.cid-ueeR8c59Om .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ueeR8c59Om .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ueeR8c59Om .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueeR8c59Om .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueeR8c59Om .mbr-tag,
.cid-ueeR8c59Om .social-row {
  text-align: left;
  color: #ffffff;
}
.cid-ueeTLflJaq {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #354463;
}
.cid-ueeTLflJaq .media-container-row {
  align-items: center;
}
.cid-ueeTLflJaq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ueeTLflJaq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ueeTLflJaq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ueeTLflJaq .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ueeTLflJaq .foot-menu-item {
  transform: 0.2s;
}
.cid-ueeTLflJaq .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-ueeTLflJaq .foot-menu {
    justify-content: center;
  }
  .cid-ueeTLflJaq .mbr-text {
    text-align: center;
  }
  .cid-ueeTLflJaq .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ueeTLflJaq .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ueeTLflJaq .link:hover {
  text-decoration: underline;
}
.cid-ueeTLflJaq .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #8e99b1;
}
.cid-ueeTLflJaq .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-ueeTLflJaq .container {
    padding: 0;
  }
}
.cid-ugpc4AqJ4B {
  z-index: 1000;
  width: 100%;
}
.cid-ugpc4AqJ4B .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-ugpc4AqJ4B .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-ugpc4AqJ4B .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-ugpc4AqJ4B .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-ugpc4AqJ4B .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-ugpc4AqJ4B nav.navbar {
  position: fixed;
}
.cid-ugpc4AqJ4B .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-ugpc4AqJ4B .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-ugpc4AqJ4B .nav-item {
    border: 0;
  }
}
.cid-ugpc4AqJ4B .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ugpc4AqJ4B .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-ugpc4AqJ4B .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-ugpc4AqJ4B .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-ugpc4AqJ4B .title-wrap:hover span {
  color: white;
}
.cid-ugpc4AqJ4B .title-wrap:hover:before {
  height: 100%;
}
.cid-ugpc4AqJ4B .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-ugpc4AqJ4B .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-ugpc4AqJ4B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugpc4AqJ4B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugpc4AqJ4B .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-ugpc4AqJ4B .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-ugpc4AqJ4B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugpc4AqJ4B .nav-link {
  position: relative;
}
.cid-ugpc4AqJ4B .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugpc4AqJ4B .container {
    flex-wrap: nowrap;
  }
}
.cid-ugpc4AqJ4B .dropdown-menu,
.cid-ugpc4AqJ4B .navbar.opened {
  background: #004c36 !important;
}
.cid-ugpc4AqJ4B .nav-item:focus,
.cid-ugpc4AqJ4B .nav-link:focus {
  outline: none;
}
.cid-ugpc4AqJ4B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugpc4AqJ4B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugpc4AqJ4B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugpc4AqJ4B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugpc4AqJ4B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugpc4AqJ4B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugpc4AqJ4B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-ugpc4AqJ4B .navbar.opened {
  transition: all 0.3s;
}
.cid-ugpc4AqJ4B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugpc4AqJ4B .navbar .navbar-logo img {
  width: auto;
}
.cid-ugpc4AqJ4B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugpc4AqJ4B .navbar.collapsed {
  justify-content: center;
}
.cid-ugpc4AqJ4B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugpc4AqJ4B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugpc4AqJ4B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ugpc4AqJ4B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugpc4AqJ4B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugpc4AqJ4B .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-ugpc4AqJ4B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugpc4AqJ4B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugpc4AqJ4B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugpc4AqJ4B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugpc4AqJ4B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugpc4AqJ4B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugpc4AqJ4B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugpc4AqJ4B .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-ugpc4AqJ4B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugpc4AqJ4B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugpc4AqJ4B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugpc4AqJ4B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugpc4AqJ4B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugpc4AqJ4B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugpc4AqJ4B .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugpc4AqJ4B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugpc4AqJ4B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugpc4AqJ4B .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-ugpc4AqJ4B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugpc4AqJ4B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugpc4AqJ4B .dropdown-item.active,
.cid-ugpc4AqJ4B .dropdown-item:active {
  background-color: transparent;
}
.cid-ugpc4AqJ4B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugpc4AqJ4B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugpc4AqJ4B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugpc4AqJ4B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-ugpc4AqJ4B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugpc4AqJ4B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugpc4AqJ4B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugpc4AqJ4B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugpc4AqJ4B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugpc4AqJ4B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugpc4AqJ4B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugpc4AqJ4B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugpc4AqJ4B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugpc4AqJ4B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugpc4AqJ4B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugpc4AqJ4B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugpc4AqJ4B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugpc4AqJ4B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugpc4AqJ4B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugpc4AqJ4B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugpc4AqJ4B .navbar {
    height: 70px;
  }
  .cid-ugpc4AqJ4B .navbar.opened {
    height: auto;
  }
  .cid-ugpc4AqJ4B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugpc4AqJ4B .navbar-caption-wrap,
.cid-ugpc4AqJ4B .title-wrap {
  color: #272727;
}
.cid-ugqiLLWJyd {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/10-1920x1080.jpg");
}
.cid-ugqiLLWJyd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugqiLLWJyd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugqiLLWJyd .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugqiLLWJyd .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-ugqiLLWJyd .container {
    padding: 0 15px;
  }
}
.cid-ugqiLLWJyd .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ugqiLLWJyd .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugqiLLWJyd .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugqiLLWJyd .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ugqiLLWJyd .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugqiLLWJyd .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ugqiLLWJyd .mbr-section-title {
  color: #131c28;
}
.cid-ugqiLLWJyd .mbr-desc {
  color: #131c28;
}
.cid-ugqiLLWJyd .mbr-section-title,
.cid-ugqiLLWJyd .mbr-section-btn {
  color: #15a77d;
}
.cid-ugB47dzANP {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/11-1920x1080.jpg");
}
.cid-ugB47dzANP .mbr-overlay {
  background: #ffffff;
  opacity: 0.9;
}
.cid-ugB47dzANP .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-ugB47dzANP .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-ugB47dzANP .social {
  display: inline-flex;
  align-items: center;
}
.cid-ugB47dzANP .social .socicon {
  padding-right: 0.6rem;
  color: #18b7a7;
  font-size: 1.2rem;
}
.cid-ugB47dzANP .soc-wrapper {
  width: 100%;
}
.cid-ugB47dzANP .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ugB47dzANP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-ugB47dzANP .item {
    padding: 0 3rem;
  }
}
.cid-ugB47dzANP img,
.cid-ugB47dzANP .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-ugB47dzANP .item:focus,
.cid-ugB47dzANP span:focus {
  outline: none;
}
.cid-ugB47dzANP .mbr-section-title {
  color: #043728;
}
.cid-ugB47dzANP .mbr-text,
.cid-ugB47dzANP .mbr-section-btn {
  color: #353535;
}
.cid-ugB47dzANP .mbr-section-subtitle {
  color: #353535;
}
.cid-ugpc4F7jE0 {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ugpc4F7jE0 .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ugpc4F7jE0 .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ugpc4F7jE0 .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ugpc4F7jE0 .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ugpc4F7jE0 .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ugpc4F7jE0 .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ugpc4F7jE0 .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ugpc4F7jE0 .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ugpc4F7jE0 .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ugpc4F7jE0 .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ugpc4F7jE0 .soc-item a {
  color: #ffffff;
}
.cid-ugpc4F7jE0 .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ugpc4F7jE0 .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ugpc4F7jE0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugpc4F7jE0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugpc4F7jE0 .mbr-tag,
.cid-ugpc4F7jE0 .social-row {
  text-align: left;
  color: #ffffff;
}
.cid-ugpc4GYkTn {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #354463;
}
.cid-ugpc4GYkTn .media-container-row {
  align-items: center;
}
.cid-ugpc4GYkTn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugpc4GYkTn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugpc4GYkTn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugpc4GYkTn .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ugpc4GYkTn .foot-menu-item {
  transform: 0.2s;
}
.cid-ugpc4GYkTn .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-ugpc4GYkTn .foot-menu {
    justify-content: center;
  }
  .cid-ugpc4GYkTn .mbr-text {
    text-align: center;
  }
  .cid-ugpc4GYkTn .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ugpc4GYkTn .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ugpc4GYkTn .link:hover {
  text-decoration: underline;
}
.cid-ugpc4GYkTn .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #8e99b1;
}
.cid-ugpc4GYkTn .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-ugpc4GYkTn .container {
    padding: 0;
  }
}
.cid-ugpcbIpOfL {
  z-index: 1000;
  width: 100%;
}
.cid-ugpcbIpOfL .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-ugpcbIpOfL .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-ugpcbIpOfL .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-ugpcbIpOfL .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-ugpcbIpOfL .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-ugpcbIpOfL nav.navbar {
  position: fixed;
}
.cid-ugpcbIpOfL .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-ugpcbIpOfL .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-ugpcbIpOfL .nav-item {
    border: 0;
  }
}
.cid-ugpcbIpOfL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ugpcbIpOfL .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-ugpcbIpOfL .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-ugpcbIpOfL .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-ugpcbIpOfL .title-wrap:hover span {
  color: white;
}
.cid-ugpcbIpOfL .title-wrap:hover:before {
  height: 100%;
}
.cid-ugpcbIpOfL .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-ugpcbIpOfL .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-ugpcbIpOfL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugpcbIpOfL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugpcbIpOfL .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-ugpcbIpOfL .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-ugpcbIpOfL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugpcbIpOfL .nav-link {
  position: relative;
}
.cid-ugpcbIpOfL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugpcbIpOfL .container {
    flex-wrap: nowrap;
  }
}
.cid-ugpcbIpOfL .dropdown-menu,
.cid-ugpcbIpOfL .navbar.opened {
  background: #004c36 !important;
}
.cid-ugpcbIpOfL .nav-item:focus,
.cid-ugpcbIpOfL .nav-link:focus {
  outline: none;
}
.cid-ugpcbIpOfL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugpcbIpOfL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugpcbIpOfL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugpcbIpOfL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugpcbIpOfL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugpcbIpOfL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugpcbIpOfL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-ugpcbIpOfL .navbar.opened {
  transition: all 0.3s;
}
.cid-ugpcbIpOfL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugpcbIpOfL .navbar .navbar-logo img {
  width: auto;
}
.cid-ugpcbIpOfL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugpcbIpOfL .navbar.collapsed {
  justify-content: center;
}
.cid-ugpcbIpOfL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugpcbIpOfL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugpcbIpOfL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ugpcbIpOfL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugpcbIpOfL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugpcbIpOfL .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-ugpcbIpOfL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugpcbIpOfL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugpcbIpOfL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugpcbIpOfL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugpcbIpOfL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugpcbIpOfL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugpcbIpOfL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugpcbIpOfL .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-ugpcbIpOfL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugpcbIpOfL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugpcbIpOfL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugpcbIpOfL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugpcbIpOfL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugpcbIpOfL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugpcbIpOfL .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugpcbIpOfL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugpcbIpOfL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugpcbIpOfL .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-ugpcbIpOfL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugpcbIpOfL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugpcbIpOfL .dropdown-item.active,
.cid-ugpcbIpOfL .dropdown-item:active {
  background-color: transparent;
}
.cid-ugpcbIpOfL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugpcbIpOfL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugpcbIpOfL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugpcbIpOfL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-ugpcbIpOfL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugpcbIpOfL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugpcbIpOfL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugpcbIpOfL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugpcbIpOfL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugpcbIpOfL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugpcbIpOfL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugpcbIpOfL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugpcbIpOfL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugpcbIpOfL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugpcbIpOfL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugpcbIpOfL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugpcbIpOfL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugpcbIpOfL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugpcbIpOfL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugpcbIpOfL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugpcbIpOfL .navbar {
    height: 70px;
  }
  .cid-ugpcbIpOfL .navbar.opened {
    height: auto;
  }
  .cid-ugpcbIpOfL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugpcbIpOfL .navbar-caption-wrap,
.cid-ugpcbIpOfL .title-wrap {
  color: #272727;
}
.cid-ugqilr3mRa {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/10-1920x1080.jpg");
}
.cid-ugqilr3mRa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugqilr3mRa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugqilr3mRa .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugqilr3mRa .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-ugqilr3mRa .container {
    padding: 0 15px;
  }
}
.cid-ugqilr3mRa .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ugqilr3mRa .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugqilr3mRa .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugqilr3mRa .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ugqilr3mRa .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugqilr3mRa .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ugqilr3mRa .mbr-section-title {
  color: #131c28;
}
.cid-ugqilr3mRa .mbr-desc {
  color: #131c28;
}
.cid-ugqilr3mRa .mbr-section-title,
.cid-ugqilr3mRa .mbr-section-btn {
  color: #15a77d;
}
.cid-urxtbOCCMs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-urrS97k1jM {
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/1-1.jpg");
}
.cid-urrS97k1jM .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-urrS97k1jM .mbr-fallback-image.disabled {
  display: none;
}
.cid-urrS97k1jM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urrS97k1jM .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-urrS97k1jM .image-wrap {
    height: 300px;
  }
}
.cid-vaVN85vg4d {
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/2.jpg");
}
.cid-vaVN85vg4d .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-vaVN85vg4d .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaVN85vg4d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaVN85vg4d .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-vaVN85vg4d .image-wrap {
    height: 300px;
  }
}
.cid-vaVNqi8nsw {
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/3-1.jpg");
}
.cid-vaVNqi8nsw .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-vaVNqi8nsw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaVNqi8nsw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaVNqi8nsw .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-vaVNqi8nsw .image-wrap {
    height: 300px;
  }
}
.cid-vaVNyN6B93 {
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/4.jpg");
}
.cid-vaVNyN6B93 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-vaVNyN6B93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaVNyN6B93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaVNyN6B93 .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-vaVNyN6B93 .image-wrap {
    height: 300px;
  }
}
.cid-vaVNzeZ7Xi {
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/5.jpg");
}
.cid-vaVNzeZ7Xi .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-vaVNzeZ7Xi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaVNzeZ7Xi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaVNzeZ7Xi .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-vaVNzeZ7Xi .image-wrap {
    height: 300px;
  }
}
.cid-vaVNzDxJtO {
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/6.jpg");
}
.cid-vaVNzDxJtO .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-vaVNzDxJtO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaVNzDxJtO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaVNzDxJtO .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-vaVNzDxJtO .image-wrap {
    height: 300px;
  }
}
.cid-vaVNA0Iu48 {
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/7.jpg");
}
.cid-vaVNA0Iu48 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-vaVNA0Iu48 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaVNA0Iu48 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaVNA0Iu48 .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-vaVNA0Iu48 .image-wrap {
    height: 300px;
  }
}
.cid-vaVNB8b6tb {
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/8.jpg");
}
.cid-vaVNB8b6tb .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-vaVNB8b6tb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaVNB8b6tb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaVNB8b6tb .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-vaVNB8b6tb .image-wrap {
    height: 300px;
  }
}
.cid-vaVNAn2Hi5 {
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/9.jpg");
}
.cid-vaVNAn2Hi5 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-vaVNAn2Hi5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaVNAn2Hi5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaVNAn2Hi5 .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-vaVNAn2Hi5 .image-wrap {
    height: 300px;
  }
}
.cid-vaVRvVvvoo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vaVRvVvvoo h6 {
  line-height: 1.2;
}
.cid-vaVRvVvvoo img,
.cid-vaVRvVvvoo .item-img {
  width: 100%;
  height: 100%;
}
.cid-vaVRvVvvoo .item:focus,
.cid-vaVRvVvvoo span:focus {
  outline: none;
}
.cid-vaVRvVvvoo .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 2rem;
}
.cid-vaVRvVvvoo .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-vaVRvVvvoo .mbr-section-title {
  color: #000000;
}
.cid-vaVRvVvvoo .mbr-text,
.cid-vaVRvVvvoo .mbr-section-btn {
  color: #000000;
}
.cid-vaVRvVvvoo .item-title {
  color: #000000;
  text-align: center;
}
.cid-vaVRvVvvoo .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-vaVRvVvvoo .item-text {
  color: #000000;
  text-align: center;
}
.cid-vaVRvVvvoo .content-head {
  max-width: 800px;
}
@media (max-width: 767px) {
  .cid-vaVRvVvvoo .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugpcbLpHgm {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ugpcbLpHgm .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ugpcbLpHgm .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ugpcbLpHgm .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ugpcbLpHgm .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ugpcbLpHgm .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ugpcbLpHgm .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ugpcbLpHgm .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ugpcbLpHgm .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ugpcbLpHgm .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ugpcbLpHgm .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ugpcbLpHgm .soc-item a {
  color: #ffffff;
}
.cid-ugpcbLpHgm .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ugpcbLpHgm .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ugpcbLpHgm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugpcbLpHgm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugpcbLpHgm .mbr-tag,
.cid-ugpcbLpHgm .social-row {
  text-align: left;
  color: #ffffff;
}
.cid-ugpcbMZdhx {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #354463;
}
.cid-ugpcbMZdhx .media-container-row {
  align-items: center;
}
.cid-ugpcbMZdhx .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ugpcbMZdhx .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ugpcbMZdhx .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ugpcbMZdhx .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ugpcbMZdhx .foot-menu-item {
  transform: 0.2s;
}
.cid-ugpcbMZdhx .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-ugpcbMZdhx .foot-menu {
    justify-content: center;
  }
  .cid-ugpcbMZdhx .mbr-text {
    text-align: center;
  }
  .cid-ugpcbMZdhx .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ugpcbMZdhx .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ugpcbMZdhx .link:hover {
  text-decoration: underline;
}
.cid-ugpcbMZdhx .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #8e99b1;
}
.cid-ugpcbMZdhx .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-ugpcbMZdhx .container {
    padding: 0;
  }
}
.cid-ugpcirJ5Mk {
  z-index: 1000;
  width: 100%;
}
.cid-ugpcirJ5Mk .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-ugpcirJ5Mk .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-ugpcirJ5Mk .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-ugpcirJ5Mk .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-ugpcirJ5Mk .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-ugpcirJ5Mk nav.navbar {
  position: fixed;
}
.cid-ugpcirJ5Mk .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-ugpcirJ5Mk .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-ugpcirJ5Mk .nav-item {
    border: 0;
  }
}
.cid-ugpcirJ5Mk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ugpcirJ5Mk .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-ugpcirJ5Mk .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-ugpcirJ5Mk .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-ugpcirJ5Mk .title-wrap:hover span {
  color: white;
}
.cid-ugpcirJ5Mk .title-wrap:hover:before {
  height: 100%;
}
.cid-ugpcirJ5Mk .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-ugpcirJ5Mk .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-ugpcirJ5Mk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugpcirJ5Mk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugpcirJ5Mk .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-ugpcirJ5Mk .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-ugpcirJ5Mk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugpcirJ5Mk .nav-link {
  position: relative;
}
.cid-ugpcirJ5Mk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugpcirJ5Mk .container {
    flex-wrap: nowrap;
  }
}
.cid-ugpcirJ5Mk .dropdown-menu,
.cid-ugpcirJ5Mk .navbar.opened {
  background: #004c36 !important;
}
.cid-ugpcirJ5Mk .nav-item:focus,
.cid-ugpcirJ5Mk .nav-link:focus {
  outline: none;
}
.cid-ugpcirJ5Mk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugpcirJ5Mk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugpcirJ5Mk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugpcirJ5Mk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugpcirJ5Mk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugpcirJ5Mk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugpcirJ5Mk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-ugpcirJ5Mk .navbar.opened {
  transition: all 0.3s;
}
.cid-ugpcirJ5Mk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugpcirJ5Mk .navbar .navbar-logo img {
  width: auto;
}
.cid-ugpcirJ5Mk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugpcirJ5Mk .navbar.collapsed {
  justify-content: center;
}
.cid-ugpcirJ5Mk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugpcirJ5Mk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugpcirJ5Mk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ugpcirJ5Mk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugpcirJ5Mk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugpcirJ5Mk .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-ugpcirJ5Mk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugpcirJ5Mk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugpcirJ5Mk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugpcirJ5Mk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugpcirJ5Mk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugpcirJ5Mk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugpcirJ5Mk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugpcirJ5Mk .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-ugpcirJ5Mk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugpcirJ5Mk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugpcirJ5Mk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugpcirJ5Mk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugpcirJ5Mk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugpcirJ5Mk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugpcirJ5Mk .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugpcirJ5Mk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugpcirJ5Mk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugpcirJ5Mk .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-ugpcirJ5Mk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugpcirJ5Mk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugpcirJ5Mk .dropdown-item.active,
.cid-ugpcirJ5Mk .dropdown-item:active {
  background-color: transparent;
}
.cid-ugpcirJ5Mk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugpcirJ5Mk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugpcirJ5Mk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugpcirJ5Mk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-ugpcirJ5Mk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugpcirJ5Mk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugpcirJ5Mk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugpcirJ5Mk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugpcirJ5Mk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugpcirJ5Mk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugpcirJ5Mk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugpcirJ5Mk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugpcirJ5Mk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugpcirJ5Mk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugpcirJ5Mk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugpcirJ5Mk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugpcirJ5Mk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugpcirJ5Mk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugpcirJ5Mk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugpcirJ5Mk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugpcirJ5Mk .navbar {
    height: 70px;
  }
  .cid-ugpcirJ5Mk .navbar.opened {
    height: auto;
  }
  .cid-ugpcirJ5Mk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugpcirJ5Mk .navbar-caption-wrap,
.cid-ugpcirJ5Mk .title-wrap {
  color: #272727;
}
.cid-ugqdTvYnCO {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/10-1920x1080.jpg");
}
.cid-ugqdTvYnCO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugqdTvYnCO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugqdTvYnCO .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugqdTvYnCO .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-ugqdTvYnCO .container {
    padding: 0 15px;
  }
}
.cid-ugqdTvYnCO .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ugqdTvYnCO .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugqdTvYnCO .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugqdTvYnCO .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ugqdTvYnCO .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugqdTvYnCO .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ugqdTvYnCO .mbr-section-title {
  color: #131c28;
}
.cid-ugqdTvYnCO .mbr-desc {
  color: #131c28;
}
.cid-ugqdTvYnCO .mbr-section-title,
.cid-ugqdTvYnCO .mbr-section-btn {
  color: #15a77d;
}
.cid-ugqK3f53bj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ugqK3f53bj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugqK3f53bj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugqK3f53bj .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ugqK3f53bj .container-fluid {
    padding: 0 20px;
  }
}
.cid-ugqK3f53bj .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ugqK3f53bj .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-ugqK3f53bj .title-wrapper {
    margin-top: 45px;
  }
}
.cid-ugqK3f53bj .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ugqK3f53bj .title-wrapper .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-ugqK3f53bj .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ugqK3f53bj .title-wrapper .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-ugqK3f53bj .title-wrapper .mbr-text {
  line-height: inherit;
  margin-bottom: 0;
}
.cid-ugqK3f53bj .title-wrapper .list {
  padding: 0;
  list-style-type: none;
  margin: 30px 0 0 0;
}
@media (max-width: 768px) {
  .cid-ugqK3f53bj .title-wrapper .list {
    margin-top: 20px;
  }
}
.cid-ugqK3f53bj .title-wrapper .list .item-wrap {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ugqK3f53bj .title-wrapper .list .item-wrap {
    margin-top: 10px;
  }
}
.cid-ugqK3f53bj .title-wrapper .list .item-wrap .mbr-iconfont {
  margin-right: 12px;
  color: #c8d814;
}
@media (min-width: 992px) {
  .cid-ugqK3f53bj .mbr-form {
    margin-top: 32px;
  }
}
.cid-ugqK3f53bj .dragArea.row .form-group {
  margin-bottom: 40px !important;
}
@media (max-width: 992px) {
  .cid-ugqK3f53bj .dragArea.row .form-group {
    margin-top: 20px;
  }
}
.cid-ugqK3f53bj .dragArea.row .form-group .form-control {
  border: none !important;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #6a6e71 !important;
  padding: 14px 0;
}
.cid-ugqK3f53bj .dragArea.row .form-group .form-control::placeholder {
  color: #6a6e71;
}
.cid-ugqK3f53bj .dragArea.row .form-group .form-control:hover {
  border-color: #6a6e71 !important;
}
.cid-ugqK3f53bj .dragArea.row .form-group .form-control:focus {
  background-color: transparent;
  box-shadow: none;
}
.cid-ugqK3f53bj .dragArea.row .form-group .form-check .form-check-input {
  background: transparent;
  border: 1px solid #ff6666;
}
.cid-ugqK3f53bj .dragArea.row .mbr-section-btn {
  margin-top: 20px;
}
.cid-ugqK3f53bj .dragArea.row .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-ugqK3f53bj .dragArea.row .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 0;
  margin-right: 10px;
}
.cid-ugqK3f53bj .mbr-section-subtitle {
  color: #000000;
}
.cid-ugqK3f53bj .mbr-section-title {
  color: #000000;
}
.cid-ugqK3f53bj .mbr-text {
  color: #6a6e71;
}
.cid-ugqK3f53bj .list {
  color: #6a6e71;
}
.cid-ugqK3f53bj label {
  color: #000000;
}
.cid-ugqpzvFmQn {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}
.cid-ugqpzvFmQn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugqpzvFmQn .card-link {
  position: relative;
  width: fit-content;
}
.cid-ugqpzvFmQn .card-link:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-ugqpzvFmQn h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-ugqpzvFmQn h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-ugqpzvFmQn .item-wrapper {
  margin-bottom: 0rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  background: #dae2e0;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-ugqpzvFmQn .item-wrapper {
    margin-bottom: 0rem;
    padding: 1rem;
  }
}
.cid-ugqpzvFmQn .item-wrapper:hover {
  background: #0e7f5e;
  transform: translateY(-5px);
}
.cid-ugqpzvFmQn .item-wrapper:hover .card-title,
.cid-ugqpzvFmQn .item-wrapper:hover .card-text {
  color: white !important;
}
.cid-ugqpzvFmQn .item-wrapper:hover span,
.cid-ugqpzvFmQn .item-wrapper:hover .card-link,
.cid-ugqpzvFmQn .item-wrapper:hover .card-link a {
  color: #18b7a7 !important;
}
.cid-ugqpzvFmQn .item-wrapper:hover .card-link:before {
  width: 0%;
}
.cid-ugqpzvFmQn .card-title,
.cid-ugqpzvFmQn .card-text,
.cid-ugqpzvFmQn .card-link,
.cid-ugqpzvFmQn .card-link a {
  transition: all 0.3s;
}
.cid-ugqpzvFmQn .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-ugqpzvFmQn .link-wrapper .link-icon {
  color: currentColor;
  font-size: 1rem;
  padding-left: .5rem;
  padding-bottom: 4px;
  transition: all 0.3s;
}
.cid-ugqpzvFmQn .link-wrapper:hover {
  cursor: pointer;
}
.cid-ugqpzvFmQn .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #0e7f5e;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ugqpzvFmQn .iconfont-wrapper .mbr-iconfont {
    font-size: 4rem;
  }
}
.cid-ugqpzvFmQn .card-title,
.cid-ugqpzvFmQn .iconfont-wrapper {
  color: #000000;
}
.cid-ugqpzvFmQn .card-text {
  color: #232323;
}
.cid-ugqpzvFmQn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-ugqpzvFmQn .card-link,
.cid-ugqpzvFmQn .link-icon,
.cid-ugqpzvFmQn .link-align {
  color: #232323;
}
.cid-ugqpzvFmQn .mbr-section-subtitle {
  text-align: left;
}
.cid-ugqpzvFmQn .mbr-section-subtitle,
.cid-ugqpzvFmQn .align {
  color: #232323;
}
.cid-ugqGxXcFnE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-ugqGxXcFnE .google-map {
  height: 30rem;
  position: relative;
}
.cid-ugqGxXcFnE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ugqGxXcFnE .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-ugqGxXcFnE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ugqGxXcFnE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ugqGxXcFnE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugqGxXcFnE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugpcitOzxA {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ugpcitOzxA .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ugpcitOzxA .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ugpcitOzxA .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ugpcitOzxA .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ugpcitOzxA .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ugpcitOzxA .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ugpcitOzxA .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ugpcitOzxA .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ugpcitOzxA .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ugpcitOzxA .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ugpcitOzxA .soc-item a {
  color: #ffffff;
}
.cid-ugpcitOzxA .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ugpcitOzxA .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ugpcitOzxA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugpcitOzxA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugpcitOzxA .mbr-tag,
.cid-ugpcitOzxA .social-row {
  text-align: left;
  color: #ffffff;
}
.cid-ugBH4TbMFH {
  z-index: 1000;
  width: 100%;
}
.cid-ugBH4TbMFH .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-ugBH4TbMFH .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-ugBH4TbMFH .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-ugBH4TbMFH .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-ugBH4TbMFH .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-ugBH4TbMFH nav.navbar {
  position: fixed;
}
.cid-ugBH4TbMFH .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-ugBH4TbMFH .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-ugBH4TbMFH .nav-item {
    border: 0;
  }
}
.cid-ugBH4TbMFH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ugBH4TbMFH .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-ugBH4TbMFH .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-ugBH4TbMFH .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-ugBH4TbMFH .title-wrap:hover span {
  color: white;
}
.cid-ugBH4TbMFH .title-wrap:hover:before {
  height: 100%;
}
.cid-ugBH4TbMFH .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-ugBH4TbMFH .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-ugBH4TbMFH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugBH4TbMFH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugBH4TbMFH .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-ugBH4TbMFH .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-ugBH4TbMFH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugBH4TbMFH .nav-link {
  position: relative;
}
.cid-ugBH4TbMFH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugBH4TbMFH .container {
    flex-wrap: nowrap;
  }
}
.cid-ugBH4TbMFH .dropdown-menu,
.cid-ugBH4TbMFH .navbar.opened {
  background: #004c36 !important;
}
.cid-ugBH4TbMFH .nav-item:focus,
.cid-ugBH4TbMFH .nav-link:focus {
  outline: none;
}
.cid-ugBH4TbMFH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugBH4TbMFH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugBH4TbMFH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugBH4TbMFH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugBH4TbMFH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugBH4TbMFH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugBH4TbMFH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-ugBH4TbMFH .navbar.opened {
  transition: all 0.3s;
}
.cid-ugBH4TbMFH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugBH4TbMFH .navbar .navbar-logo img {
  width: auto;
}
.cid-ugBH4TbMFH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugBH4TbMFH .navbar.collapsed {
  justify-content: center;
}
.cid-ugBH4TbMFH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugBH4TbMFH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugBH4TbMFH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ugBH4TbMFH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugBH4TbMFH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugBH4TbMFH .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-ugBH4TbMFH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugBH4TbMFH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugBH4TbMFH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugBH4TbMFH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugBH4TbMFH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugBH4TbMFH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugBH4TbMFH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugBH4TbMFH .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-ugBH4TbMFH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugBH4TbMFH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugBH4TbMFH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugBH4TbMFH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugBH4TbMFH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugBH4TbMFH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugBH4TbMFH .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugBH4TbMFH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugBH4TbMFH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugBH4TbMFH .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-ugBH4TbMFH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugBH4TbMFH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugBH4TbMFH .dropdown-item.active,
.cid-ugBH4TbMFH .dropdown-item:active {
  background-color: transparent;
}
.cid-ugBH4TbMFH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugBH4TbMFH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugBH4TbMFH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugBH4TbMFH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-ugBH4TbMFH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugBH4TbMFH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugBH4TbMFH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugBH4TbMFH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugBH4TbMFH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugBH4TbMFH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugBH4TbMFH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugBH4TbMFH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugBH4TbMFH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugBH4TbMFH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugBH4TbMFH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugBH4TbMFH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugBH4TbMFH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugBH4TbMFH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugBH4TbMFH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugBH4TbMFH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugBH4TbMFH .navbar {
    height: 70px;
  }
  .cid-ugBH4TbMFH .navbar.opened {
    height: auto;
  }
  .cid-ugBH4TbMFH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugBH4TbMFH .navbar-caption-wrap,
.cid-ugBH4TbMFH .title-wrap {
  color: #272727;
}
.cid-ugBH4Ualmi {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/10-1920x1080.jpg");
}
.cid-ugBH4Ualmi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBH4Ualmi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugBH4Ualmi .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugBH4Ualmi .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-ugBH4Ualmi .container {
    padding: 0 15px;
  }
}
.cid-ugBH4Ualmi .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ugBH4Ualmi .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugBH4Ualmi .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugBH4Ualmi .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ugBH4Ualmi .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugBH4Ualmi .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ugBH4Ualmi .mbr-section-title {
  color: #131c28;
}
.cid-ugBH4Ualmi .mbr-desc {
  color: #131c28;
}
.cid-ugBH4Ualmi .mbr-section-title,
.cid-ugBH4Ualmi .mbr-section-btn {
  color: #15a77d;
}
.cid-vbdidGC4TA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eaeeed;
}
.cid-vbdidGC4TA .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdidGC4TA .item {
    margin-bottom: 1rem;
  }
}
.cid-vbdidGC4TA .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vbdidGC4TA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vbdidGC4TA .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vbdidGC4TA .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbdidGC4TA .carousel-control,
.cid-vbdidGC4TA .close {
  background: #1b1b1b;
}
.cid-vbdidGC4TA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbdidGC4TA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbdidGC4TA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbdidGC4TA .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbdidGC4TA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vbdidGC4TA .close::before {
  content: '\e91a';
}
.cid-vbdidGC4TA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbdidGC4TA .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vbdidGC4TA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbdidGC4TA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbdidGC4TA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbdidGC4TA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbdidGC4TA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vbdidGC4TA .carousel-indicators li.active,
.cid-vbdidGC4TA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbdidGC4TA .carousel-indicators li::after,
.cid-vbdidGC4TA .carousel-indicators li::before {
  content: none;
}
.cid-vbdidGC4TA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbdidGC4TA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbdidGC4TA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbdidGC4TA .carousel-indicators {
    display: none;
  }
}
.cid-vbdidGC4TA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbdidGC4TA .carousel-inner > .active {
  display: block;
}
.cid-vbdidGC4TA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbdidGC4TA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbdidGC4TA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbdidGC4TA .carousel-control,
  .cid-vbdidGC4TA .carousel-indicators,
  .cid-vbdidGC4TA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbdidGC4TA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbdidGC4TA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbdidGC4TA .carousel-indicators .active,
.cid-vbdidGC4TA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbdidGC4TA .carousel-indicators .active {
  background: #fff;
}
.cid-vbdidGC4TA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbdidGC4TA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbdidGC4TA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbdidGC4TA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbdidGC4TA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbdidGC4TA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbdidGC4TA .carousel {
  width: 100%;
}
.cid-vbdidGC4TA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbdidGC4TA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbdidGC4TA .modal.fade .modal-dialog,
.cid-vbdidGC4TA .modal.in .modal-dialog {
  transform: none;
}
.cid-vbdidGC4TA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbdidGC4TA .content-head {
  max-width: 800px;
}
.cid-vbdidGC4TA .mbr-section-title {
  text-align: center;
}
.cid-ugBH53QDKM {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ugBH53QDKM .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ugBH53QDKM .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ugBH53QDKM .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ugBH53QDKM .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ugBH53QDKM .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ugBH53QDKM .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ugBH53QDKM .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ugBH53QDKM .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ugBH53QDKM .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ugBH53QDKM .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ugBH53QDKM .soc-item a {
  color: #ffffff;
}
.cid-ugBH53QDKM .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ugBH53QDKM .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ugBH53QDKM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBH53QDKM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugBH53QDKM .mbr-tag,
.cid-ugBH53QDKM .social-row {
  text-align: left;
  color: #ffffff;
}
.cid-ugBHd2Q9qO {
  z-index: 1000;
  width: 100%;
}
.cid-ugBHd2Q9qO .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-ugBHd2Q9qO .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-ugBHd2Q9qO .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-ugBHd2Q9qO .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-ugBHd2Q9qO .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-ugBHd2Q9qO nav.navbar {
  position: fixed;
}
.cid-ugBHd2Q9qO .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-ugBHd2Q9qO .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-ugBHd2Q9qO .nav-item {
    border: 0;
  }
}
.cid-ugBHd2Q9qO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ugBHd2Q9qO .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-ugBHd2Q9qO .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-ugBHd2Q9qO .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-ugBHd2Q9qO .title-wrap:hover span {
  color: white;
}
.cid-ugBHd2Q9qO .title-wrap:hover:before {
  height: 100%;
}
.cid-ugBHd2Q9qO .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-ugBHd2Q9qO .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-ugBHd2Q9qO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugBHd2Q9qO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugBHd2Q9qO .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-ugBHd2Q9qO .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-ugBHd2Q9qO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugBHd2Q9qO .nav-link {
  position: relative;
}
.cid-ugBHd2Q9qO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugBHd2Q9qO .container {
    flex-wrap: nowrap;
  }
}
.cid-ugBHd2Q9qO .dropdown-menu,
.cid-ugBHd2Q9qO .navbar.opened {
  background: #004c36 !important;
}
.cid-ugBHd2Q9qO .nav-item:focus,
.cid-ugBHd2Q9qO .nav-link:focus {
  outline: none;
}
.cid-ugBHd2Q9qO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugBHd2Q9qO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugBHd2Q9qO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugBHd2Q9qO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugBHd2Q9qO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugBHd2Q9qO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugBHd2Q9qO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-ugBHd2Q9qO .navbar.opened {
  transition: all 0.3s;
}
.cid-ugBHd2Q9qO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugBHd2Q9qO .navbar .navbar-logo img {
  width: auto;
}
.cid-ugBHd2Q9qO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugBHd2Q9qO .navbar.collapsed {
  justify-content: center;
}
.cid-ugBHd2Q9qO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugBHd2Q9qO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugBHd2Q9qO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ugBHd2Q9qO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugBHd2Q9qO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugBHd2Q9qO .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-ugBHd2Q9qO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugBHd2Q9qO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugBHd2Q9qO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugBHd2Q9qO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugBHd2Q9qO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugBHd2Q9qO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugBHd2Q9qO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugBHd2Q9qO .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-ugBHd2Q9qO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugBHd2Q9qO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugBHd2Q9qO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugBHd2Q9qO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugBHd2Q9qO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugBHd2Q9qO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugBHd2Q9qO .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugBHd2Q9qO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugBHd2Q9qO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugBHd2Q9qO .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-ugBHd2Q9qO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugBHd2Q9qO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugBHd2Q9qO .dropdown-item.active,
.cid-ugBHd2Q9qO .dropdown-item:active {
  background-color: transparent;
}
.cid-ugBHd2Q9qO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugBHd2Q9qO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugBHd2Q9qO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugBHd2Q9qO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-ugBHd2Q9qO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugBHd2Q9qO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugBHd2Q9qO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugBHd2Q9qO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugBHd2Q9qO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugBHd2Q9qO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugBHd2Q9qO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugBHd2Q9qO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugBHd2Q9qO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugBHd2Q9qO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugBHd2Q9qO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugBHd2Q9qO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugBHd2Q9qO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugBHd2Q9qO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugBHd2Q9qO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugBHd2Q9qO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugBHd2Q9qO .navbar {
    height: 70px;
  }
  .cid-ugBHd2Q9qO .navbar.opened {
    height: auto;
  }
  .cid-ugBHd2Q9qO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugBHd2Q9qO .navbar-caption-wrap,
.cid-ugBHd2Q9qO .title-wrap {
  color: #272727;
}
.cid-ugBHd3VnLg {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/10-1920x1080.jpg");
}
.cid-ugBHd3VnLg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBHd3VnLg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugBHd3VnLg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugBHd3VnLg .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-ugBHd3VnLg .container {
    padding: 0 15px;
  }
}
.cid-ugBHd3VnLg .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ugBHd3VnLg .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugBHd3VnLg .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugBHd3VnLg .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ugBHd3VnLg .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugBHd3VnLg .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ugBHd3VnLg .mbr-section-title {
  color: #131c28;
}
.cid-ugBHd3VnLg .mbr-desc {
  color: #131c28;
}
.cid-ugBHd3VnLg .mbr-section-title,
.cid-ugBHd3VnLg .mbr-section-btn {
  color: #15a77d;
}
.cid-vbdjcRizD1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eaeeed;
}
.cid-vbdjcRizD1 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdjcRizD1 .item {
    margin-bottom: 1rem;
  }
}
.cid-vbdjcRizD1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vbdjcRizD1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vbdjcRizD1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vbdjcRizD1 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbdjcRizD1 .carousel-control,
.cid-vbdjcRizD1 .close {
  background: #1b1b1b;
}
.cid-vbdjcRizD1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbdjcRizD1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbdjcRizD1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbdjcRizD1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbdjcRizD1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vbdjcRizD1 .close::before {
  content: '\e91a';
}
.cid-vbdjcRizD1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbdjcRizD1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vbdjcRizD1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbdjcRizD1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbdjcRizD1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbdjcRizD1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbdjcRizD1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vbdjcRizD1 .carousel-indicators li.active,
.cid-vbdjcRizD1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbdjcRizD1 .carousel-indicators li::after,
.cid-vbdjcRizD1 .carousel-indicators li::before {
  content: none;
}
.cid-vbdjcRizD1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbdjcRizD1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbdjcRizD1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbdjcRizD1 .carousel-indicators {
    display: none;
  }
}
.cid-vbdjcRizD1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbdjcRizD1 .carousel-inner > .active {
  display: block;
}
.cid-vbdjcRizD1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbdjcRizD1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbdjcRizD1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbdjcRizD1 .carousel-control,
  .cid-vbdjcRizD1 .carousel-indicators,
  .cid-vbdjcRizD1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbdjcRizD1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbdjcRizD1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbdjcRizD1 .carousel-indicators .active,
.cid-vbdjcRizD1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbdjcRizD1 .carousel-indicators .active {
  background: #fff;
}
.cid-vbdjcRizD1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbdjcRizD1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbdjcRizD1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbdjcRizD1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbdjcRizD1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbdjcRizD1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbdjcRizD1 .carousel {
  width: 100%;
}
.cid-vbdjcRizD1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbdjcRizD1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbdjcRizD1 .modal.fade .modal-dialog,
.cid-vbdjcRizD1 .modal.in .modal-dialog {
  transform: none;
}
.cid-vbdjcRizD1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbdjcRizD1 .content-head {
  max-width: 800px;
}
.cid-vbdjcRizD1 .mbr-section-title {
  text-align: center;
}
.cid-ugBHddlIPM {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ugBHddlIPM .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ugBHddlIPM .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ugBHddlIPM .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ugBHddlIPM .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ugBHddlIPM .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ugBHddlIPM .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ugBHddlIPM .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ugBHddlIPM .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ugBHddlIPM .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ugBHddlIPM .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ugBHddlIPM .soc-item a {
  color: #ffffff;
}
.cid-ugBHddlIPM .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ugBHddlIPM .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ugBHddlIPM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBHddlIPM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugBHddlIPM .mbr-tag,
.cid-ugBHddlIPM .social-row {
  text-align: left;
  color: #ffffff;
}
.cid-ugB4gQWinu {
  z-index: 1000;
  width: 100%;
}
.cid-ugB4gQWinu .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-ugB4gQWinu .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-ugB4gQWinu .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-ugB4gQWinu .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-ugB4gQWinu .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-ugB4gQWinu nav.navbar {
  position: fixed;
}
.cid-ugB4gQWinu .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-ugB4gQWinu .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-ugB4gQWinu .nav-item {
    border: 0;
  }
}
.cid-ugB4gQWinu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ugB4gQWinu .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-ugB4gQWinu .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-ugB4gQWinu .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-ugB4gQWinu .title-wrap:hover span {
  color: white;
}
.cid-ugB4gQWinu .title-wrap:hover:before {
  height: 100%;
}
.cid-ugB4gQWinu .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-ugB4gQWinu .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-ugB4gQWinu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugB4gQWinu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugB4gQWinu .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-ugB4gQWinu .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-ugB4gQWinu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugB4gQWinu .nav-link {
  position: relative;
}
.cid-ugB4gQWinu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugB4gQWinu .container {
    flex-wrap: nowrap;
  }
}
.cid-ugB4gQWinu .dropdown-menu,
.cid-ugB4gQWinu .navbar.opened {
  background: #004c36 !important;
}
.cid-ugB4gQWinu .nav-item:focus,
.cid-ugB4gQWinu .nav-link:focus {
  outline: none;
}
.cid-ugB4gQWinu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugB4gQWinu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugB4gQWinu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugB4gQWinu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugB4gQWinu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugB4gQWinu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugB4gQWinu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-ugB4gQWinu .navbar.opened {
  transition: all 0.3s;
}
.cid-ugB4gQWinu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugB4gQWinu .navbar .navbar-logo img {
  width: auto;
}
.cid-ugB4gQWinu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugB4gQWinu .navbar.collapsed {
  justify-content: center;
}
.cid-ugB4gQWinu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugB4gQWinu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugB4gQWinu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ugB4gQWinu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugB4gQWinu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugB4gQWinu .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-ugB4gQWinu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugB4gQWinu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugB4gQWinu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugB4gQWinu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugB4gQWinu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugB4gQWinu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugB4gQWinu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugB4gQWinu .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-ugB4gQWinu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugB4gQWinu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugB4gQWinu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugB4gQWinu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugB4gQWinu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugB4gQWinu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugB4gQWinu .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugB4gQWinu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugB4gQWinu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugB4gQWinu .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-ugB4gQWinu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugB4gQWinu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugB4gQWinu .dropdown-item.active,
.cid-ugB4gQWinu .dropdown-item:active {
  background-color: transparent;
}
.cid-ugB4gQWinu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugB4gQWinu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugB4gQWinu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugB4gQWinu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-ugB4gQWinu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugB4gQWinu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugB4gQWinu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugB4gQWinu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugB4gQWinu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugB4gQWinu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugB4gQWinu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugB4gQWinu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugB4gQWinu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugB4gQWinu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugB4gQWinu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugB4gQWinu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugB4gQWinu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugB4gQWinu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugB4gQWinu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugB4gQWinu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugB4gQWinu .navbar {
    height: 70px;
  }
  .cid-ugB4gQWinu .navbar.opened {
    height: auto;
  }
  .cid-ugB4gQWinu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugB4gQWinu .navbar-caption-wrap,
.cid-ugB4gQWinu .title-wrap {
  color: #272727;
}
.cid-ugB4gRCdSX {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/10-1920x1080.jpg");
}
.cid-ugB4gRCdSX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugB4gRCdSX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugB4gRCdSX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugB4gRCdSX .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-ugB4gRCdSX .container {
    padding: 0 15px;
  }
}
.cid-ugB4gRCdSX .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ugB4gRCdSX .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugB4gRCdSX .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugB4gRCdSX .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ugB4gRCdSX .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugB4gRCdSX .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ugB4gRCdSX .mbr-section-title {
  color: #131c28;
}
.cid-ugB4gRCdSX .mbr-desc {
  color: #131c28;
}
.cid-ugB4gRCdSX .mbr-section-title,
.cid-ugB4gRCdSX .mbr-section-btn {
  color: #15a77d;
}
.cid-vbd6cafDXK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eaeeed;
}
.cid-vbd6cafDXK .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbd6cafDXK .item {
    margin-bottom: 1rem;
  }
}
.cid-vbd6cafDXK .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vbd6cafDXK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vbd6cafDXK .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vbd6cafDXK .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbd6cafDXK .carousel-control,
.cid-vbd6cafDXK .close {
  background: #1b1b1b;
}
.cid-vbd6cafDXK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbd6cafDXK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbd6cafDXK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbd6cafDXK .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbd6cafDXK .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vbd6cafDXK .close::before {
  content: '\e91a';
}
.cid-vbd6cafDXK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbd6cafDXK .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vbd6cafDXK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbd6cafDXK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbd6cafDXK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbd6cafDXK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbd6cafDXK .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vbd6cafDXK .carousel-indicators li.active,
.cid-vbd6cafDXK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbd6cafDXK .carousel-indicators li::after,
.cid-vbd6cafDXK .carousel-indicators li::before {
  content: none;
}
.cid-vbd6cafDXK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbd6cafDXK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbd6cafDXK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbd6cafDXK .carousel-indicators {
    display: none;
  }
}
.cid-vbd6cafDXK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbd6cafDXK .carousel-inner > .active {
  display: block;
}
.cid-vbd6cafDXK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbd6cafDXK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbd6cafDXK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbd6cafDXK .carousel-control,
  .cid-vbd6cafDXK .carousel-indicators,
  .cid-vbd6cafDXK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbd6cafDXK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbd6cafDXK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbd6cafDXK .carousel-indicators .active,
.cid-vbd6cafDXK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbd6cafDXK .carousel-indicators .active {
  background: #fff;
}
.cid-vbd6cafDXK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbd6cafDXK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbd6cafDXK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbd6cafDXK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbd6cafDXK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbd6cafDXK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbd6cafDXK .carousel {
  width: 100%;
}
.cid-vbd6cafDXK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbd6cafDXK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbd6cafDXK .modal.fade .modal-dialog,
.cid-vbd6cafDXK .modal.in .modal-dialog {
  transform: none;
}
.cid-vbd6cafDXK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbd6cafDXK .content-head {
  max-width: 800px;
}
.cid-vbd6cafDXK .mbr-section-title {
  text-align: center;
}
.cid-ugB4gTdBgP {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ugB4gTdBgP .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ugB4gTdBgP .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ugB4gTdBgP .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ugB4gTdBgP .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ugB4gTdBgP .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ugB4gTdBgP .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ugB4gTdBgP .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ugB4gTdBgP .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ugB4gTdBgP .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ugB4gTdBgP .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ugB4gTdBgP .soc-item a {
  color: #ffffff;
}
.cid-ugB4gTdBgP .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ugB4gTdBgP .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ugB4gTdBgP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugB4gTdBgP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugB4gTdBgP .mbr-tag,
.cid-ugB4gTdBgP .social-row {
  text-align: left;
  color: #ffffff;
}
.cid-ugBGSEugiq {
  z-index: 1000;
  width: 100%;
}
.cid-ugBGSEugiq .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-ugBGSEugiq .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-ugBGSEugiq .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-ugBGSEugiq .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-ugBGSEugiq .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-ugBGSEugiq nav.navbar {
  position: fixed;
}
.cid-ugBGSEugiq .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-ugBGSEugiq .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-ugBGSEugiq .nav-item {
    border: 0;
  }
}
.cid-ugBGSEugiq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ugBGSEugiq .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-ugBGSEugiq .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-ugBGSEugiq .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-ugBGSEugiq .title-wrap:hover span {
  color: white;
}
.cid-ugBGSEugiq .title-wrap:hover:before {
  height: 100%;
}
.cid-ugBGSEugiq .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-ugBGSEugiq .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-ugBGSEugiq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugBGSEugiq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugBGSEugiq .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-ugBGSEugiq .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-ugBGSEugiq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugBGSEugiq .nav-link {
  position: relative;
}
.cid-ugBGSEugiq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugBGSEugiq .container {
    flex-wrap: nowrap;
  }
}
.cid-ugBGSEugiq .dropdown-menu,
.cid-ugBGSEugiq .navbar.opened {
  background: #004c36 !important;
}
.cid-ugBGSEugiq .nav-item:focus,
.cid-ugBGSEugiq .nav-link:focus {
  outline: none;
}
.cid-ugBGSEugiq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugBGSEugiq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugBGSEugiq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugBGSEugiq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugBGSEugiq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugBGSEugiq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugBGSEugiq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-ugBGSEugiq .navbar.opened {
  transition: all 0.3s;
}
.cid-ugBGSEugiq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugBGSEugiq .navbar .navbar-logo img {
  width: auto;
}
.cid-ugBGSEugiq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugBGSEugiq .navbar.collapsed {
  justify-content: center;
}
.cid-ugBGSEugiq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugBGSEugiq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugBGSEugiq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ugBGSEugiq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugBGSEugiq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugBGSEugiq .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-ugBGSEugiq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugBGSEugiq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugBGSEugiq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugBGSEugiq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugBGSEugiq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugBGSEugiq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugBGSEugiq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugBGSEugiq .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-ugBGSEugiq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugBGSEugiq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugBGSEugiq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugBGSEugiq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugBGSEugiq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugBGSEugiq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugBGSEugiq .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugBGSEugiq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugBGSEugiq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugBGSEugiq .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-ugBGSEugiq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugBGSEugiq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugBGSEugiq .dropdown-item.active,
.cid-ugBGSEugiq .dropdown-item:active {
  background-color: transparent;
}
.cid-ugBGSEugiq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugBGSEugiq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugBGSEugiq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugBGSEugiq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-ugBGSEugiq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugBGSEugiq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugBGSEugiq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugBGSEugiq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugBGSEugiq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugBGSEugiq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugBGSEugiq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugBGSEugiq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugBGSEugiq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugBGSEugiq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugBGSEugiq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugBGSEugiq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugBGSEugiq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugBGSEugiq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugBGSEugiq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugBGSEugiq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugBGSEugiq .navbar {
    height: 70px;
  }
  .cid-ugBGSEugiq .navbar.opened {
    height: auto;
  }
  .cid-ugBGSEugiq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugBGSEugiq .navbar-caption-wrap,
.cid-ugBGSEugiq .title-wrap {
  color: #272727;
}
.cid-ugBGSFCGUw {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/10-1920x1080.jpg");
}
.cid-ugBGSFCGUw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBGSFCGUw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugBGSFCGUw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugBGSFCGUw .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-ugBGSFCGUw .container {
    padding: 0 15px;
  }
}
.cid-ugBGSFCGUw .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ugBGSFCGUw .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugBGSFCGUw .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugBGSFCGUw .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ugBGSFCGUw .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugBGSFCGUw .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ugBGSFCGUw .mbr-section-title {
  color: #131c28;
}
.cid-ugBGSFCGUw .mbr-desc {
  color: #131c28;
}
.cid-ugBGSFCGUw .mbr-section-title,
.cid-ugBGSFCGUw .mbr-section-btn {
  color: #15a77d;
}
.cid-vbcmp3Q8RV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eaeeed;
}
.cid-vbcmp3Q8RV .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcmp3Q8RV .item {
    margin-bottom: 1rem;
  }
}
.cid-vbcmp3Q8RV .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vbcmp3Q8RV .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vbcmp3Q8RV .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vbcmp3Q8RV .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbcmp3Q8RV .carousel-control,
.cid-vbcmp3Q8RV .close {
  background: #1b1b1b;
}
.cid-vbcmp3Q8RV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbcmp3Q8RV .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbcmp3Q8RV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbcmp3Q8RV .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbcmp3Q8RV .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vbcmp3Q8RV .close::before {
  content: '\e91a';
}
.cid-vbcmp3Q8RV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbcmp3Q8RV .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vbcmp3Q8RV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbcmp3Q8RV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbcmp3Q8RV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbcmp3Q8RV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbcmp3Q8RV .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vbcmp3Q8RV .carousel-indicators li.active,
.cid-vbcmp3Q8RV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbcmp3Q8RV .carousel-indicators li::after,
.cid-vbcmp3Q8RV .carousel-indicators li::before {
  content: none;
}
.cid-vbcmp3Q8RV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbcmp3Q8RV .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbcmp3Q8RV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbcmp3Q8RV .carousel-indicators {
    display: none;
  }
}
.cid-vbcmp3Q8RV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbcmp3Q8RV .carousel-inner > .active {
  display: block;
}
.cid-vbcmp3Q8RV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbcmp3Q8RV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbcmp3Q8RV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbcmp3Q8RV .carousel-control,
  .cid-vbcmp3Q8RV .carousel-indicators,
  .cid-vbcmp3Q8RV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbcmp3Q8RV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbcmp3Q8RV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbcmp3Q8RV .carousel-indicators .active,
.cid-vbcmp3Q8RV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbcmp3Q8RV .carousel-indicators .active {
  background: #fff;
}
.cid-vbcmp3Q8RV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbcmp3Q8RV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbcmp3Q8RV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbcmp3Q8RV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbcmp3Q8RV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbcmp3Q8RV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbcmp3Q8RV .carousel {
  width: 100%;
}
.cid-vbcmp3Q8RV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbcmp3Q8RV .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbcmp3Q8RV .modal.fade .modal-dialog,
.cid-vbcmp3Q8RV .modal.in .modal-dialog {
  transform: none;
}
.cid-vbcmp3Q8RV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbcmp3Q8RV .content-head {
  max-width: 800px;
}
.cid-vbcmp3Q8RV .mbr-section-title {
  text-align: center;
}
.cid-vbcCz4iuWz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eaeeed;
}
.cid-vbcCz4iuWz .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcCz4iuWz .item {
    margin-bottom: 1rem;
  }
}
.cid-vbcCz4iuWz .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vbcCz4iuWz .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vbcCz4iuWz .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vbcCz4iuWz .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbcCz4iuWz .carousel-control,
.cid-vbcCz4iuWz .close {
  background: #1b1b1b;
}
.cid-vbcCz4iuWz .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbcCz4iuWz .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbcCz4iuWz .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbcCz4iuWz .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbcCz4iuWz .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vbcCz4iuWz .close::before {
  content: '\e91a';
}
.cid-vbcCz4iuWz .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbcCz4iuWz .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vbcCz4iuWz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbcCz4iuWz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbcCz4iuWz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbcCz4iuWz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbcCz4iuWz .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vbcCz4iuWz .carousel-indicators li.active,
.cid-vbcCz4iuWz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbcCz4iuWz .carousel-indicators li::after,
.cid-vbcCz4iuWz .carousel-indicators li::before {
  content: none;
}
.cid-vbcCz4iuWz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbcCz4iuWz .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbcCz4iuWz .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbcCz4iuWz .carousel-indicators {
    display: none;
  }
}
.cid-vbcCz4iuWz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbcCz4iuWz .carousel-inner > .active {
  display: block;
}
.cid-vbcCz4iuWz .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbcCz4iuWz .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbcCz4iuWz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbcCz4iuWz .carousel-control,
  .cid-vbcCz4iuWz .carousel-indicators,
  .cid-vbcCz4iuWz .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbcCz4iuWz .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbcCz4iuWz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbcCz4iuWz .carousel-indicators .active,
.cid-vbcCz4iuWz .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbcCz4iuWz .carousel-indicators .active {
  background: #fff;
}
.cid-vbcCz4iuWz .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbcCz4iuWz .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbcCz4iuWz .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbcCz4iuWz .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbcCz4iuWz .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbcCz4iuWz .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbcCz4iuWz .carousel {
  width: 100%;
}
.cid-vbcCz4iuWz .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbcCz4iuWz .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbcCz4iuWz .modal.fade .modal-dialog,
.cid-vbcCz4iuWz .modal.in .modal-dialog {
  transform: none;
}
.cid-vbcCz4iuWz .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbcCz4iuWz .content-head {
  max-width: 800px;
}
.cid-vbcCz4iuWz .mbr-section-title {
  text-align: center;
}
.cid-vbcDQqR6tF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eaeeed;
}
.cid-vbcDQqR6tF .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcDQqR6tF .item {
    margin-bottom: 1rem;
  }
}
.cid-vbcDQqR6tF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vbcDQqR6tF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vbcDQqR6tF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vbcDQqR6tF .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbcDQqR6tF .carousel-control,
.cid-vbcDQqR6tF .close {
  background: #1b1b1b;
}
.cid-vbcDQqR6tF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbcDQqR6tF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbcDQqR6tF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbcDQqR6tF .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbcDQqR6tF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vbcDQqR6tF .close::before {
  content: '\e91a';
}
.cid-vbcDQqR6tF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbcDQqR6tF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vbcDQqR6tF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbcDQqR6tF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbcDQqR6tF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbcDQqR6tF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbcDQqR6tF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vbcDQqR6tF .carousel-indicators li.active,
.cid-vbcDQqR6tF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbcDQqR6tF .carousel-indicators li::after,
.cid-vbcDQqR6tF .carousel-indicators li::before {
  content: none;
}
.cid-vbcDQqR6tF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbcDQqR6tF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbcDQqR6tF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbcDQqR6tF .carousel-indicators {
    display: none;
  }
}
.cid-vbcDQqR6tF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbcDQqR6tF .carousel-inner > .active {
  display: block;
}
.cid-vbcDQqR6tF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbcDQqR6tF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbcDQqR6tF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbcDQqR6tF .carousel-control,
  .cid-vbcDQqR6tF .carousel-indicators,
  .cid-vbcDQqR6tF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbcDQqR6tF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbcDQqR6tF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbcDQqR6tF .carousel-indicators .active,
.cid-vbcDQqR6tF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbcDQqR6tF .carousel-indicators .active {
  background: #fff;
}
.cid-vbcDQqR6tF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbcDQqR6tF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbcDQqR6tF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbcDQqR6tF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbcDQqR6tF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbcDQqR6tF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbcDQqR6tF .carousel {
  width: 100%;
}
.cid-vbcDQqR6tF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbcDQqR6tF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbcDQqR6tF .modal.fade .modal-dialog,
.cid-vbcDQqR6tF .modal.in .modal-dialog {
  transform: none;
}
.cid-vbcDQqR6tF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbcDQqR6tF .content-head {
  max-width: 800px;
}
.cid-vbcDQqR6tF .mbr-section-title {
  text-align: center;
}
.cid-vbcEN3LTEv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eaeeed;
}
.cid-vbcEN3LTEv .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcEN3LTEv .item {
    margin-bottom: 1rem;
  }
}
.cid-vbcEN3LTEv .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vbcEN3LTEv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vbcEN3LTEv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vbcEN3LTEv .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbcEN3LTEv .carousel-control,
.cid-vbcEN3LTEv .close {
  background: #1b1b1b;
}
.cid-vbcEN3LTEv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbcEN3LTEv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbcEN3LTEv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbcEN3LTEv .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbcEN3LTEv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vbcEN3LTEv .close::before {
  content: '\e91a';
}
.cid-vbcEN3LTEv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbcEN3LTEv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vbcEN3LTEv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbcEN3LTEv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbcEN3LTEv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbcEN3LTEv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbcEN3LTEv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vbcEN3LTEv .carousel-indicators li.active,
.cid-vbcEN3LTEv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbcEN3LTEv .carousel-indicators li::after,
.cid-vbcEN3LTEv .carousel-indicators li::before {
  content: none;
}
.cid-vbcEN3LTEv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbcEN3LTEv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbcEN3LTEv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbcEN3LTEv .carousel-indicators {
    display: none;
  }
}
.cid-vbcEN3LTEv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbcEN3LTEv .carousel-inner > .active {
  display: block;
}
.cid-vbcEN3LTEv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbcEN3LTEv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbcEN3LTEv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbcEN3LTEv .carousel-control,
  .cid-vbcEN3LTEv .carousel-indicators,
  .cid-vbcEN3LTEv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbcEN3LTEv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbcEN3LTEv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbcEN3LTEv .carousel-indicators .active,
.cid-vbcEN3LTEv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbcEN3LTEv .carousel-indicators .active {
  background: #fff;
}
.cid-vbcEN3LTEv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbcEN3LTEv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbcEN3LTEv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbcEN3LTEv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbcEN3LTEv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbcEN3LTEv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbcEN3LTEv .carousel {
  width: 100%;
}
.cid-vbcEN3LTEv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbcEN3LTEv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbcEN3LTEv .modal.fade .modal-dialog,
.cid-vbcEN3LTEv .modal.in .modal-dialog {
  transform: none;
}
.cid-vbcEN3LTEv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbcEN3LTEv .content-head {
  max-width: 800px;
}
.cid-vbcEN3LTEv .mbr-section-title {
  text-align: center;
}
.cid-vbcFFPWa1H {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eaeeed;
}
.cid-vbcFFPWa1H .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcFFPWa1H .item {
    margin-bottom: 1rem;
  }
}
.cid-vbcFFPWa1H .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vbcFFPWa1H .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vbcFFPWa1H .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vbcFFPWa1H .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbcFFPWa1H .carousel-control,
.cid-vbcFFPWa1H .close {
  background: #1b1b1b;
}
.cid-vbcFFPWa1H .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbcFFPWa1H .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbcFFPWa1H .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbcFFPWa1H .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbcFFPWa1H .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vbcFFPWa1H .close::before {
  content: '\e91a';
}
.cid-vbcFFPWa1H .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbcFFPWa1H .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vbcFFPWa1H .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbcFFPWa1H .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbcFFPWa1H .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbcFFPWa1H .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbcFFPWa1H .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vbcFFPWa1H .carousel-indicators li.active,
.cid-vbcFFPWa1H .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbcFFPWa1H .carousel-indicators li::after,
.cid-vbcFFPWa1H .carousel-indicators li::before {
  content: none;
}
.cid-vbcFFPWa1H .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbcFFPWa1H .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbcFFPWa1H .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbcFFPWa1H .carousel-indicators {
    display: none;
  }
}
.cid-vbcFFPWa1H .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbcFFPWa1H .carousel-inner > .active {
  display: block;
}
.cid-vbcFFPWa1H .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbcFFPWa1H .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbcFFPWa1H .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbcFFPWa1H .carousel-control,
  .cid-vbcFFPWa1H .carousel-indicators,
  .cid-vbcFFPWa1H .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbcFFPWa1H .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbcFFPWa1H .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbcFFPWa1H .carousel-indicators .active,
.cid-vbcFFPWa1H .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbcFFPWa1H .carousel-indicators .active {
  background: #fff;
}
.cid-vbcFFPWa1H .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbcFFPWa1H .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbcFFPWa1H .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbcFFPWa1H .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbcFFPWa1H .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbcFFPWa1H .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbcFFPWa1H .carousel {
  width: 100%;
}
.cid-vbcFFPWa1H .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbcFFPWa1H .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbcFFPWa1H .modal.fade .modal-dialog,
.cid-vbcFFPWa1H .modal.in .modal-dialog {
  transform: none;
}
.cid-vbcFFPWa1H .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbcFFPWa1H .content-head {
  max-width: 800px;
}
.cid-vbcFFPWa1H .mbr-section-title {
  text-align: center;
}
.cid-ugBGSP2Xmf {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ugBGSP2Xmf .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ugBGSP2Xmf .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ugBGSP2Xmf .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ugBGSP2Xmf .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ugBGSP2Xmf .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ugBGSP2Xmf .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ugBGSP2Xmf .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ugBGSP2Xmf .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ugBGSP2Xmf .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ugBGSP2Xmf .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ugBGSP2Xmf .soc-item a {
  color: #ffffff;
}
.cid-ugBGSP2Xmf .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ugBGSP2Xmf .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ugBGSP2Xmf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBGSP2Xmf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugBGSP2Xmf .mbr-tag,
.cid-ugBGSP2Xmf .social-row {
  text-align: left;
  color: #ffffff;
}
.cid-ugBGNIderw {
  z-index: 1000;
  width: 100%;
}
.cid-ugBGNIderw .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-ugBGNIderw .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-ugBGNIderw .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-ugBGNIderw .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-ugBGNIderw .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-ugBGNIderw nav.navbar {
  position: fixed;
}
.cid-ugBGNIderw .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-ugBGNIderw .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-ugBGNIderw .nav-item {
    border: 0;
  }
}
.cid-ugBGNIderw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ugBGNIderw .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-ugBGNIderw .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-ugBGNIderw .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-ugBGNIderw .title-wrap:hover span {
  color: white;
}
.cid-ugBGNIderw .title-wrap:hover:before {
  height: 100%;
}
.cid-ugBGNIderw .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-ugBGNIderw .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-ugBGNIderw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugBGNIderw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugBGNIderw .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-ugBGNIderw .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-ugBGNIderw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugBGNIderw .nav-link {
  position: relative;
}
.cid-ugBGNIderw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugBGNIderw .container {
    flex-wrap: nowrap;
  }
}
.cid-ugBGNIderw .dropdown-menu,
.cid-ugBGNIderw .navbar.opened {
  background: #004c36 !important;
}
.cid-ugBGNIderw .nav-item:focus,
.cid-ugBGNIderw .nav-link:focus {
  outline: none;
}
.cid-ugBGNIderw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugBGNIderw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugBGNIderw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugBGNIderw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugBGNIderw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugBGNIderw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugBGNIderw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-ugBGNIderw .navbar.opened {
  transition: all 0.3s;
}
.cid-ugBGNIderw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugBGNIderw .navbar .navbar-logo img {
  width: auto;
}
.cid-ugBGNIderw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugBGNIderw .navbar.collapsed {
  justify-content: center;
}
.cid-ugBGNIderw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugBGNIderw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugBGNIderw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ugBGNIderw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugBGNIderw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugBGNIderw .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-ugBGNIderw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugBGNIderw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugBGNIderw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugBGNIderw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugBGNIderw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugBGNIderw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugBGNIderw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugBGNIderw .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-ugBGNIderw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugBGNIderw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugBGNIderw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugBGNIderw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugBGNIderw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugBGNIderw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugBGNIderw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugBGNIderw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugBGNIderw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugBGNIderw .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-ugBGNIderw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugBGNIderw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugBGNIderw .dropdown-item.active,
.cid-ugBGNIderw .dropdown-item:active {
  background-color: transparent;
}
.cid-ugBGNIderw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugBGNIderw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugBGNIderw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugBGNIderw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-ugBGNIderw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugBGNIderw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugBGNIderw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugBGNIderw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugBGNIderw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugBGNIderw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugBGNIderw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugBGNIderw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugBGNIderw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugBGNIderw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugBGNIderw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugBGNIderw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugBGNIderw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugBGNIderw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugBGNIderw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugBGNIderw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugBGNIderw .navbar {
    height: 70px;
  }
  .cid-ugBGNIderw .navbar.opened {
    height: auto;
  }
  .cid-ugBGNIderw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugBGNIderw .navbar-caption-wrap,
.cid-ugBGNIderw .title-wrap {
  color: #272727;
}
.cid-ugBGNJx0hc {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/10-1920x1080.jpg");
}
.cid-ugBGNJx0hc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBGNJx0hc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugBGNJx0hc .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugBGNJx0hc .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-ugBGNJx0hc .container {
    padding: 0 15px;
  }
}
.cid-ugBGNJx0hc .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ugBGNJx0hc .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugBGNJx0hc .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugBGNJx0hc .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ugBGNJx0hc .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugBGNJx0hc .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ugBGNJx0hc .mbr-section-title {
  color: #131c28;
}
.cid-ugBGNJx0hc .mbr-desc {
  color: #131c28;
}
.cid-ugBGNJx0hc .mbr-section-title,
.cid-ugBGNJx0hc .mbr-section-btn {
  color: #15a77d;
}
.cid-vbd8iEHxyo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eaeeed;
}
.cid-vbd8iEHxyo .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbd8iEHxyo .item {
    margin-bottom: 1rem;
  }
}
.cid-vbd8iEHxyo .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vbd8iEHxyo .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vbd8iEHxyo .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vbd8iEHxyo .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbd8iEHxyo .carousel-control,
.cid-vbd8iEHxyo .close {
  background: #1b1b1b;
}
.cid-vbd8iEHxyo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbd8iEHxyo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbd8iEHxyo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbd8iEHxyo .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbd8iEHxyo .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vbd8iEHxyo .close::before {
  content: '\e91a';
}
.cid-vbd8iEHxyo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbd8iEHxyo .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vbd8iEHxyo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbd8iEHxyo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbd8iEHxyo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbd8iEHxyo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbd8iEHxyo .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vbd8iEHxyo .carousel-indicators li.active,
.cid-vbd8iEHxyo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbd8iEHxyo .carousel-indicators li::after,
.cid-vbd8iEHxyo .carousel-indicators li::before {
  content: none;
}
.cid-vbd8iEHxyo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbd8iEHxyo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbd8iEHxyo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbd8iEHxyo .carousel-indicators {
    display: none;
  }
}
.cid-vbd8iEHxyo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbd8iEHxyo .carousel-inner > .active {
  display: block;
}
.cid-vbd8iEHxyo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbd8iEHxyo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbd8iEHxyo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbd8iEHxyo .carousel-control,
  .cid-vbd8iEHxyo .carousel-indicators,
  .cid-vbd8iEHxyo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbd8iEHxyo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbd8iEHxyo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbd8iEHxyo .carousel-indicators .active,
.cid-vbd8iEHxyo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbd8iEHxyo .carousel-indicators .active {
  background: #fff;
}
.cid-vbd8iEHxyo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbd8iEHxyo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbd8iEHxyo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbd8iEHxyo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbd8iEHxyo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbd8iEHxyo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbd8iEHxyo .carousel {
  width: 100%;
}
.cid-vbd8iEHxyo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbd8iEHxyo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbd8iEHxyo .modal.fade .modal-dialog,
.cid-vbd8iEHxyo .modal.in .modal-dialog {
  transform: none;
}
.cid-vbd8iEHxyo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbd8iEHxyo .content-head {
  max-width: 800px;
}
.cid-vbd8iEHxyo .mbr-section-title {
  text-align: center;
}
.cid-ugBGNTFAM3 {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ugBGNTFAM3 .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ugBGNTFAM3 .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ugBGNTFAM3 .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ugBGNTFAM3 .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ugBGNTFAM3 .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ugBGNTFAM3 .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ugBGNTFAM3 .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ugBGNTFAM3 .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ugBGNTFAM3 .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ugBGNTFAM3 .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ugBGNTFAM3 .soc-item a {
  color: #ffffff;
}
.cid-ugBGNTFAM3 .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ugBGNTFAM3 .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ugBGNTFAM3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBGNTFAM3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugBGNTFAM3 .mbr-tag,
.cid-ugBGNTFAM3 .social-row {
  text-align: left;
  color: #ffffff;
}
.cid-ugBH9CJX5Z {
  z-index: 1000;
  width: 100%;
}
.cid-ugBH9CJX5Z .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-ugBH9CJX5Z .iconfont-wrapper {
  overflow: hidden;
  color: #07ac99 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-ugBH9CJX5Z .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-ugBH9CJX5Z .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-ugBH9CJX5Z .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #18b7a7;
  z-index: -1;
}
.cid-ugBH9CJX5Z nav.navbar {
  position: fixed;
}
.cid-ugBH9CJX5Z .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-ugBH9CJX5Z .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-ugBH9CJX5Z .nav-item {
    border: 0;
  }
}
.cid-ugBH9CJX5Z .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ugBH9CJX5Z .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-ugBH9CJX5Z .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-ugBH9CJX5Z .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-ugBH9CJX5Z .title-wrap:hover span {
  color: white;
}
.cid-ugBH9CJX5Z .title-wrap:hover:before {
  height: 100%;
}
.cid-ugBH9CJX5Z .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-ugBH9CJX5Z .dropdown-menu {
  padding: 0;
  border-top: 4px solid #18b7a7;
}
.cid-ugBH9CJX5Z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugBH9CJX5Z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugBH9CJX5Z .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-ugBH9CJX5Z .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-ugBH9CJX5Z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugBH9CJX5Z .nav-link {
  position: relative;
}
.cid-ugBH9CJX5Z .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugBH9CJX5Z .container {
    flex-wrap: nowrap;
  }
}
.cid-ugBH9CJX5Z .dropdown-menu,
.cid-ugBH9CJX5Z .navbar.opened {
  background: #004c36 !important;
}
.cid-ugBH9CJX5Z .nav-item:focus,
.cid-ugBH9CJX5Z .nav-link:focus {
  outline: none;
}
.cid-ugBH9CJX5Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugBH9CJX5Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugBH9CJX5Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugBH9CJX5Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugBH9CJX5Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugBH9CJX5Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugBH9CJX5Z .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(0, 76, 54, 0.8);
}
.cid-ugBH9CJX5Z .navbar.opened {
  transition: all 0.3s;
}
.cid-ugBH9CJX5Z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugBH9CJX5Z .navbar .navbar-logo img {
  width: auto;
}
.cid-ugBH9CJX5Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugBH9CJX5Z .navbar.collapsed {
  justify-content: center;
}
.cid-ugBH9CJX5Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugBH9CJX5Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugBH9CJX5Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-ugBH9CJX5Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugBH9CJX5Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugBH9CJX5Z .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-ugBH9CJX5Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugBH9CJX5Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugBH9CJX5Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugBH9CJX5Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugBH9CJX5Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugBH9CJX5Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugBH9CJX5Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugBH9CJX5Z .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-ugBH9CJX5Z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugBH9CJX5Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugBH9CJX5Z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugBH9CJX5Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugBH9CJX5Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugBH9CJX5Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugBH9CJX5Z .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugBH9CJX5Z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugBH9CJX5Z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugBH9CJX5Z .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-ugBH9CJX5Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugBH9CJX5Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugBH9CJX5Z .dropdown-item.active,
.cid-ugBH9CJX5Z .dropdown-item:active {
  background-color: transparent;
}
.cid-ugBH9CJX5Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugBH9CJX5Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugBH9CJX5Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugBH9CJX5Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #004c36;
}
.cid-ugBH9CJX5Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugBH9CJX5Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugBH9CJX5Z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugBH9CJX5Z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugBH9CJX5Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugBH9CJX5Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugBH9CJX5Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugBH9CJX5Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugBH9CJX5Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugBH9CJX5Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugBH9CJX5Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugBH9CJX5Z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugBH9CJX5Z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugBH9CJX5Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugBH9CJX5Z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugBH9CJX5Z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugBH9CJX5Z .navbar {
    height: 70px;
  }
  .cid-ugBH9CJX5Z .navbar.opened {
    height: auto;
  }
  .cid-ugBH9CJX5Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugBH9CJX5Z .navbar-caption-wrap,
.cid-ugBH9CJX5Z .title-wrap {
  color: #272727;
}
.cid-ugBH9DLOT0 {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/10-1920x1080.jpg");
}
.cid-ugBH9DLOT0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBH9DLOT0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugBH9DLOT0 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugBH9DLOT0 .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-ugBH9DLOT0 .container {
    padding: 0 15px;
  }
}
.cid-ugBH9DLOT0 .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ugBH9DLOT0 .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugBH9DLOT0 .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugBH9DLOT0 .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #ffffff;
}
.cid-ugBH9DLOT0 .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-ugBH9DLOT0 .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-ugBH9DLOT0 .mbr-section-title {
  color: #131c28;
}
.cid-ugBH9DLOT0 .mbr-desc {
  color: #131c28;
}
.cid-ugBH9DLOT0 .mbr-section-title,
.cid-ugBH9DLOT0 .mbr-section-btn {
  color: #15a77d;
}
.cid-vbddvkFM7Z {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eaeeed;
}
.cid-vbddvkFM7Z .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbddvkFM7Z .item {
    margin-bottom: 1rem;
  }
}
.cid-vbddvkFM7Z .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-vbddvkFM7Z .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-vbddvkFM7Z .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vbddvkFM7Z .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vbddvkFM7Z .carousel-control,
.cid-vbddvkFM7Z .close {
  background: #1b1b1b;
}
.cid-vbddvkFM7Z .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vbddvkFM7Z .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vbddvkFM7Z .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vbddvkFM7Z .carousel-control-next span {
  margin-left: 5px;
}
.cid-vbddvkFM7Z .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vbddvkFM7Z .close::before {
  content: '\e91a';
}
.cid-vbddvkFM7Z .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vbddvkFM7Z .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vbddvkFM7Z .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbddvkFM7Z .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vbddvkFM7Z .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vbddvkFM7Z .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vbddvkFM7Z .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vbddvkFM7Z .carousel-indicators li.active,
.cid-vbddvkFM7Z .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vbddvkFM7Z .carousel-indicators li::after,
.cid-vbddvkFM7Z .carousel-indicators li::before {
  content: none;
}
.cid-vbddvkFM7Z .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vbddvkFM7Z .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vbddvkFM7Z .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vbddvkFM7Z .carousel-indicators {
    display: none;
  }
}
.cid-vbddvkFM7Z .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vbddvkFM7Z .carousel-inner > .active {
  display: block;
}
.cid-vbddvkFM7Z .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vbddvkFM7Z .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vbddvkFM7Z .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vbddvkFM7Z .carousel-control,
  .cid-vbddvkFM7Z .carousel-indicators,
  .cid-vbddvkFM7Z .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vbddvkFM7Z .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vbddvkFM7Z .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vbddvkFM7Z .carousel-indicators .active,
.cid-vbddvkFM7Z .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vbddvkFM7Z .carousel-indicators .active {
  background: #fff;
}
.cid-vbddvkFM7Z .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vbddvkFM7Z .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vbddvkFM7Z .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vbddvkFM7Z .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vbddvkFM7Z .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vbddvkFM7Z .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vbddvkFM7Z .carousel {
  width: 100%;
}
.cid-vbddvkFM7Z .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vbddvkFM7Z .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vbddvkFM7Z .modal.fade .modal-dialog,
.cid-vbddvkFM7Z .modal.in .modal-dialog {
  transform: none;
}
.cid-vbddvkFM7Z .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vbddvkFM7Z .content-head {
  max-width: 800px;
}
.cid-vbddvkFM7Z .mbr-section-title {
  text-align: center;
}
.cid-ugBH9NhKxW {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/foresta.giris-1-1920x1080.png");
}
.cid-ugBH9NhKxW .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 30rem;
}
@media (max-width: 991px) {
  .cid-ugBH9NhKxW .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ugBH9NhKxW .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-ugBH9NhKxW .mbr-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-ugBH9NhKxW .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-ugBH9NhKxW .footer-top {
  border-bottom: 2px solid #ffffff;
}
.cid-ugBH9NhKxW .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-ugBH9NhKxW .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-ugBH9NhKxW .footer-item-text {
  margin-bottom: 1.9375rem;
}
.cid-ugBH9NhKxW .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-ugBH9NhKxW .soc-item a {
  color: #ffffff;
}
.cid-ugBH9NhKxW .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #066056;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ugBH9NhKxW .soc-item span:hover {
  border-color: #066056;
  color: #066056;
}
.cid-ugBH9NhKxW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugBH9NhKxW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugBH9NhKxW .mbr-tag,
.cid-ugBH9NhKxW .social-row {
  text-align: left;
  color: #ffffff;
}
